Reputation: 313
I want to add in-app-billing option in the app. In google documentation says that you need to add permission <uses-permission android:name="com.android.venging.BILLING"/>
in manifest
file. I added this permission, IInAppBillingService.aidl
in the project and the the service. But developer console says "Your app doesn't have any in-app products yet, To add in-app products, you need to add the BILLING permission to your APK.". Anyone had this problem? Do I need to wait until google will update the information?
EDIT Here is where aidl file located
Upvotes: 1
Views: 1953
Reputation: 1773
Looks like you have a typo in your permission, it's supposed to be "android:name="com.android.vending.BILLING"
. This doesn't give a compilation error.
Upvotes: 1
Reputation: 941
Did you uploaded an signed-apk with the permission and the .aidl file ?
It normally allows to add IAP after you uploaded and an signed apk with these files...
Upvotes: 0