-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAndroidManifest.xml
34 lines (34 loc) · 2.1 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
<?xml version="1.0" encoding="UTF-8"?>
<manifest android:versionCode="28" android:versionName="2.0"
package="com.blork.sowidget" xmlns:android="http://schemas.android.com/apk/res/android">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:label="@string/app_name"
android:launchMode="singleTop" android:name=".QuestionList" android:theme="@android:style/Theme.Light.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:label="@string/app_name"
android:launchMode="singleTop"
android:name=".FavouritesList" android:theme="@android:style/Theme.Light.NoTitleBar"/>
<activity android:label="@string/app_name"
android:name=".Settings" android:theme="@android:style/Theme.Light.NoTitleBar"/>
<receiver android:name=".Widget" android:process=":remote">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@layout/widget_info"/>
</receiver>
<service android:enabled="true" android:name=".SoService"/>
<provider
android:authorities="com.blork.sowidget.provider.questionscontentprovider" android:name="com.blork.sowidget.provider.QuestionsContentProvider"/>
<provider
android:authorities="com.blork.sowidget.provider.questionscontentprovider" android:name=".provider.QuestionsContentProvider"/>
<provider
android:authorities="com.blork.sowidget.provider.favouritescontentprovider" android:name=".provider.FavouritesContentProvider"/>
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>