This repository has been archived by the owner on May 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
AndroidManifest.xml
81 lines (79 loc) · 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
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="80230011" android:versionName="4.3.11-1" package="com.android.vending"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="18" />
<permission android:name="com.android.vending.TOS_ACKED" android:protectionLevel="dangerous"/>
<permission android:name="com.android.vending.CHECK_LICENSE" android:protectionLevel="normal"/>
<permission android:name="com.android.vending.BILLING" android:protectionLevel="normal"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<application android:theme="@style/Theme.AppCompat.Light.DarkActionBar" android:name="org.microg.playstore.StoreApplication">
<activity android:name=".AssetBrowserActivity" android:enabled="true" android:exported="true"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.SEARCH"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.APP_MARKET"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/>
<meta-data android:name="android.app.default_searchable"
android:value="org.microg.playstore.MainActivity"/>
</activity>
<activity android:name="org.microg.playstore.MainActivity" android:exported="true"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.SEARCH"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="market" android:host="search" android:path=""/>
<data android:scheme="http" android:host="market.android.com" android:path=""/>
<data android:scheme="http" android:host="market.android.com" android:pathPrefix="/"/>
<data android:scheme="https" android:host="market.android.com" android:path=""/>
<data android:scheme="https" android:host="market.android.com" android:pathPrefix="/"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http" android:host="play.google.com" android:pathPrefix="/store"/>
<data android:scheme="https" android:host="play.google.com" android:pathPrefix="/store"/>
<data android:scheme="http" android:host="play.google.com" android:pathPrefix="/redeem"/>
<data android:scheme="https" android:host="play.google.com" android:pathPrefix="/redeem"/>
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/>
<meta-data android:name="android.app.default_searchable"
android:value="org.microg.playstore.MainActivity"/>
</activity>
<receiver android:name="org.microg.playstore.TosAckedReceiver"
android:permission="com.android.vending.TOS_ACKED" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.TOS_ACKED"/>
</intent-filter>
</receiver>
<service android:name="org.microg.playstore.LicensingService"
android:permission="com.android.vending.CHECK_LICENSE">
<intent-filter>
<action android:name="com.android.vending.licensing.ILicensingService"/>
</intent-filter>
</service>
<service android:name="org.microg.playstore.MarketBillingService">
<intent-filter>
<action android:name="com.android.vending.billing.MarketBillingService.BIND"/>
</intent-filter>
</service>
<service android:name="org.microg.playstore.InAppBillingService">
<intent-filter>
<action android:name="com.android.vending.billing.InAppBillingService.BIND"/>
</intent-filter>
</service>
</application>
</manifest>