forked from gostaj/MtGoxWidget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
39 lines (32 loc) · 1.58 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
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="st.brothas.mtgoxwidget"
android:versionCode="13" android:versionName="1.0.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="19"/>
<!-- If the below is required="true" only some 500+ devices are supported instead of 4700+. -->
<uses-feature android:name="android.software.app_widgets" android:required="false" />
<application android:icon="@drawable/bc_logo_60" android:label="@string/app_name">
<receiver android:name=".MtGoxWidgetProvider">
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/appwidget_provider" />
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
</receiver>
<activity android:name=".GraphPopupActivity"
android:theme="@style/Theme.Base.AppCompat"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".MtGoxPreferencesActivity"
android:label="Preferences">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
</intent-filter>
</activity>
</application>
</manifest>