File tree Expand file tree Collapse file tree 3 files changed +30
-22
lines changed Expand file tree Collapse file tree 3 files changed +30
-22
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ apply plugin: 'java'
9
9
buildscript {
10
10
repositories {
11
11
google()
12
- jcenter()
12
+ jcenter()
13
13
}
14
14
dependencies {
15
15
classpath ' com.android.tools.build:gradle:3.5.1'
@@ -79,13 +79,19 @@ allprojects {
79
79
repositories {
80
80
google()
81
81
jcenter()
82
- maven {
83
- // mavenCentral() does not work to download the Gradle releases of gradle-tooling-api, one needs
84
- // to set the artifact url as below to get the latest packages.
85
- // https://mvnrepository.com/artifact/org.gradle/gradle-tooling-api?repo=gradle-libs-releases-local
86
- url " https://repo1.maven.org/maven2"
87
- artifactUrls " https://repo.gradle.org/gradle/libs-releases-local"
88
- }
82
+
83
+ maven { url " https://maven.google.com" }
84
+ maven { url " https://jitpack.io" }
85
+
86
+ maven { url ' https://repo.gradle.org/gradle/libs-releases' }
87
+
88
+ // maven {
89
+ // // mavenCentral() does not work to download the Gradle releases of gradle-tooling-api, one needs
90
+ // // to set the artifact url as below to get the latest packages.
91
+ // // https://mvnrepository.com/artifact/org.gradle/gradle-tooling-api?repo=gradle-libs-releases-local
92
+ // url "https://repo1.maven.org/maven2"
93
+ // artifactUrls "https://repo.gradle.org/gradle/libs-releases-local"
94
+ // }
89
95
flatDir dirs : androidPlatformPath
90
96
flatDir dirs : androidToolsLibPath
91
97
flatDir dirs : " ${ rootDir} /core/dist"
Original file line number Diff line number Diff line change @@ -80,14 +80,15 @@ clean.doFirst {
80
80
}
81
81
82
82
compileJava. doFirst {
83
- String [] deps = [" percent.jar" ,
84
- " recyclerview-v7.jar" ,
85
- " support-compat.jar" ,
86
- " support-core-ui.jar" ,
87
- " support-core-utils.jar" ,
88
- " support-fragment.jar" ,
89
- " support-media-compat.jar" ,
90
- " support-v4.jar" ,
83
+ String [] deps = [
84
+ // "percent.jar",
85
+ // "recyclerview-v7.jar",
86
+ // "support-compat.jar",
87
+ // "support-core-ui.jar",
88
+ // "support-core-utils.jar",
89
+ // "support-fragment.jar",
90
+ // "support-media-compat.jar",
91
+ // "support-v4.jar",
91
92
" wearable.jar" ]
92
93
for (String fn : deps) {
93
94
Files . copy(file(" ${ rootDir} /build/libs/" + fn). toPath(),
Original file line number Diff line number Diff line change 1
1
# Basics
2
2
android-platform = 28
3
3
android-toolslib = 26.0.0-dev
4
- gradlew = 5.6.2
4
+ gradlew = 6.7.1
5
5
6
6
# Minimum SDK versions for each type of project
7
7
android-min-app = 17
@@ -12,12 +12,13 @@ android-min-wear = 25
12
12
13
13
# Dependencies. Latest version for each package can be found at https://mvnrepository.com
14
14
# The format below is group%artifact
15
+ androidx.appcompat%appcompat = 1.2.0
15
16
com.android.support%support-v4 = 28.0.0
16
- com.google.android.support%wearable = 2.4.0
17
- com.google.android.gms%play-services-wearable = 16 .0.1
17
+ com.google.android.support%wearable = 2.8.1
18
+ com.google.android.gms%play-services-wearable = 17 .0.0
18
19
com.google.vr = 1.180.0
19
- com.google.ar = 1.12 .0
20
+ com.google.ar = 1.22 .0
20
21
org.processing = 3.3.7
21
- org.gradle%gradle-tooling-api = 5.6.2
22
- org.slf4j = 1.7.28
22
+ org.gradle%gradle-tooling-api = 6.7.1
23
+ org.slf4j = 1.7.30
23
24
org.eclipse.jdt = 3.11.100
You can’t perform that action at this time.
0 commit comments