I have given all permissions but it is not working in 9 and latest all android device
flutter downloader
My flutter app won't open in low android 11 version. Only opens in version 12. How can I fix this? Do I need to make changes in the sdk?
Can you try open android/app/build.gradle and change minSdkVersion 24 (for android version 7)
The Ionic app is crashing after installing on Android 12. Need Help
** just completed my flutter app and I want to install him in different real devices, in devices with android version 10.0 is working perfectly but in devices with android version 8.0 not be installed**
Go to
Project>android>app>src>main>AndroidManifest.xml and check for the parameter targetSdkVersion
Change that to 29
I have create my ionic app and run on Android emulator (Android 7.x).it work correctly,but when I try to install on Android box (Android 6.0.1) i got error
Make sure your testing device is on the same version of your compiled apk sdk or it is in a version ahead of it.
For example, an app built for Android 7.1.0 will not run on Android 6.1.0 but an app built for Android 6.1.0 will run on both 6.1.0 and 7.1.0 and so on.
As a default approach the newer versions of ionic cli ships aways with the latest Android sdk version, which current is 7.1.0, if youl'd like to use an older one you need to remove the platform and add it again, you can do it within these commands:
Remove the platform
ionic cordova platform remove android
Then add it again with your desired android version
ionic cordova platform add android#6.1.0
For this example I'm using the 6.1.0 version but feel free to change it to another sdk version.