Error in Adding the In-app Billing Library

前端 未结 9 700
轻奢々
轻奢々 2021-01-31 08:38

I was doing this following these steps as mentioned in the link.

  1. Copy the IInAppBillingService.aidl file to your Android project.

    (1) If you are
9条回答
  •  没有蜡笔的小新
    2021-01-31 08:54

    2018

    app/build.gradle:
    
    sourceSets {
      main {
        aidl.srcDirs = ['src/main/aidl']
      }
    }
    

    or

    sourceSets {
      main {
        aidl.srcDirs = ['src']
      }
    }
    

    for IInAppBillingService.aidl

提交回复
热议问题