Obsolete
Status Update
Comments
do...@gmail.com <do...@gmail.com> #2
I had the same problem!
I could solve it by putting the .aidl file in an aidl directory.
Look at the attached screenshot to see the project structure.
I could solve it by putting the .aidl file in an aidl directory.
Look at the attached screenshot to see the project structure.
mg...@gmail.com <mg...@gmail.com> #3
Wow, I really appreciate your fast and correct response. That worked. Thank you for your help.
sb...@google.com <sb...@google.com> #4
The request to show an error for AIDL files in the wrong place is documented in 56930
hd...@gmail.com <hd...@gmail.com> #5
If anyone else is having this issue, it took me a while to realize the java file gets generated in the build folder.
[Deleted User] <[Deleted User]> #6
Wow... so thanks , issue fixed ;)
l....@gmail.com <l....@gmail.com> #7
Thanks! It's worked! I'm happy)))
mo...@gmail.com <mo...@gmail.com> #8
Thanks so much :D
qm...@gmail.com <qm...@gmail.com> #9
Woooooow .very good.tankssssss
mo...@gmail.com <mo...@gmail.com> #10
Not for me :(
Description
I have copied the .aidl file to com/android/vending/billing and built the project. I get: Gradle: error: package com.android.vending.billing does not exist.
Instruction I found reference to Eclipes' New->package, but AndroidStudio does not have that.
Do I make it a package in Android Studio? Do I modify my AndroidManafest.xml?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="
package="com.company.mikeinappbillingtest"
android:versionCode="3"
android:versionName="1.3" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.company.mikeinappbillingtest.MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>