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