How to build a part of Android AOSP?

后端 未结 3 1214
甜味超标
甜味超标 2021-02-01 22:32

I am trying to build my own libs and apps in external directory of the AOSP, but the problem is i have to run make each time and the make will compile/build whole the android.

3条回答
  •  悲哀的现实
    2021-02-01 22:56

    You can get list of all of the modules in your Android code with the following command:

    make modules
    

    To build any single module:

    make [modulename]
    

提交回复
热议问题