为使用多个Android项目作为库的应用编写Android make文件,该文件具有自己的资源

时间:2018-06-26 15:16:03

标签: android makefile android-source

我刚开始编写Android make文件。我有一个Android项目(假设“ A”)正在使用其他几个android项目(例如“ B”,“ C”,“ D”)作为库。在Android Studio中,我添加了所有(B,C,D)Android项目作为对应用程序级别的依赖项(Android项目“ A”)build.gradle文件。

dependencies{
  compile project(path: ':libs:<B>').
  compile project(path: ':libs:<C>')
  compile project(path: ':libs:<D>') 
}

现在,我的任务是使用AOSP构建作为系统应用程序来构建我的“ A” Android项目。为此,我需要编写Android.mk for Android项目“ A”,该项目依赖于B,C,D Android项目。

对此有任何想法吗?

0 个答案:

没有答案