2016-02-14 22:04:02 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-02-15 21:33:18 +01:00
|
|
|
<manifest
|
2017-04-08 00:32:47 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.simplemobiletools.draw">
|
2016-02-14 22:04:02 +01:00
|
|
|
|
2016-03-06 16:00:20 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
2016-02-14 22:04:02 +01:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2017-04-08 17:58:22 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-08-29 21:44:19 +02:00
|
|
|
android:label="@string/app_launcher_name"
|
2017-06-23 21:58:19 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2016-02-14 22:04:02 +01:00
|
|
|
android:theme="@style/AppTheme">
|
2017-04-08 18:37:18 +02:00
|
|
|
|
2016-02-15 21:33:18 +01:00
|
|
|
<activity
|
2017-04-08 18:37:18 +02:00
|
|
|
android:name=".activities.SplashActivity"
|
|
|
|
android:theme="@style/SplashTheme">
|
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
|
|
|
|
2017-04-08 18:37:18 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
2017-04-09 17:13:33 +02:00
|
|
|
android:configChanges="orientation">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
2017-10-22 11:00:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
2017-10-22 11:30:24 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
2017-10-22 12:22:32 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.media.action.IMAGE_CAPTURE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
2017-04-09 17:13:33 +02:00
|
|
|
</activity>
|
2017-04-08 18:37:18 +02:00
|
|
|
|
2016-06-01 17:48:59 +02:00
|
|
|
<activity
|
2017-04-08 17:43:24 +02:00
|
|
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
2016-07-24 11:36:57 +02:00
|
|
|
android:label="@string/about"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-06-01 17:48:59 +02:00
|
|
|
|
2016-06-02 20:12:52 +02:00
|
|
|
<activity
|
2017-04-08 17:43:24 +02:00
|
|
|
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
|
2016-07-24 11:36:57 +02:00
|
|
|
android:label="@string/third_party_licences"
|
2017-04-08 17:43:24 +02:00
|
|
|
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
|
2016-07-24 11:36:57 +02:00
|
|
|
|
2017-04-08 18:32:20 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
|
|
|
android:label="@string/customize_colors"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2016-07-24 11:36:57 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-06-02 20:12:52 +02:00
|
|
|
|
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>
|