2016-01-26 22:08:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-01-28 19:51:52 +01:00
|
|
|
<manifest
|
|
|
|
package="calendar.simplemobiletools.com"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2016-01-28 19:51:52 +01:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
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
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".MyWidgetProvider"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="Simple Calendar">
|
|
|
|
<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>
|