I tried following this link to add in app billing to my app.
I added this to my build.gradle
dependencies {
...
compile 'com.android.billingclient:billing:dp-1'
}
but I get this error when i build->clean project
Error:A problem occurred configuring project ':android'.
> Could not resolve all dependencies for configuration
':android:_debugApkCopy'.
> Could not find com.android.billingclient:billing:dp-1.
Required by:
Mygame:android:1.0
What am i missing? I can't find any useful information when googling.I am using libgdx and Android Studios.
com.android.billingclient:billing:dp-1
is available in jcenter repository so addjcenter
in repositories list of your rootbuild.gradle
file.