Thanks Erel. I will check it out.You need to set the targetSdkVersion to 23+. 23 means that you need to handle runtime permissions. Not a big deal.
Copying libraries resources (1.84s)
ZipAlign file. (0.11s)
Signing package file (private key). (1.95s)
Installing file to device. Error
adb: failed to install APPNAME_RAPID_DEBUG.apk: Failure [INSTALL_FAILED_DEPRECATED_SDK_VERSION: App package must target at least SDK version 23, but found 18]
AddManifestText(
<uses-sdk android:minSdkVersion="6" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
Unless the app is "Permanently private" it needs to target API level 33+ to be on Play Store. If you submit a new app or update that sets the target lower than that, it will (should) be rejected.Thanks Erel. I will check it out.