aevum / libgdx-cpp

A cross platform (iOS, Android, Desktop) c++ port of java's libgdx awesome framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android - generated manifest forces to launch in compatibility mode

ufoq opened this issue · comments

Manifest generated by wizard lacks of <uses-sdk> tag, so app runs like with:

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

and scene is scaled wrong. When I explicitly declared:

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

it's ok.

Tested with Android SDK rev 21.0.1 and emulator with Android 4.2 and arm archi

Hi @mUfoq,

sadly it seems that the android command line tool does not provide a parameter to set the minimum sdk while creating the project. I could do a manual replace to it, will see what can I do...