Android Question This version of the application is not configured for billing through Google Play

MitchBu

Well-Known Member
Licensed User
Longtime User
I am trying to update google billing to the latest version.

I downloaded the latest version at https://www.b4x.com/android/forum/threads/109945/#content

Now my app says:

Screenshot_2022-10-08-20-27-26-316_com.android.vending.jpg


Help !
 

MitchBu

Well-Known Member
Licensed User
Longtime User
Make sure that there are no old snippets in the manifest editor and that this line was added:
B4X:
CreateResourceFromFile(Macro, GooglePlayBilling.GooglePlayBilling)

Hi Erel,

This was already present. Here is the content of Manifest Editor:


Manifest:
'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: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="30"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"/>
    )
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
CreateResourceFromFile(Macro, Themes.DarkTheme)
'End of default text.
CreateResourceFromFile(Macro, GooglePlayBilling.GooglePlayBilling)
 
Upvote 0
Top