-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
executable file
·77 lines (68 loc) · 3.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.kamosoft.flickrwidget"
android:versionCode="1" android:versionName="0.1" android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:theme="@style/Theme.FlickrWidget">
<!-- the widget 4x4 -->
<receiver android:name=".size.FlickrWidget4X4" android:label="FlickrWidget 4X4">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info_4x4" />
</receiver>
<!-- the widget 4x3 -->
<receiver android:name=".size.FlickrWidget4X3" android:label="FlickrWidget 4X3">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info_4x3" />
</receiver>
<!-- the widget 4x2 -->
<receiver android:name=".size.FlickrWidget4X2" android:label="FlickrWidget 4X2">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info_4x2" />
</receiver>
<!-- the widget 4x1 -->
<receiver android:name=".size.FlickrWidget4X1" android:label="FlickrWidget 4X1">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info_4x1" />
</receiver>
<!-- the service which updates the widget -->
<service android:name="WidgetUpdateService" />
<!-- the widget configuration activities -->
<activity android:name=".size.FlickrWidgetConfigure4X4" android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity android:name=".size.FlickrWidgetConfigure4X3" android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity android:name=".size.FlickrWidgetConfigure4X2" android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity android:name=".size.FlickrWidgetConfigure4X1" android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<!-- the authenticate activity from the library -->
<activity android:name="com.kamosoft.flickr.AuthenticateActivity" android:label="@string/authenticate">
<intent-filter>
<action android:name="com.zmosoft.flickrfree.AUTHENTICATE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
</manifest>