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-02-25 22:13:00 +01:00
|
|
|
package="com.simplemobiletools.calendar"
|
2016-01-28 19:51:52 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2016-06-03 20:22:57 +02:00
|
|
|
android:icon="@mipmap/launcher"
|
2016-01-26 22:08:27 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2016-01-28 19:51:52 +01:00
|
|
|
<activity
|
2016-06-01 17:19:54 +02:00
|
|
|
android:name=".MainActivity"
|
2016-01-28 19:51:52 +01:00
|
|
|
android:screenOrientation="portrait">
|
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
|
|
|
|
2016-01-31 17:02:44 +01:00
|
|
|
<activity
|
2016-06-01 17:19:54 +02:00
|
|
|
android:name=".MyWidgetConfigure"
|
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
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".AboutActivity"
|
|
|
|
android:label="@string/about"
|
|
|
|
android:screenOrientation="portrait"/>
|
2016-06-02 19:45:38 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".LicenseActivity"
|
|
|
|
android:label="@string/third_party_licences"
|
|
|
|
android:screenOrientation="portrait"/>
|
|
|
|
|
|
|
|
<receiver
|
2016-06-03 20:22:57 +02:00
|
|
|
android:name=".MyWidgetProvider">
|
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"
|
|
|
|
android:resource="@xml/widget_info"/>
|
|
|
|
</receiver>
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|