Saturday, October 2, 2010

Setting up Android source code

Changes to the file

1. To build on a 32-bit machine
To get rid of this error "Only 64-bit build environments are supported beyond > froyo/2.2"
/build/core/make.mk
- ifneq (64,$(findstring 64,$(build_arch)))
+ ifneq (i686,$(findstring i686,$(build_arch)))
Just be sure that instead of *64* you use your machine architecture (you can get it
running # uname -m) because mine is *i686*

2. To build with a java version of 1.5 instead of java 1.6



No comments: