I am developing a news app but I am getting following errors in from gradle console
(androidx.core:core:1.0.1) and classes.jar (com.android.support:support-c
Taken from here. AndroidX is the open-source project that the Android team uses to develop, test, package, version and release libraries within Jetpack.
Adding these lines to gradle.properties file solves "Duplicate Class" errors:
android.useAndroidX=true
android.enableJetifier=true
However, this generated new errors in my project:
"package android.support.annotation does not exist"
"cannot find symbol class Fragment"
"package android.support.v4.content does not exist"
"Program type already present"
etc.
However, the refactoring worked for me:
Migrate your project to AndroidX by selecting Refactor >
"Migrate to AndroidX" from the menu bar.
Select Build > Clean project
Restore Android Studio
Now, my project (Match4app) works with AndroidX and I was able to publish it in the PlayStore without any issues.
Comment: This task also allowed me to upgrade all other libraries that depend on AndroidX (i.e. com.firebaseui:firebase-ui-auth:6.0.2, com.google.android.gms:play-services-games:18.0.1, com.google.android.gms:play-services-auth:17.0.0, com.google.android.gms:play-services-ads:18.2.0, etc.).
Top-Master's answer only work if you can downgrade to a specific version. In my case, I have a React Native app and one of the libraries I was using had migrated to AndroidX. The previous version had issues with iOS, so I had to use the most recent version. What I had to do was:
node_module
dependencies to AndroidX. For React Native 0.60 and above, jetify is run automatically, so you don't have to install this library.You can add below lines into your gradle.properties
file:
android.useAndroidX=true
android.enableJetifier=true
If you want to use androidx
-namespaced libraries in a new project, you need to set the compile SDK to Android 9.0 (API level 28) or higher and set both of the mentioned Android Gradle plugin flags to true
.
android.useAndroidX
: When this flag is set to true
, the Android plugin uses the appropriate AndroidX library instead of a Support Library. The flag is false
by default if it is not specified.
android.enableJetifier
: When this flag is set to true
, the Android plugin automatically migrates existing third-party libraries to use AndroidX dependencies by rewriting their binaries. The flag is false
by default if it is not specified.
I run into something like this, and below is based on my other answer:
Your project (or one of its sub-projects) is referring to a dependency using the + plus-sign at its end, like com.google.firebase:firebase-auth:+
, which means, use any higher version when possible, and that newer version is no longer using android.support
libraries and instead is using androidx
; to fix this issue follow the below steps.
ANDROID_HOME
environment-variable is set, and then, open a console window (like git-bash, because it keeps the whole command output), and cd
into your project's android
directory (for Ionic projects it should be platforms/android
)../gradlew :app:dependencies
androidx
.16.0.8 -> 19.0.0
or + -> 19.0.0
, which both mean that the version was auto-resolved (to something higher than specified by you because of +).clear
the console).To Force specific version of the dependencies add to your root build.gradle
file something like below (which is what worked for me) but of course edit below and add your own rules (because these might not work for your case):
allprojects {
// ...
configurations.all {
resolutionStrategy {
force 'com.google.firebase:firebase-common:17.0.0'
force 'com.google.android.gms:play-services-basement:16.2.0'
force 'com.google.firebase:firebase-iid:16.0.0'
force 'com.google.firebase:firebase-auth:17.0.0'
}
}
}
Like @Ahmed says, the solution is to implement AndroidX, it works for me. However, it isn´t an easy way and it requires a bit of pacience... These are the steps that I did:
First, is very important that you do all this changes in a different branch or you make a backup of your project.
You need to have the Android Gradle Plugin Version 3.5.1. So, in build.gradle set: dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
...
When it finishes, it has done all pertinents modification, but posibly you can´t deploy the project correctly because you find any errors. These are the problems that I found and the solutions:
If you use Kotlin, in build.gradle set: buildscript {
ext.kotlin_version = '1.3.10'
...
and compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
destination file("$reportsDir/checkstyle/checkstyle.xml")