50 lines
1.4 KiB
XML
50 lines
1.4 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.app">
|
|
|
|
<!-- BIND_AUTOFILL_SERVICE -->
|
|
<uses-permission android:name="android.permission.BIND_AUTOFILL_SERVICE"/>
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_winboll"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AESTheme"
|
|
android:supportsRtl="true">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask"
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/studio_provider"/>
|
|
|
|
</provider>
|
|
|
|
<activity android:name=".AboutActivity"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|