-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
executable file
·31 lines (28 loc) · 1.35 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dixi.soft.fx_watcher"
android:versionCode="4"
android:versionName="0.2b" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<receiver android:name=".widgets.WidgetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
</intent-filter>
<meta-data android:resource="@xml/widget_provider" android:name="android.appwidget.provider"/>
</receiver>
<service android:name=".widgets.WidgetService" android:permission="android.permission.BIND_REMOTEVIEWS"></service>
<activity android:name=".main.UserDataDialogActivity" android:configChanges="keyboard|orientation|screenSize" android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
</intent-filter>
</activity>
</application>
</manifest>