Simple-Calendar/app/src/main/AndroidManifest.xml

116 lines
4.3 KiB
XML
Raw Normal View History

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
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.VIBRATE"/>
2016-01-26 22:08:27 +01:00
<application
android:name=".App"
2016-01-26 22:08:27 +01:00
android:allowBackup="true"
2016-06-03 20:22:57 +02:00
android:icon="@mipmap/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"/>
<activity
2016-11-27 18:50:47 +01:00
android:name=".activities.WidgetMonthlyConfigureActivity"
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
<activity
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
android:label="@string/customize_colors"
android:parentActivityName=".activities.SettingsActivity"/>
<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 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-06-02 19:45:38 +02:00
<activity
2016-12-29 22:48:42 +01:00
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
android:label="@string/third_party_licences"
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
2016-06-02 19:45:38 +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
2016-06-02 19:45:38 +02:00
<receiver
2016-11-27 18:50:47 +01:00
android:name=".helpers.MyWidgetMonthlyProvider"
android:icon="@mipmap/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"
2016-11-30 19:49:51 +01:00
android:icon="@mipmap/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>
<service
android:name=".services.WidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS"/>
<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>