Android Question Android billing Service

billmoultrie

Member
Licensed User
Longtime User
I've been trying to test the android billing service and have run the demo program from the tutorial and I get the following error when I compile the program, should there be a service module?

B4A version: 5.02 (1)
Parsing code. (0.07s)
Compiling code. Error
Module: inappbillingservice_br not found.

I have Inappbilling3 ver 1.11 in the library

Thanks
 

billmoultrie

Member
Licensed User
Longtime User
The manifest code is below:

B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
'<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="17"/>

AddManifestText(<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="18"/>
                <supports-screens android:largeScreens="true"
                                  android:normalScreens="true"
                                  android:smallScreens="true"
                                  android:anyDensity="true"/>)

SetManifestAttribute("android:installLocation", "auto")   

SetApplicationAttribute(android:hardwareAccelerated, "true")
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")

'InAppBilling declarations - Start
AddReceiverText(InAppBillingService,  <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>)
'InAppBilling declarations - End
  
'End of default text.
 
Upvote 0
Top