This repository has been archived by the owner on Feb 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAndroidManifest.xml
55 lines (47 loc) · 2.21 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.suchagit.android2cloud" android:installLocation="auto" android:versionName="2.1.3" android:versionCode="29">
<uses-sdk android:minSdkVersion="3"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
<application android:icon="@drawable/ic_launcher_2cloud"
android:label="@string/app_name">
<activity android:name=".PostLinkActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<activity android:name=".OAuthActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="2cloud" />
</intent-filter>
</activity>
<activity android:name=".OAuthWebView" android:label="@string/app_name"
android:configChanges="orientation" />
<activity android:name=".Preferences" android:label="@string/app_name">
</activity>
<service android:name=".HttpService"></service>
<activity android:name=".Billing" android:label="@string/app_name"
android:configChanges="orientation" />
<service android:name=".BillingService" />
<receiver android:name=".BillingReceiver">
<intent-filter>
<action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
<action android:name="com.android.vending.billing.RESPONSE_CODE" />
<action android:name="com.android.vending.billing.PURCHASE_STATE_CHANGED" />
</intent-filter>
</receiver>
</application>
<supports-screens android:smallScreens="true"
android:anyDensity="true" android:largeScreens="true"
android:resizeable="true" android:normalScreens="true"></supports-screens>
</manifest>