Why is the Google Play Billing Library not shown up in the SDK Manager?

Checking the offical blog:

Play Billing Library is available through Maven repository

Just add:

dependencies {
    ...
    compile 'com.android.billingclient:billing:1.0'
}

You can find more details about the library in the official doc.

Leave a Comment