How to choose the target version of android

Monkey Targets Forums/Android/How to choose the target version of android

DiabloV(Posted 2013) [#1]
Hello.

When i compile a project for android, who are the options for choose the android level (ex 4.1 or 4.2...)

thanks.


silentshark(Posted 2013) [#2]
try this.. http://www.monkeycoder.co.nz/Community/post.php?topic=4707&post=51058


DiabloV(Posted 2013) [#3]
hello

the directory /targets/android/project.properties" don't exist.


Ironstorm(Posted 2013) [#4]
"your-monkey-path/targets/android/template/templates/AndroidManifest.xml"

There you have to change the targetSdkVersion to your android level. For example 17 for Android 4.2.
So it would looks like:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="17" />



DiabloV(Posted 2013) [#5]
i try