File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments