英文:
What is the compiled generation of the aidl file in Aosp and where is it stored
问题
After building AOSP project, I can't find compile generation of aidl file. For example, I can't find IAccountManager.java corresponding to IAccountManager.aidl (/AOSP/frameworks/base/core/java/android/accounts/IAccountManager.aidl). Is its compiled generation a java file, and where should it be stored?
英文:
After building AOSP project,I can't find compile generation of aidl file.For example, I can't find IAccountManager.java corresponding to IAccountManager.aidl(/AOSP/frameworks/base/core/java/android/accounts/IAccountManager.aidl)
Is its compiled generation a java file, and where should it be stored
答案1
得分: 1
是的,应该有一些中间生成的Java文件,通常存储在(以您的文件为例):out/soong/.intermediates/frameworks/base/framework/android_common/gen/aidl/frameworks/base/core/java/android/accounts/IAccountManager.java
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论