Targetting higher version of SDK

Monkey Targets Forums/Android/Targetting higher version of SDK

Barry(Posted 2013) [#1]
Is it possible to target higher versions of the SDK - e.g. greater than 13? I am not sure of the benefit, if there is a performance one or if later versions of the SDK enable features that we can utilise.


Xaron(Posted 2013) [#2]
I'd say always use the highest. More important is the min sdk version: http://monkeycoder.co.nz/Community/posts.php?topic=5604


Barry(Posted 2013) [#3]
How do I change the target sdk?


Xaron(Posted 2013) [#4]
Go to /targets/android/template/templates and open the AndroidManifest.xml

Look for:
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />


And change it to anything you want.