2016-01-26 22:08:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-01-28 19:51:52 +01:00
|
|
|
<manifest
|
2016-10-23 17:26:42 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-06 17:42:47 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-29 21:13:38 +01:00
|
|
|
package="com.simplemobiletools.calendar"
|
|
|
|
android:installLocation="auto">
|
2016-01-26 22:08:27 +01:00
|
|
|
|
2016-07-07 11:35:37 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
2017-02-28 18:25:36 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2017-10-21 15:19:17 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
2016-11-26 11:38:06 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2017-11-08 09:07:39 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CALENDAR"/>
|
2017-08-12 22:13:57 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_CALENDAR"/>
|
2017-11-13 12:02:53 +01:00
|
|
|
<uses-permission android:name='android.permission.WAKE_LOCK'/>
|
2017-11-06 17:42:47 +01:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.USE_FINGERPRINT"
|
|
|
|
tools:node="remove"/>
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
<application
|
2016-09-12 20:51:46 +02:00
|
|
|
android:name=".App"
|
2016-01-26 22:08:27 +01:00
|
|
|
android:allowBackup="true"
|
2017-01-04 19:14:25 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2016-08-29 21:12:20 +02:00
|
|
|
android:label="@string/app_launcher_name"
|
2017-12-02 16:03:41 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
2016-01-26 22:08:27 +01:00
|
|
|
android:theme="@style/AppTheme">
|
2017-01-02 23:33:31 +01:00
|
|
|
|
2016-01-28 19:51:52 +01:00
|
|
|
<activity
|
2017-01-02 23:33:31 +01:00
|
|
|
android:name=".activities.SplashActivity"
|
2018-04-11 23:24:48 +02:00
|
|
|
android:launchMode="singleTask"
|
2018-07-12 23:13:12 +02:00
|
|
|
android:theme="@style/SplashTheme"/>
|
2016-01-30 19:01:48 +01:00
|
|
|
|
2018-04-11 23:24:48 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
|
|
|
android:launchMode="singleTask">
|
2018-01-18 23:37:42 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.default_searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2017-04-06 22:51:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:scheme="content"/>
|
|
|
|
<data android:scheme="file"/>
|
|
|
|
<data android:mimeType="text/x-vcalendar"/>
|
|
|
|
<data android:mimeType="text/calendar"/>
|
|
|
|
</intent-filter>
|
2017-10-06 20:09:17 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="time/epoch"/>
|
|
|
|
<data android:host="com.android.calendar"/>
|
|
|
|
<data android:scheme="content"/>
|
|
|
|
</intent-filter>
|
2018-03-26 16:34:09 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/event"/>
|
|
|
|
</intent-filter>
|
2017-04-06 22:51:03 +02:00
|
|
|
</activity>
|
2017-01-02 23:33:31 +01:00
|
|
|
|
2016-01-31 17:02:44 +01:00
|
|
|
<activity
|
2016-11-27 18:50:47 +01:00
|
|
|
android:name=".activities.WidgetMonthlyConfigureActivity"
|
2016-01-31 17:02:44 +01:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/MyWidgetConfigTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-06-01 17:19:54 +02:00
|
|
|
|
2016-11-27 21:48:16 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WidgetListConfigureActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/MyWidgetConfigTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2016-06-01 17:19:54 +02:00
|
|
|
<activity
|
2016-12-29 22:46:27 +01:00
|
|
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
2016-07-19 00:11:10 +02:00
|
|
|
android:label="@string/about"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-06-02 19:45:38 +02:00
|
|
|
|
2016-12-29 23:39:16 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
|
|
|
android:label="@string/customize_colors"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2017-01-06 20:32:58 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
|
|
|
|
android:label="@string/third_party_licences"
|
|
|
|
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
|
|
|
|
|
2016-07-03 23:55:34 +02:00
|
|
|
<activity
|
2018-02-19 15:58:18 +01:00
|
|
|
android:name="com.simplemobiletools.commons.activities.FAQActivity"
|
|
|
|
android:label="@string/frequently_asked_questions"
|
|
|
|
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
|
|
|
|
|
|
|
|
<activity
|
2016-07-03 23:55:34 +02:00
|
|
|
android:name=".activities.EventActivity"
|
2018-01-22 17:36:11 +01:00
|
|
|
android:parentActivityName=".activities.MainActivity">
|
2018-01-11 17:54:56 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.EDIT"/>
|
|
|
|
<action android:name="android.intent.action.INSERT"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/event"/>
|
|
|
|
</intent-filter>
|
2018-03-24 09:49:51 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.EDIT"/>
|
|
|
|
<action android:name="android.intent.action.INSERT"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="vnd.android.cursor.dir/event"/>
|
|
|
|
</intent-filter>
|
2018-01-11 17:54:56 +01:00
|
|
|
</activity>
|
2016-07-03 23:55:34 +02:00
|
|
|
|
2016-07-18 20:11:58 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
2016-07-18 21:58:44 +02:00
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-07-18 20:11:58 +02:00
|
|
|
|
2017-02-09 22:51:47 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ManageEventTypesActivity"
|
|
|
|
android:label="@string/event_types"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
|
2018-02-01 16:10:32 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SnoozeReminderActivity"
|
|
|
|
android:theme="@style/Theme.Transparent"/>
|
|
|
|
|
2016-06-02 19:45:38 +02:00
|
|
|
<receiver
|
2016-11-27 18:50:47 +01:00
|
|
|
android:name=".helpers.MyWidgetMonthlyProvider"
|
2017-01-04 19:14:25 +01:00
|
|
|
android:icon="@drawable/img_widget_monthly_preview"
|
2016-11-27 21:48:16 +01:00
|
|
|
android:label="@string/widget_monthly">
|
2016-06-02 19:45:38 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
2016-11-27 18:50:47 +01:00
|
|
|
android:resource="@xml/widget_monthly_info"/>
|
2016-06-02 19:45:38 +02:00
|
|
|
</receiver>
|
|
|
|
|
2016-11-27 20:15:14 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".helpers.MyWidgetListProvider"
|
2017-01-04 19:14:25 +01:00
|
|
|
android:icon="@drawable/img_widget_list_preview"
|
2016-11-27 21:48:16 +01:00
|
|
|
android:label="@string/widget_list">
|
2016-11-27 20:15:14 +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_list_info"/>
|
|
|
|
</receiver>
|
|
|
|
|
2016-11-29 18:53:26 +01:00
|
|
|
<service
|
|
|
|
android:name=".services.WidgetService"
|
|
|
|
android:permission="android.permission.BIND_REMOTEVIEWS"/>
|
|
|
|
|
2018-02-09 22:55:01 +01:00
|
|
|
<service android:name=".services.SnoozeService"/>
|
|
|
|
|
2016-07-07 11:35:37 +02:00
|
|
|
<receiver android:name=".receivers.NotificationReceiver"/>
|
|
|
|
|
2017-08-20 19:05:29 +02:00
|
|
|
<receiver android:name=".receivers.CalDAVSyncReceiver"/>
|
|
|
|
|
2016-07-07 11:35:37 +02:00
|
|
|
<receiver android:name=".receivers.BootCompletedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
|
2018-03-07 15:41:05 +01:00
|
|
|
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON"/>
|
2016-07-07 11:35:37 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2017-04-17 15:30:22 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
2017-10-30 18:09:50 +01:00
|
|
|
android:authorities="${applicationId}.provider"
|
2017-04-17 15:30:22 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-10-30 18:09:50 +01:00
|
|
|
android:resource="@xml/provider_paths"/>
|
2017-04-17 15:30:22 +02:00
|
|
|
</provider>
|
2018-05-09 20:46:36 +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 23:13:12 +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-09 20:46:36 +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-01-26 22:08:27 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|