2016-07-12 22:07:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-03-10 22:46:29 +01:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-29 22:52:59 +01:00
|
|
|
package="com.simplemobiletools.filemanager"
|
|
|
|
android:installLocation="auto">
|
2016-07-12 22:07:49 +02:00
|
|
|
|
2016-07-12 23:17:37 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
2016-07-12 22:07:49 +02:00
|
|
|
<application
|
2017-09-27 22:25:18 +02:00
|
|
|
android:name=".App"
|
2016-07-12 22:07:49 +02:00
|
|
|
android:allowBackup="true"
|
2017-03-11 10:47:47 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-08-29 22:21:08 +02:00
|
|
|
android:label="@string/app_launcher_name"
|
2017-12-04 17:52:43 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
2016-07-12 22:07:49 +02:00
|
|
|
android:theme="@style/AppTheme">
|
2017-03-10 23:10:42 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SplashActivity"
|
|
|
|
android:theme="@style/SplashTheme">
|
2016-07-12 22:07:49 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-07-13 17:28:42 +02:00
|
|
|
|
2017-10-23 10:13:06 +02:00
|
|
|
<activity android:name=".activities.MainActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT"/>
|
|
|
|
<data android:mimeType="*/*"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.OPENABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
2017-10-23 13:31:15 +02:00
|
|
|
|
2017-11-09 21:47:09 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.RINGTONE_PICKER"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2017-10-23 13:31:15 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="resource/folder"/>
|
|
|
|
</intent-filter>
|
2017-10-23 10:13:06 +02:00
|
|
|
</activity>
|
2017-03-10 23:10:42 +01:00
|
|
|
|
2017-10-23 11:27:16 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ReadTextActivity"
|
|
|
|
android:label="@string/file_editor">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="text/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2017-10-29 13:00:06 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
|
|
|
|
2016-07-13 17:28:42 +02:00
|
|
|
<activity
|
2017-12-10 10:58:28 +01:00
|
|
|
android:name=".activities.FavoritesActivity"
|
|
|
|
android:label="@string/favorites"
|
2016-07-24 13:33:00 +02:00
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-07-13 17:28:42 +02:00
|
|
|
|
2017-03-18 18:02:42 +01:00
|
|
|
<activity
|
2017-12-10 10:58:28 +01:00
|
|
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
|
|
|
android:label="@string/about"
|
2017-03-18 18:02:42 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
|
|
|
|
2016-07-13 17:28:42 +02:00
|
|
|
<activity
|
2017-03-10 22:59:51 +01:00
|
|
|
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
|
2016-07-24 13:33:00 +02:00
|
|
|
android:label="@string/third_party_licences"
|
2017-03-10 22:59:51 +01:00
|
|
|
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
|
2016-07-13 22:18:35 +02:00
|
|
|
|
2017-03-10 23:15:27 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
|
|
|
android:label="@string/customize_colors"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
2017-10-29 12:57:40 +01:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths"/>
|
|
|
|
</provider>
|
2016-07-12 22:07:49 +02:00
|
|
|
</application>
|
2016-07-12 22:51:54 +02:00
|
|
|
</manifest>
|