I was getting this error:
adb: failed to install IconButtonEx_RAPID_DEBUG.apk: Failure [-26: Package b4a.example new target SDK 14 doesn't support runtime permissions but the old target SDK 26 does.]
I posted this problem to the chatroom http://www.mlsoft.org/b4achat
MikeH helped me.
I went to Project > Manifest Editor and changed:
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="14"/>
to
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/> and it worked.
I post here to help future users.
Thank you MikeH
adb: failed to install IconButtonEx_RAPID_DEBUG.apk: Failure [-26: Package b4a.example new target SDK 14 doesn't support runtime permissions but the old target SDK 26 does.]
I posted this problem to the chatroom http://www.mlsoft.org/b4achat
MikeH helped me.
I went to Project > Manifest Editor and changed:
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="14"/>
to
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/> and it worked.
I post here to help future users.
Thank you MikeH
Last edited: