Chalong
Chalong

Reputation: 11

how to build android framework

I have tried "mmm" under the path of frameworks/base. But I have never got the result I wanted. Is there any one who has successfully builded the framework of android? I think it will make a new framework.jar into the path of

/out/debug/target/product/{my-phone}/system/framework 

Can any one help me ? It is a strange problem .

Upvotes: 1

Views: 4639

Answers (2)

Nguyen
Nguyen

Reputation: 2123

i usualy use "make -j4" to build Android source, framework.jar will be put in out/target/product/generic/system/framework. In my experience, 'mmm' can not used to build framework, I just use it to build system applications

Upvotes: 0

anz
anz

Reputation: 1327

Try using make instead of mmm. make will not take much time if you have already build the system image..

Upvotes: 1

Related Questions