Skip to content

Commit

Permalink
settings.gradle.tmpl: update repositories to use follow new order
Browse files Browse the repository at this point in the history
new order: `google`, `mavenCentral`, `gradlePluginPortal`
  • Loading branch information
bartekpacia committed Sep 13, 2023
1 parent d13215a commit 29b01c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/hello_world/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ pluginManagement {
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")

repositories {
gradlePluginPortal()
google()
mavenCentral()
gradlePluginPortal()
}

plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ pluginManagement {
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")

repositories {
gradlePluginPortal()
google()
mavenCentral()
gradlePluginPortal()
}

plugins {
Expand Down

0 comments on commit 29b01c3

Please sign in to comment.