Reputation: 17264
I'm making a android game for Gingerbread. When i tried downloading AndEngine from official source, it was only available for APK 15+ version.
The version in incompatible with Gingerbread. I even googled up looking for previous versions but couldn't find one. Help me out !
Upvotes: 0
Views: 669
Reputation: 7128
Placing this in your manifest file will fix all your problems ^.^
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
Upvotes: 3