Simple-Draw/app/src/main/AndroidManifest.xml

45 lines
1.5 KiB
XML
Raw Normal View History

2016-02-14 22:04:02 +01:00
<?xml version="1.0" encoding="utf-8"?>
2016-02-15 21:33:18 +01:00
<manifest
2016-02-25 22:00:45 +01:00
package="com.simplemobiletools.draw"
2016-02-15 21:33:18 +01:00
xmlns:android="http://schemas.android.com/apk/res/android">
2016-02-14 22:04:02 +01:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2016-02-14 22:04:02 +01:00
<application
android:allowBackup="true"
2016-06-04 11:14:28 +02:00
android:icon="@mipmap/launcher"
2016-02-14 22:04:02 +01:00
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
2016-02-15 21:33:18 +01:00
<activity
2016-06-01 17:48:59 +02:00
android:name=".MainActivity"
2016-02-15 21:33:18 +01:00
android:screenOrientation="portrait">
2016-02-14 22:04:02 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
2016-02-26 23:51:42 +01:00
2016-06-01 17:48:59 +02:00
<activity
android:name=".AboutActivity"
android:label="@string/about"
android:screenOrientation="portrait"/>
2016-06-02 20:12:52 +02:00
<activity
android:name=".LicenseActivity"
android:label="@string/third_party_licences"
android:screenOrientation="portrait"/>
2016-02-26 23:51:42 +01:00
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.simplemobiletools.draw.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths"/>
</provider>
2016-02-14 22:04:02 +01:00
</application>
</manifest>