Magisk/app/src/main/AndroidManifest.xml

69 lines
2.7 KiB
XML
Raw Normal View History

2016-08-05 16:58:05 +00:00
<?xml version="1.0" encoding="utf-8"?>
2016-08-17 11:00:55 +00:00
<manifest package="com.topjohnwu.magisk"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
2016-08-21 15:21:37 +00:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2016-08-25 09:04:56 +00:00
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2016-08-05 16:58:05 +00:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
2016-08-21 15:21:37 +00:00
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<activity
android:name=".WelcomeActivity"
2016-09-14 22:12:47 +00:00
android:exported="true"
2016-08-21 15:21:37 +00:00
android:configChanges="orientation|screenSize">
2016-08-21 13:29:42 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
2016-08-17 11:00:55 +00:00
</activity>
2016-09-15 17:52:58 +00:00
<activity
android:name="com.ipaulpro.afilechooser.FileChooserActivity"
android:icon="@drawable/ic_chooser"
android:enabled="@bool/use_activity"
android:exported="true"
android:label="@string/choose_file" >
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
2016-09-14 22:12:47 +00:00
2016-09-15 17:52:58 +00:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<provider
android:name="com.ianhanniballake.localstorage.LocalStorageProvider"
android:authorities="com.topjohnwu.magisk.documents"
android:enabled="@bool/use_provider"
android:exported="true"
android:grantUriPermissions="true"
android:permission="android.permission.MANAGE_DOCUMENTS" >
<intent-filter>
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
</intent-filter>
</provider>
2016-08-26 11:01:12 +00:00
<activity
android:name=".AboutActivity"
android:theme="@style/AppTheme.Transparent"/>
2016-08-27 11:02:41 +00:00
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.topjohnwu.magisk.provider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2016-08-05 16:58:05 +00:00
</application>
</manifest>