sadegh nordeh
Member
I am using the library
google billing
to implement Google Play Payments, but when I upload the app to the console, it gives this message after checking
I also wrote
Please advise what I should do.
google billing
to implement Google Play Payments, but when I upload the app to the console, it gives this message after checking
finally got the solution.
By 2023, <uses-permission android:name="com.android.vending.BILLING"/> </manifest> is handled by the 'BILLING' module, so you don't need to ad it in the manifest by yourself.
Instead, in android/app/build.gradle, add the following line in the dependencies section:
dependencies {
// blah blah
def billing_version = "5.1.0" // for today, it's the latest
implementation "com.android.billingclient:billing:$billing_version"
}
I also wrote
access in the manifest.CreateResourceFromFile(Macro, GooglePlayBilling.GooglePlayBilling)
Please advise what I should do.