Questions tagged [android-min-sdk]

This tag represents the Android Minimum SDK used in an android application, and it is regularly defined in the application manifest.

91 questions
1
vote
2 answers

Android build version and minSDKVersion in Android Studio

I have read other answers in context of "What is minSDKVersion and targetSDKVersion?" on SO and those were good enough for understanding but they talked about eclipse, not that it really matters that much. Anyway, I wanted to ask in context of…
Manish Kumar Sharma
  • 12,982
  • 9
  • 58
  • 105
1
vote
1 answer

android studio change theme to holo crashes app

I have an app I was working on. We wanted to upgrade the minSDK from Froyo to IceCream Sandwich (14) so we could use some of the newer features including the Holo Dark theme. On StackOverflow we found steps for editing the build.gradle (Module:…
Peter
  • 427
  • 4
  • 14
0
votes
0 answers

How to find declaration of "flutter dot" constants contained in build.gradle?

When creating a new flutter project (these days, 2023), it uses external constants for the min, target, and compile SDKs like this: defaultConfig { applicationId "com.example.blah" minSdkVersion flutter.minSdkVersion …
Nerdy Bunz
  • 6,040
  • 10
  • 41
  • 100
0
votes
0 answers

Flutter - Android app's size increated as double when I increated minSdkVersion

My Flutter app's size increated as double when I increased my minSdkVersion from minSdkVersion 21 to minSdkVersion 24 before updgrading the version my app size was as 36.6 MB after upgrading the version app size is increated to 77.3 MB android { …
Anand
  • 4,355
  • 2
  • 35
  • 45
0
votes
0 answers

How to find all the errors

I have an Android app and I'm trying to make it working on an older device. I decreased the minSdk in the build.gradle file and it compiles fine but when I run it, it crashes because of Call requires API level 24 (current min is 22):…
Luca
  • 13
  • 4
0
votes
0 answers

Android Google Play minSdkVersion and real min sdk version coincidence?

My app has minSdkVersion 19, but in Google Play Console when I show users statisctics of this app there are only users with sdk version 28 and up. It happens since a few months (before that I didn't track that issue so maybe it lasts longer). I have…
0
votes
0 answers

Flutter Build size increased after updating minSdkVersion to 23

After I updated Flutter to 3.7, the Build size increased after updating minSdkVersion to 23 in the flutter new project, when I updated minSdkVersion from 21 to 23, I faced that the Apk size increased from 17mg to 37 mg. I don't know why? And is it…
Mori m
  • 11
  • 1
  • 2
0
votes
2 answers

Flutter App crashes after adding MutliDex

I created a small app which worked fine on the android emulator so far (Pixel XL - API 33). I wanted to try out google ads and added the google_mobile_ads: ^1.2.0 to the pubspec.yaml file. This caused a build error and told me that the minSDK needs…
Melodix
  • 59
  • 1
  • 5
0
votes
0 answers

How to make the React Native Application is available for the Higher version of Android

Our React-Native app is unable to install on the phones with android version 10+. How to make it compatible with higher version of Android.
Srinivas Dasari
  • 129
  • 1
  • 5
0
votes
1 answer

How to check minsdkversion of generated appbundle?

i have build appbundle with minsdkversion 21. i give the file to devops for deployment, but he wants to make sure that the appbundle has minsdkversion set to 21. how do i check that? i heard bundletool but how do i use this to check value of…
nashihu
  • 750
  • 7
  • 17
0
votes
1 answer

Error occurred after adding dependencies for Google maps in flutter

Showed this error when I debug the project FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:processDebugMainManifest'. > Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 20…
0
votes
1 answer

changing MinSdk after launcing in Store for flutter App and error in install

I have launched a app this 2 month ago with signing and this properties: defaultConfig { minSdkVersion 18 targetSdkVersion 31 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } Now i added some new features…
0
votes
1 answer

How or Where Cordova platform add android get the minSdkVersion value?

Good day, I have a cordova mobile project, and I using "cordova platform add android" command to add my android platform. In my config.xml, I set the minSdkVersion to 26 as follow:
Panadol Chong
  • 1,793
  • 13
  • 54
  • 119
0
votes
1 answer

Can I force use armeabi-v7a vs arm64-v8a according to Android API LEVEL?

I am building native library using NDK21d for 2 archs: armeabi-v7a and arm64-v8a. I am embedding both libraries .so (32 and 64) inside the APK, which has minsdkversion set to 21. But I am facing an issue where the C function __register_atfork is not…
Olive
  • 1
  • 2
0
votes
1 answer

Unity3D - Error: The minSdk version can not be specified in the AndroidManifest.xml file. You have to remove it

Build Error appears in Pop Up. Gradle Error: MinSDK in Manifest The minSdk version can not be specified in the AndroidManifest.xml file. You have to remove it. (See the Console for details) Build Errors appear in console > Configure project…