2016-07-12 22:07:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest package="com.simplemobiletools.filemanager"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
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
|
|
|
|
android:allowBackup="true"
|
2016-07-24 23:11:35 +02:00
|
|
|
android:icon="@mipmap/launcher"
|
2016-08-29 22:21:08 +02:00
|
|
|
android:label="@string/app_launcher_name"
|
2016-07-12 22:07:49 +02:00
|
|
|
android:theme="@style/AppTheme">
|
2016-07-12 22:51:54 +02:00
|
|
|
<activity android:name=".activities.MainActivity">
|
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
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutActivity"
|
2016-07-24 13:33:00 +02:00
|
|
|
android:label="@string/about"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-07-13 17:28:42 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.LicenseActivity"
|
2016-07-24 13:33:00 +02:00
|
|
|
android:label="@string/third_party_licences"
|
|
|
|
android:parentActivityName=".activities.AboutActivity"/>
|
2016-07-13 22:18:35 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
2016-07-24 13:33:00 +02:00
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-07-12 22:07:49 +02:00
|
|
|
</application>
|
2016-07-12 22:51:54 +02:00
|
|
|
</manifest>
|