My older apps has a minimum Android SDK version 2.1 (API 7). When I'm trying to make a new game/app, its minimum SDK is now Android 4.0 (API 14). Any reason why this happens?
The reason is
Taifun
Ahh, are there archived older versions of AI2?
the online version is always the latest version
create your app as always in App Inventor, build it and then modify the apk file to set the minimum sdk to a value of your choice and test on your test device
Taifun
(added to FAQ)
How to edit the minimum SDK in AndroidManifest? Do I need to put some extra XML stuff?
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... >
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="35" />
...
</manifest>
See also here: