2016-02-16 22:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-02-16 22:42:36 +01:00
|
|
|
<manifest
|
2016-02-24 00:08:09 +01:00
|
|
|
package="com.simplemobiletools.gallery"
|
2016-02-16 22:42:36 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-02-16 22:23:25 +01:00
|
|
|
|
2016-02-28 23:45:10 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2016-02-16 22:57:53 +01:00
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2016-06-04 11:33:50 +02:00
|
|
|
android:icon="@mipmap/launcher"
|
2016-02-16 22:23:25 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2016-02-16 22:42:36 +01:00
|
|
|
<activity
|
2016-04-25 18:48:23 +02:00
|
|
|
android:name=".activities.MainActivity">
|
2016-02-16 22:23:25 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-02-20 19:26:23 +01:00
|
|
|
|
|
|
|
<activity
|
2016-06-05 23:22:32 +02:00
|
|
|
android:name=".activities.MediaActivity"/>
|
2016-02-20 22:54:41 +01:00
|
|
|
|
|
|
|
<activity
|
2016-02-24 00:09:39 +01:00
|
|
|
android:name=".activities.ViewPagerActivity"
|
2016-02-24 23:37:26 +01:00
|
|
|
android:theme="@style/FullScreenTheme"/>
|
2016-06-01 17:44:50 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutActivity"
|
|
|
|
android:label="@string/about"
|
|
|
|
android:screenOrientation="portrait"/>
|
2016-06-02 21:52:42 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.LicenseActivity"
|
|
|
|
android:label="@string/third_party_licences"
|
|
|
|
android:screenOrientation="portrait"/>
|
2016-02-16 22:23:25 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|