-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
27 lines (21 loc) · 997 Bytes
/
Copy pathAndroidManifest.xml
File metadata and controls
27 lines (21 loc) · 997 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ch.almana.android.billing"
android:versionCode="2"
android:versionName="1.1" >
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="com.android.vending.BILLING" >
</uses-permission>
<application>
<service android:name="ch.almana.android.billing.backend.BillingService" />
<receiver android:name="ch.almana.android.billing.backend.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>
<activity android:name=".view.activity.BillingProductListActiviy" >
</activity>
</application>
</manifest>