Making android app compatible with Kitkat and above versions - android

I am new to android . I want to have an app does gives backward compatibility also means it should support versions from kitkat and above. If I make Project build target(Properties --> Android) to Android 5.0 (API-21) then it means it will run in lollipop only? If I want to add support library then which library should I import right now I have seen people importing appcompat v7 library for lollipop development. I know this one is quite basic question.

Just write Minimum sdk version in your manifest file
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="21" />
Just set minSdkVersion and targetSdkVersion in app gradle file.
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "guard.proguard"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
}

You control the compatibility in the manifest file.
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="22" />

Related

How to support multiple Android versions (4.1 through 7.0)?

How to make android app run on versions 4.1 through 7.0?
The following statement was added to the manifest file
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="25"/>
However it still only works on 7.0. What's required to support lower versions too?
Update your app's Gradle file with that:
android {
compileSdkVersion 25 // it is recommended to be the same of targetSdkVersion
defaultConfig {
minSdkVersion 14 // Android 4.1
targetSdkVersion 25 // Android 7.1
}
}
But maybe you wanna to support Android Oreo to, in this case compileSdkVersion and targetSdkVersion must be set to 26 (Android always ask to your support the last version)
There is a article which explain in more details minSdk, maxSdk and compileSdk: link to article

play store set apilevel 14-19 automatically

I uploaded an APK to the app store, it's targeting lollipop, but on Google Play Store it says "API levels 14-19". I can't seem to figure out why the max sdk level is stuck at 19.
compileSdkVersion 22 buildToolsVersion "21.1.2"
defaultConfig {
applicationId "be.appwise.test"
minSdkVersion 14
targetSdkVersion 21
versionCode 15
versionName "1.0"
Check your AndroidManifest.xml for <uses-sdk android:maxSdkVersion="19"/> Maybe you're using a library which specified this.
Google Play store will use this attribute for filtering however the attribute is generally not needed. From the docs:
By design, new versions of the platform are fully backward-compatible. Your application should work properly on new versions, provided it uses only standard APIs and follows development best practices.
If you want to remove the attribute try one of these inside the AndroidManifest.xml:
<uses-sdk tools:overrideLibrary="the library package name" />
<uses-sdk tools:node="replace" />
Disclaimer: I haven't tested these so I don't know if they work or have any side effects. Please report any results.

uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library

I don't understand this error message
C:\Program Files (x86)\Jenkins\workspace\__temp-mobile-prev\platforms\android\AndroidManifest.xml:67:5 Error:
uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library C:\Program Files (x86)\Jenkins\workspace\__temp-mobile-prev\platforms\android\build\intermediates\exploded-aar\com.paypal.sdk\paypal-android-sdk\2.14.2\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="com.paypal.android.sdk.payments" to force usage
Because line 67 of AndroidManifest.xml looks like:
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="22" />
Where does 15 come from?
I use ionic to build my app. But I don't think that this is the problem.
The problem for me was in cordova-plugin-browsertab.
You need to change line 1 of my_project/plugins/cordova-plugin-browsertab/src/android/BrowserTab.gradle to
def minSdkVersion = 19
Make sure you have the minimum SDK added to your config.xml
<preference name="android-minSdkVersion" value="19" />
Then remove and add cordova-android by:
cordova platform remove android
cordova platform add android
In the code editor of your app,
Press Ctrl+Shift+F
Search for minSDKVersion
Replace with the desired version number
Maybe I found the problem.
I don't want to overwride the build.gradle, because cordova create this file dynamically. But I searched why that cdvMinSdkVersion returns a wrong value. And the reason was this barcodescanner-plugin. The plugin gradle file has this line
ext.cdvMinSdkVersion = 15
which overwrite my value from AndroidManifest.xml. After I have remove and add the plugin again it works.
But I don't know why? Maybe someone could explain the order of the different gradle scripts.
As of release 2.14.0, the minSdkVersion has been increased to 16. If you prefer to have your app on a lower minSdkVersion and want to leverage the latest SDK, please disable PayPal for versions below API 16, add xmlns:tools="http://schemas.android.com/tools inside the manifest's xml declaration, and add the following snippet to your AndroidManifest.xml:
<uses-sdk android:minSdkVersion="INSERT_YOUR_DESIRED_minSdkVersion_HERE" tools:overrideLibrary="com.paypal.android.sdk.payments"/>
The easier way to do this is to:
-Go to Build.gradle(Module:app).
-Change minSDKVersion 15 to minSDKVersion 16.
-Sync your project.
Here are some context to understand the things:
By default, when importing a library with a minSdkVersion value that's higher than the main manifest file, an error occurs and the library cannot be imported. To make the merger tool ignore this conflict and import the library while keeping your app's lower minSdkVersion value, add the overrideLibrary attribute to the tag. The attribute value can be one or more library package names (comma-separated), indicating the libraries that can override the main manifest's minSdkVersion.
For example, if your app's main manifest applies overrideLibrary like this:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
xmlns:tools="http://schemas.android.com/tools">
<uses-sdk android:targetSdkVersion="22" android:minSdkVersion="2"
tools:overrideLibrary="com.example.lib1, com.example.lib2"/>
Then the following manifest can be merged without an error regarding the <uses-sdk> tag, and the merged manifest keeps minSdkVersion="2" from the app manifest.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lib1">
<uses-sdk android:minSdkVersion="4" />
In case of Hybrid/Ionic app such issue could get fixed by changing minSdkVersion in config.xml is what I did.
work like a charm:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.aspireone.myapplication"
xmlns:tools="http://schemas.android.com/tools">
<uses-sdk android:targetSdkVersion="28" android:minSdkVersion="14"
tools:overrideLibrary="com.allyants.draggabletreeview"/>
from this error message:
<!-- Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version 15 declared in library [com.github.jakebonk:DraggableTreeView:1.0.1] C:\Users\ASPIREone\.gradle\caches\transforms-1\files-1.1\DraggableTreeView-1.0.1.aar\45f4095d2e68f3e9a1fbc4b73c7f9c33\AndroidManifest.xml as the library might be using APIs not available in 14
Suggestion: use a compatible library with a minSdk of at most 14,
or increase this project's minSdk version to at least 15,
or use tools:overrideLibrary="com.allyants.draggabletreeview" to force usage (may lead to runtime failures) -->
The problem started for me after I added "jitPak" library for viewing PDF, the root cause of the problem turn out to be line 13 in build.gradel (Module Level). Just change the version from 15 to 16, will resolve the issue.
android { // line 7 of build.gradle (module App)
compileSdkVersion 28
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.web_app"
minSdkVersion 15 // change this to 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
This solved my problem.
Right click on app folder in android studio, select 'open module settings' | or just press F4. Go to Flavors Tab and change Min Sdk Version to the latest.
Problem Solved.
Increase the minSdkVersion as your requirement, hope it will be solved.
I will prove to you that The easier way to do this is to apply these 3 steps following:
1) Go to Build.gradle(Module:app).
2) Change minSDKVersion 15 to minSDKVersion 16. or 17
// 19(for projectfolder/platforms/android/CordovaLib/AndroidManifest.xml)
3) Sync your project.
I had the same issue when working on an android application using Flutter:
Flutter Suggestion:
Solution:
I use #Naga suggestion, and it's work.
config.xml that I change is not in the root of project, but in
platforms/android/app/src/main/res/xml/config.xml
and minSdkVersion in AndroidManifests.xml are not overwritten again
Try this instead.
Change minSdkVersion 15 to minSdkVersion 16 in build.gradle(module: app)
This error message means that the minimal android version of the paypal library is 16, not your own app's version.
If one of the 3rd party libraries you use has the bigger minimum version than your version, you have to increase your minSdkVersion to them.
Go to build.grade and inside the defaultConfig there is minSdkversion and change that to 17 and sync now and it work i mean it at least worked for me
Downgrade your version 'audioplayers: ^0.17.1' to 'audioplayers: ^0.16.1' in pubspec.yaml and pub get the dependencies of 'audioplayers: ^0.16.1'.
I have the same problem. And I solve it changing in C:\Users\"Username"\.gradle\gradle.properties cdvMinSdkVersion to 19
org.gradle.daemon=false
org.gradle.jvmargs=-Xmx2048m
android.useAndroidX=false
android.enableJetifier=false
cdvMinSdkVersion=19
I found out when I Import the project in Android Studio.
Set the minSdkVersion in android/app/build.gradle:
android {
defaultConfig {
minSdkVersion 20
}
}
The way I fixed it was to go to platforms\android folder and did a find-in-folder from my VS code editor for minSdkVersion and replaced all minSdkVersion=16 to minSdkVersion=19 regardless of whether cordova generated it dynamically or not. Everything worked fine for me after that.
go to the folder /platforms/android/android.json
change the minsdk version to whatever you want
{
"xml": "<preference name=\"android-minSdkVersion\" value=\"22\" />",
"count": 1
},
then go to the plugin that may have messed you up /plugins/{yourplugin}/plugin.xml
change the preference value too to the number you want
<preference name="android-minSdkVersion" value="22" />
then check your /platforms/android/build.gradle file and confirm the same value
project.ext {
defaultBuildToolsVersion="29.0.2" //String
defaultMinSdkVersion=22 //Integer - Minimum requirement is Android 5.1
defaultTargetSdkVersion=29 //Integer - We ALWAYS target the latest by default
defaultCompileSdkVersion=29 //Integer - We ALWAYS compile with the latest by default
}
Please Follow these three steps to solve this error in ionic 3
In projectfolder/platforms/android/CordovaLib/AndroidManifest.xml change
<uses-sdk android:minSdkVersion="16" />
to
<uses-sdk android:minSdkVersion="19" />
in projectfolder/platforms/android/gradle.properties change
cdvMinSdkVersion=16 or X
to
cdvMinSdkVersion=19
in projectfolder/config.xml
change
<preference name="android-minSdkVersion" value="16" />
to
<preference name="android-minSdkVersion" value="19" />
I think try to delete implementation 'com.google.firebase:firebase-analytics' in folder android/App/build.gradle. before doing the long steps above
The error shown means that the package that you are using doesn't support minSdkVersion 15. so try to change in your "Project/android/app/build.gradle" the following :
minSdkVersion from 15 to 16 or higher
change this code to -->>>>
minSdkVersion flutter.minSdkVersion ->>>
minSdkVersion 19
I got same problem today when I added firestore dependency in flutter. It was solved by doing mentioned changes in the android/app/build.gradle file
Before
defaultConfig {
minSdkVersion flutter.minSDKVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
After
defaultConfig {
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
N.B : doing minSDKVersion 19 won't work change it to minSDKVersion 21.
In case if above changes does not work you can follow steps mentioned in following website.
https://ao-system.net/en/note/224

Android studio keeps not finding target android-19 but I don't want to compile with that

I am trying to import a project in Android Studio that was initially meant to be compiled with Android-19 API. However now I need to make it work on a device with Android 4.0.3 (so I want to compile with android-15). Yet, Android Studio keeps telling me this, no matter what I do:
Error:failed to find target android-19 : C:\Users\BurrafatoMa\AppData\Local\Android\Sdk
Install missing platform(s) and sync project
(Lucky me that I did not have android-19 installed, otherwise I would have never noticed, right?)
AndroidManifest.xml:
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="15" />
build.gradle:
android {
compileSdkVersion 15
buildToolsVersion '17.0.0'
defaultConfig {
minSdkVersion 10
targetSdkVersion 15
versionCode 1
versionName "1.0"
}
...
project.properties:
target=android-15
I tried the solutions proposed in stackoverflow and on other sites, with no success. What am I missing?
Maybe the project contains some module or library that needs android-19 to compile, I think

When using gradle does the version and sdk information need to be duplicated in the android manifest?

The android developer guide (Versioning Your Applications) specifies that the manifest should contain version number info, as well as minimum and target sdk versions. Like so:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.package.name"
android:versionCode="2"
android:versionName="1.1">
<uses-sdk android:minSdkVersion="integer"
android:targetSdkVersion="integer"
android:maxSdkVersion="integer" />
However in a gradle build the build.gradle file for the app contains all of this information (Gradle build system user guide), like so:
android {
compileSdkVersion 19
buildToolsVersion "19.0.0"
defaultConfig {
versionCode 12
versionName "2.0"
minSdkVersion 16
targetSdkVersion 16
}
}
Is it necessary to include this information in the android manifest as well as the gradle file, or will it be populated correctly by the gradle build system?
You can safely remove these from the Manifest.xml and have them just in the build.gradle.
I've been doing this on several of my projects for a while now with no down side.

Categories

Resources