react-native-installed-apps-android
Version:
Get user-facing installed Android apps list (apps with launcher activities) with app version
12 lines (11 loc) • 496 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.installedappsandroid">
<!-- No longer need QUERY_ALL_PACKAGES permission as we're using queryIntentActivities -->
<!-- which only returns user-accessible apps with launcher activities -->
<queries>
<intent>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent>
</queries>
</manifest>