You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When an app is installed with Droid-Ify, it is displayed in the system settings as "App installed from Droid-Ify." When you install apps from stores like the Play Store or the GrapheneOS App Store, you can click there and access the app information. Unfortunately, this is not possible with Droid-Ify.
Describe the solution you'd like
Implement the SHOW_APP_INFO intent.
The only changes that are needed are the following lines:
In the AndroidManifest.xml
openfunhandleIntent(intent:Intent?) {
when (intent?.action) {
// Current code handling ACTION_VIEW ...Intent.ACTION_SHOW_APP_INFO-> {
val packageName = intent.getStringExtra(Intent.EXTRA_PACKAGE_NAME)
if (packageName !=null) {
val fragment = currentFragment
if (fragment !isAppDetailFragment) {
navigateProduct(packageName)
}
}
}
}
}
Important
This requires API Level 24 (current min API Level is 23)
Describe alternatives you've considered
Maybe it's possible to conditionally only enable the Intent-Filter for this on API Level >= 24, this wouldn't need a min API level bump.
Additional context
I've tested these changes on my Phone, and it works without a problem.
I copied bits from the deeplink VIEW Intent.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When an app is installed with Droid-Ify, it is displayed in the system settings as "App installed from Droid-Ify." When you install apps from stores like the Play Store or the GrapheneOS App Store, you can click there and access the app information. Unfortunately, this is not possible with Droid-Ify.
Describe the solution you'd like
Implement the SHOW_APP_INFO intent.
The only changes that are needed are the following lines:
In the AndroidManifest.xml
In ScreenActivity.kt
Important
This requires API Level 24 (current min API Level is 23)
Describe alternatives you've considered
Maybe it's possible to conditionally only enable the Intent-Filter for this on API Level >= 24, this wouldn't need a min API level bump.
Additional context
I've tested these changes on my Phone, and it works without a problem.
I copied bits from the deeplink VIEW Intent.
The text was updated successfully, but these errors were encountered: