-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work listpackageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-androidAndroid applications specificallyAndroid applications specifically
Description
JCenter is being sunset and is readonly now https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter.
Migrate plugins build.gradle configs from jcenter() to mavenCentral() maven repository.
https://github.com/flutter/plugins/blob/e25698f7e4634c00a76f05dd618e303fc7ac4304/packages/url_launcher/url_launcher/android/build.gradle#L7
buildscript {
repositories {
google()
- jcenter()
+ mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
}
}
allprojects {
repositories {
google()
- jcenter()
+ mavenCentral()
}
}This was done in flutter/flutter app templates and example apps in #78338.
Metadata
Metadata
Assignees
Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work listpackageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-androidAndroid applications specificallyAndroid applications specifically