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-10-03 23:27:56 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-03 21:15:03 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-04 21:25:51 +01:00
|
|
|
package="com.simplemobiletools.gallery.pro"
|
2017-11-28 19:19:41 +01:00
|
|
|
android:installLocation="auto">
|
2016-02-16 22:23:25 +01:00
|
|
|
|
2020-10-16 20:03:57 +02:00
|
|
|
<!-- override the android:maxSdkVersion="28" from PhotoEditorSDK with some higher number -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
android:maxSdkVersion="40"
|
|
|
|
tools:replace="android:maxSdkVersion" />
|
|
|
|
|
2016-06-26 22:38:25 +02:00
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER"/>
|
2020-04-26 10:04:38 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
2018-07-04 19:24:52 +02:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.ACCESS_NETWORK_STATE"
|
|
|
|
tools:node="remove"/>
|
2019-12-17 18:16:30 +01:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.CAMERA"
|
|
|
|
tools:node="remove"/>
|
2016-02-16 22:57:53 +01:00
|
|
|
|
2018-07-03 21:15:03 +02:00
|
|
|
<uses-sdk
|
|
|
|
tools:overrideLibrary="com.google.vr.widgets.common, com.google.vr.sdk.widgets.pano"/>
|
|
|
|
|
2019-03-04 20:12:43 +01:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.faketouch"
|
|
|
|
android:required="false"/>
|
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
<application
|
2017-04-17 20:31:50 +02:00
|
|
|
android:name=".App"
|
2016-02-16 22:23:25 +01:00
|
|
|
android:allowBackup="true"
|
2017-01-04 20:13:26 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-08-25 21:52:49 +02:00
|
|
|
android:label="@string/app_launcher_name"
|
2017-11-28 11:20:04 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
2020-03-19 12:38:18 +01:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2016-02-16 22:23:25 +01:00
|
|
|
android:supportsRtl="true"
|
2018-07-19 23:36:46 +02:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:replace="android:label">
|
2016-12-25 20:23:05 +01:00
|
|
|
|
2016-02-16 22:42:36 +01:00
|
|
|
<activity
|
2016-12-25 20:23:05 +01:00
|
|
|
android:name=".activities.SplashActivity"
|
2018-07-12 14:37:09 +02:00
|
|
|
android:theme="@style/SplashTheme"/>
|
2016-12-25 20:23:05 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
|
|
|
android:resizeableActivity="true">
|
2016-06-15 15:20:05 +02:00
|
|
|
|
2019-07-09 21:54:53 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2016-06-15 15:20:05 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PICK"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2016-06-15 15:55:13 +02:00
|
|
|
|
2016-06-27 15:40:25 +02:00
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
|
|
|
<data android:mimeType="vnd.android.cursor.dir/image"/>
|
2016-06-15 15:55:13 +02:00
|
|
|
<data android:mimeType="vnd.android.cursor.dir/video"/>
|
|
|
|
</intent-filter>
|
2016-06-26 22:38:25 +02:00
|
|
|
|
2016-06-27 12:37:01 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.OPENABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
2016-06-27 12:47:57 +02:00
|
|
|
<data android:mimeType="vnd.android.cursor.dir/image"/>
|
|
|
|
<data android:mimeType="vnd.android.cursor.dir/video"/>
|
2016-06-27 12:37:01 +02:00
|
|
|
</intent-filter>
|
2016-02-16 22:23:25 +01:00
|
|
|
</activity>
|
2016-02-20 19:26:23 +01:00
|
|
|
|
|
|
|
<activity
|
2016-07-20 20:46:51 +02:00
|
|
|
android:name=".activities.MediaActivity"
|
2018-01-07 17:48:25 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
2019-06-25 15:06:52 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SearchActivity"
|
|
|
|
android:label="@string/search"
|
|
|
|
android:parentActivityName=".activities.MainActivity"
|
|
|
|
android:resizeableActivity="true">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-02-20 22:54:41 +01:00
|
|
|
|
|
|
|
<activity
|
2016-02-24 00:09:39 +01:00
|
|
|
android:name=".activities.ViewPagerActivity"
|
2016-10-03 23:27:56 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2017-12-01 11:37:48 +01:00
|
|
|
android:parentActivityName=".activities.MediaActivity">
|
2016-07-09 22:18:05 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.android.camera.action.REVIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-06-01 17:44:50 +02:00
|
|
|
|
|
|
|
<activity
|
2016-12-13 23:53:59 +01:00
|
|
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
2016-07-20 20:46:51 +02:00
|
|
|
android:label="@string/about"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-06-02 21:52:42 +02:00
|
|
|
|
2016-12-15 22:49:23 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
|
|
|
android:label="@string/customize_colors"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2017-10-26 23:43:13 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
|
|
|
|
2016-06-19 11:15:27 +02:00
|
|
|
<activity
|
2016-12-25 15:37:37 +01:00
|
|
|
android:name=".activities.PhotoVideoActivity"
|
2017-12-01 11:37:48 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"/>
|
2016-06-19 11:15:27 +02:00
|
|
|
|
2019-01-02 13:24:23 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.VideoPlayerActivity"
|
2019-01-02 15:47:24 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:parentActivityName=".activities.MediaActivity"/>
|
2019-01-02 13:24:23 +01:00
|
|
|
|
2018-07-03 21:15:03 +02:00
|
|
|
<activity
|
2018-10-21 13:14:56 +02:00
|
|
|
android:name=".activities.PanoramaPhotoActivity"
|
2018-07-03 21:50:16 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:theme="@style/FullScreenTheme"/>
|
2018-07-03 21:15:03 +02:00
|
|
|
|
2018-10-21 17:57:55 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PanoramaVideoActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:theme="@style/FullScreenTheme"/>
|
|
|
|
|
2017-03-17 22:54:44 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.IncludedFoldersActivity"
|
|
|
|
android:label="@string/include_folders"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2017-02-26 19:44:25 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ExcludedFoldersActivity"
|
|
|
|
android:label="@string/excluded_folders"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2017-12-29 16:46:13 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.HiddenFoldersActivity"
|
|
|
|
android:label="@string/hidden_folders"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2016-06-14 11:24:57 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PhotoActivity"
|
2017-12-01 11:37:48 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize">
|
2016-06-14 11:24:57 +02:00
|
|
|
<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>
|
|
|
|
</activity>
|
|
|
|
|
2016-06-14 11:39:45 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.VideoActivity"
|
2017-12-01 11:37:48 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize">
|
2016-06-14 11:39:45 +02:00
|
|
|
<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="video/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2016-10-05 18:37:28 +02:00
|
|
|
<activity
|
2020-02-28 11:47:57 +01:00
|
|
|
android:name=".activities.EditActivity"
|
2016-10-05 20:47:58 +02:00
|
|
|
android:label="@string/editor">
|
2020-02-28 11:47:57 +01:00
|
|
|
|
|
|
|
<intent-filter
|
|
|
|
android:name="foss-editor">
|
|
|
|
|
2016-10-05 23:19:24 +02:00
|
|
|
<action android:name="android.intent.action.EDIT"/>
|
2016-10-05 18:37:28 +02:00
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
2017-05-31 20:36:20 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.android.camera.action.CROP"/>
|
|
|
|
|
|
|
|
<data android:scheme="content"/>
|
|
|
|
<data android:scheme="file"/>
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.ALTERNATIVE"/>
|
|
|
|
<category android:name="android.intent.category.SELECTED_ALTERNATIVE"/>
|
|
|
|
</intent-filter>
|
2016-10-05 18:37:28 +02:00
|
|
|
</activity>
|
2016-10-08 17:03:52 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SetWallpaperActivity"
|
2016-10-08 20:03:12 +02:00
|
|
|
android:label="@string/simple_wallpaper">
|
2016-10-08 17:03:52 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ATTACH_DATA"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SET_WALLPAPER"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-03-06 11:51:13 +01:00
|
|
|
|
2018-12-16 15:48:44 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WidgetConfigureActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/MyWidgetConfigTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2017-03-06 11:51:13 +01:00
|
|
|
<provider
|
2018-10-05 22:42:21 +02:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2017-03-06 11:51:13 +01:00
|
|
|
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>
|
2017-04-25 23:23:36 +02:00
|
|
|
|
2018-01-22 23:43:42 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".receivers.RefreshMediaReceiver"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.simplemobiletools.REFRESH_MEDIA"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-05-12 21:00:07 +02:00
|
|
|
|
2018-12-16 15:48:44 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".helpers.MyWidgetProvider"
|
2018-12-16 23:55:25 +01:00
|
|
|
android:icon="@drawable/img_widget_preview">
|
2018-12-16 15:48:44 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget_info"/>
|
|
|
|
</receiver>
|
|
|
|
|
2020-04-26 10:04:38 +02:00
|
|
|
<receiver android:name=".receivers.BootCompletedReceiver"
|
|
|
|
android:exported="true"
|
|
|
|
android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2019-03-09 20:07:15 +01:00
|
|
|
<service
|
|
|
|
android:name=".jobs.NewPhotoFetcher"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"/>
|
|
|
|
|
2018-05-12 21:00:07 +02:00
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Red"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_red"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_red"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Pink"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_pink"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_pink"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Purple"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_purple"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_purple"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Deep_purple"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_deep_purple"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_deep_purple"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Indigo"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_indigo"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_indigo"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Blue"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_blue"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_blue"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Light_blue"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_light_blue"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_light_blue"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Cyan"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_cyan"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_cyan"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Teal"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_teal"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_teal"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Green"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_green"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_green"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Light_green"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_light_green"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_light_green"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Lime"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_lime"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_lime"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Yellow"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_yellow"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_yellow"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Amber"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_amber"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_amber"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
2018-07-12 14:37:09 +02:00
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Orange"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
2018-05-12 21:00:07 +02:00
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Deep_orange"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_deep_orange"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_deep_orange"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Brown"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_brown"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_brown"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Blue_grey"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_blue_grey"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_blue_grey"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.SplashActivity.Grey_black"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_grey_black"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_grey_black"
|
|
|
|
android:targetActivity=".activities.SplashActivity">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
2016-02-16 22:23:25 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|