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

前端 未结 3 1356
小蘑菇
小蘑菇 2020-12-03 23:05

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

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 23:58

    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.

提交回复
热议问题