This repository has been archived by the owner on Feb 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAndroidManifest.xml
44 lines (40 loc) · 2.09 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.vexelon.myglob" android:versionName="3.1.10" android:versionCode="42" android:installLocation="auto">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:description="@string/about_tagline" android:allowBackup="true">
<activity android:label="@string/app_name" android:name="MainActivity" android:configChanges="keyboardHidden|orientation" android:uiOptions="splitActionBarWhenNarrow">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="Preferences1" android:name=".configuration.AccountPreferencesActivity"></activity>
<receiver android:name="WidgetProvider" android:label="@string/widget_4x1">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_4x1" />
</receiver>
<service android:name="UpdateWidgetService"></service>
<receiver android:name="WidgetProvider4x2" android:label="@string/widget_4x2">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_4x2" />
</receiver>
<receiver android:name="WidgetProvider3x2" android:label="@string/widget_3x2">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_3x2" />
</receiver>
</application>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15"/>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>