Wait for the next update that targets SDK 31.
I think Niotron is waiting for AI2 to do it first. Neither AI2 nor Kodular have done so yet.
You can also do it manually, but that’s not really an easy solution:
- Build the APK.
- Decompile it.
- Edit the Manifest and add
android:exported="true"
to each<activity ... >
and<receiver ... >
. - Set
targetSdkVersion = 31
. - Recompile it.
- Check if the app (APK) can be installed on your test devices.
- If so, convert the APK to AAB: Convert APK TO AAB File
(otherwise check if you missed to addandroid:exported="true"
to every<activity>
and<receiver>
and continue with step 4).