Skip to content

Commit db55ff3

Browse files
committed
Move custom snapshot to the package itself
1 parent 1f81f41 commit db55ff3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

android/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ rootProject.allprojects {
1616
repositories {
1717
google()
1818
mavenCentral()
19+
20+
maven {
21+
url 'https://oss.sonatype.org/content/repositories/snapshots'
22+
}
1923
}
2024
}
2125

example/android/build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ allprojects {
1515
repositories {
1616
google()
1717
mavenCentral()
18-
19-
maven {
20-
url 'https://oss.sonatype.org/content/repositories/snapshots'
21-
}
2218
}
2319
}
2420

@@ -30,6 +26,6 @@ subprojects {
3026
project.evaluationDependsOn(':app')
3127
}
3228

33-
task clean(type: Delete) {
29+
tasks.register("clean", Delete) {
3430
delete rootProject.buildDir
3531
}

0 commit comments

Comments
 (0)