Gaurav Arora
Gaurav Arora

Reputation: 17264

AndEngine for Android 2.3

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

Answers (1)

Gatekeeper
Gatekeeper

Reputation: 7128

Placing this in your manifest file will fix all your problems ^.^

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

Upvotes: 3

Related Questions