Skip to content

Migrate android plugins from jcenter to mavenCentral #82847

@jmagman

Description

@jmagman

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

No one assigned

    Labels

    P1High-priority issues at the top of the work listpackageflutter/packages repository. See also p: labels.platform-androidAndroid applications specifically

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions