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"
|
|
|
|
package="com.simplemobiletools.calendar">
|
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-01-25 22:07:36 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
2016-11-26 11:38:06 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2016-07-07 11:35:37 +02:00
|
|
|
|
2017-02-05 23:23:43 +01:00
|
|
|
<!--<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />-->
|
2017-01-29 21:26:42 +01:00
|
|
|
|
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"
|
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"
|
|
|
|
android:theme="@style/SplashTheme">
|
2016-01-26 22:08:27 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-01-30 19:01:48 +01:00
|
|
|
|
2017-01-02 23:33:31 +01:00
|
|
|
<activity android:name=".activities.MainActivity"/>
|
|
|
|
|
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 21:22:13 +02:00
|
|
|
<activity
|
2016-07-04 22:31:07 +02:00
|
|
|
android:name=".activities.DayActivity"
|
2016-07-19 00:11:10 +02:00
|
|
|
android:label="@string/details"
|
|
|
|
android:parentActivityName=".activities.MainActivity"/>
|
2016-07-03 21:22:13 +02:00
|
|
|
|
2016-07-03 23:55:34 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.EventActivity"
|
2016-07-19 00:11:10 +02:00
|
|
|
android:label="@string/event"
|
|
|
|
android:parentActivityName=".activities.DayActivity"/>
|
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"/>
|
|
|
|
|
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"/>
|
|
|
|
|
2016-07-07 11:35:37 +02:00
|
|
|
<receiver android:name=".receivers.NotificationReceiver"/>
|
|
|
|
|
|
|
|
<receiver android:name=".receivers.BootCompletedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2016-01-26 22:08:27 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|