Skip to content

Commit 50e64d9

Browse files
upgrade to 6.x gradle (#342)
1 parent abf5b44 commit 50e64d9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

android-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ android.libraryVariants.all { variant ->
115115

116116
doFirst {
117117
// First add all of your dependencies to the classpath, then add the android jars
118-
classpath += files(variant.javaCompileProvider.classpath.files)
118+
classpath += files(variant.javaCompileProvider.get().classpath.files)
119119
classpath += files(android.getBootClasspath())
120120
}
121121
// We're excluding these generated files

datafile-handler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ android.libraryVariants.all { variant ->
101101

102102
// First add all of your dependencies to the classpath, then add the android jars
103103
doFirst {
104-
classpath += files(variant.javaCompileProvider.classpath.files)
104+
classpath += files(variant.javaCompileProvider.get().classpath.files)
105105
classpath += files(android.getBootClasspath())
106106
}
107107
// We're excluding these generated files

event-handler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ android.libraryVariants.all { variant ->
102102

103103
// First add all of your dependencies to the classpath, then add the android jars
104104
doFirst {
105-
classpath += files(variant.javaCompileProvider.classpath.files)
105+
classpath += files(variant.javaCompileProvider.get().classpath.files)
106106
classpath += files(android.getBootClasspath())
107107
}
108108
// We're excluding these generated files

shared/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ android.libraryVariants.all { variant ->
105105

106106
// First add all of your dependencies to the classpath, then add the android jars
107107
doFirst {
108-
classpath += files(variant.javaCompileProvider.classpath.files)
108+
classpath += files(variant.javaCompileProvider.get().classpath.files)
109109
classpath += files(android.getBootClasspath())
110110
}
111111
// We're excluding these generated files

user-profile/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ android.libraryVariants.all { variant ->
101101

102102
// First add all of your dependencies to the classpath, then add the android jars
103103
doFirst {
104-
classpath += files(variant.javaCompileProvider.classpath.files)
104+
classpath += files(variant.javaCompileProvider.get().classpath.files)
105105
classpath += files(android.getBootClasspath())
106106
}
107107
// We're excluding these generated files

0 commit comments

Comments
 (0)