File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def nativescriptDependencies = new JsonSlurper().parseText(dependenciesJson.text
6363def computeCompileSdkVersion = { -> project. hasProperty(" compileSdk" ) ? compileSdk : 26 }
6464def computeTargetSdkVersion = { -> project. hasProperty(" targetSdk" ) ? targetSdk : 26 }
6565def computeBuildToolsVersion = { ->
66- " 25.2.5 "
66+ project . hasProperty( " buildToolsVersion " ) ? buildToolsVersion : " 27.0.1 "
6767}
6868
6969project. ext. selectedBuildType = project. hasProperty(" release" ) ? " release" : " debug"
@@ -224,8 +224,7 @@ dependencies {
224224 println " \t + adding nativescript runtime package dependency: $runtime "
225225 project. dependencies. add(" implementation" , [name : runtime, ext : " aar" ])
226226 } else {
227- implementation project(' :runtime' )
228-
227+ implementation project(path : ' :runtime' , configuration : ' default' )
229228 }
230229}
231230
You can’t perform that action at this time.
0 commit comments