The entire application will be redesigned from the scratch. Still the minimum API level and the target API level should be defined. The old minSdkVersion is 8, which allows all 2.2.x devices to run the application.
The app could either:
- use a
minSdkVersion of 14 or higher, avoiding the use of external compatibility libraries, thus enforcing performances, but cutting out users with old Android versions, or
- keep using the current
minSdkVersion, allowing all users to use the application but making impossible some kinds of native support leveraging.
The entire application will be redesigned from the scratch. Still the minimum API level and the target API level should be defined. The old
minSdkVersionis 8, which allows all 2.2.x devices to run the application.The app could either:
minSdkVersionof 14 or higher, avoiding the use of external compatibility libraries, thus enforcing performances, but cutting out users with old Android versions, orminSdkVersion, allowing all users to use the application but making impossible some kinds of native support leveraging.