Implement custom permission system for plugins
This commit is contained in:
13
plugins/sdk/src/main/AndroidManifest.xml
Normal file
13
plugins/sdk/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<application>
|
||||
<activity
|
||||
android:name=".permissions.RequestPermissionActivity"
|
||||
android:exported="true"
|
||||
android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar.MinWidth">
|
||||
<intent-filter>
|
||||
<action android:name="de.mm20.launcher2.plugin.REQUEST_PERMISSION" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user