A complete list of all Android project.properties options -
A complete list of all Android project.properties options -
i know next properties , have finish list.
this specifies target api level (api level 17 in example):
target=android-17
this specifies whether project library:
android.library=true
this specifies included libraries in android way (directories of library projects merged including project's corresponding directories):
android.library.reference.1=../relative/path/to/library/one android.library.reference.2=../relative/path/to/library/two ... android.library.reference.n=../relative/path/to/library/n
this specifies whether manifest file (androidmanifest.xml
) of library projects merged including project's manifest file:
manifestmerger.enabled=true
i saw first 3 in projects (generated eclipse) , found lastly 1 sdk tools - revisions - sdk tools, revision 20 (june 2012), hard find.
would there finish list in official site / documentations / android source?
-- edited 2013/02/17 --
thanks android developer reminded me proguard.config
property, left commented in default project.property
file.
this specifies path proguard configuration file:
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
two variables available: ${sdk.dir}
, ${user.home}
. more info found in proguard documentation.
related posts:
android - using new “manifestmerger” property
library project manifest file merge?
issue when using manifestmerger in release mode
android android-manifest adt android-library
Comments
Post a Comment