flutter-sdk icon indicating copy to clipboard operation
flutter-sdk copied to clipboard

Remove out of date repositories jcenter()

Open kaitotokyo opened this issue 1 month ago • 1 comments

File :
https://github.com/qonversion/flutter-sdk/blob/develop/android/build.gradle

 repositories {
        google()
        mavenCentral()
        jcenter()
    }

rootProject.allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter()
        mavenLocal()
    }
}

JCenter artifact repository used by many Android projects, made JCenter a read-only repository on March 31, 2021. https://developer.android.com/build/jcenter-migration

Please remove the jcenter()

kaitotokyo avatar Nov 19 '25 01:11 kaitotokyo