Questions tagged «aidl»

10
如何将aidl文件添加到Android Studio(来自应用内结算示例)
我目前正在将Eclipse应用程序迁移到Android Studio。该应用正在使用应用内结算。 我的主要问题是编译项目和aidl文件(我想你们都使用了该文件) 我收到此错误消息: Gradle: error: cannot find symbol class IInAppBillingService Gradle: error: package IInAppBillingService does not exist 因此,在完成一些教程之后,我将该文件从com.mypackage.billing移至src / main / aidl(请参阅此参考资料) 但是,一旦这样做,我就会收到以下消息: Gradle:任务':xxxxxxxxxxx:compileDebugAidl'的执行失败。 无法运行命令:(...)C:\ Users \ xxxx \ AndroidStudioProjects \ xxxxxxProject \ xxxxxxx \ src \ main \ aidl \ IInAppBillingService.aidl:45接口IInAppBillingService应该在名为com \ xxxxxxxx \ billing \ IInAppBillingService的文件中声明.aidl。 该消息显然与我上面链接的Google错误页面上的帖子矛盾。 …

14
任务“:app:compileDebugAidl”的执行失败:缺少帮助
我在计算机上安装了Android Studio。我创建了一个新项目,但是却出现了以下错误。我能做什么? Error:Execution failed for task ':app:compileDebugAidl'. > aidl is missing 我的Android Studio版本是1.1.0。 这是我的build.gradle文件: buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.