Felix. 0 Posted December 26, 2021 The subject says it all. How to associate my program with a certain extension in Android? Thanks Share this post Link to post
Remy Lebeau 1394 Posted December 29, 2021 IIRC, your application manifest needs to define an Intent Filter for each file extension/mime type you want to handle: https://developer.android.com/guide/components/intents-filters https://stackoverflow.com/questions/1733195/android-intent-filter-for-a-particular-file-extension Inside your code, you can use TAndroidHelper.Activity.getIntent() to get the JIntent that started your process. Share this post Link to post