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

50 lines
1.6 KiB
XML
Raw Normal View History

2016-02-13 21:05:54 +01:00
<?xml version="1.0" encoding="utf-8"?>
2016-02-13 21:14:55 +01:00
<manifest
2016-02-25 22:11:03 +01:00
package="com.simplemobiletools.notes"
2016-02-13 21:14:55 +01:00
xmlns:android="http://schemas.android.com/apk/res/android">
2016-02-13 21:05:54 +01:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
2016-02-13 21:17:14 +01:00
<activity
2016-06-01 17:29:14 +02:00
android:name=".MainActivity"
2016-02-13 21:17:14 +01:00
android:screenOrientation="portrait">
2016-02-13 21:05:54 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
2016-02-13 22:47:37 +01:00
2016-02-13 23:53:01 +01:00
<activity
2016-06-01 17:29:14 +02:00
android:name=".MyWidgetConfigure"
2016-02-13 23:53:01 +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:29:14 +02:00
<activity
android:name=".AboutActivity"
android:label="@string/about"
android:screenOrientation="portrait"/>
2016-02-13 22:47:37 +01:00
<receiver
2016-06-01 17:29:14 +02:00
android:name=".MyWidgetProvider"
2016-02-13 22:47:37 +01:00
android:icon="@mipmap/ic_launcher"
android:label="Simple Notes">
<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-02-13 21:05:54 +01:00
</application>
</manifest>