I\'d like to make an android application with in app purchases, I read often that I have to download the Google Play Billing Library from SDK Manager
(e.g. http://ww
Play Billing Library is available through Maven repository.
Add in top level build.gradle file
buildscript {
mavenCentral()
}
................
allprojects {
repositories {
mavenCentral()
}
}
Add dependency into module level build.gradle file.
implementation 'com.android.billingclient:billing:1.0'
Then After implement in app billing sample example into your project.
https://codelabs.developers.google.com/codelabs/play-billing-codelab/#0
This link you can find sample code of in app billing example of google
https://github.com/googlesamples/android-play-billing