Skip to content

Commit 0e204e3

Browse files
authored
Merge pull request #601 from NativeScript/pete/fix-aar-path
Fix path to aar while copying config.json in runtime package
2 parents a8560e8 + db84462 commit 0e204e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def createPackageConfigFileTask(taskName) {
452452
}
453453

454454
doFirst {
455-
def pathToAAR = "${buildDir}/outputs/aar/runtime-${mode}.aar"
455+
def pathToAAR = "${buildDir}/outputs/aar/${project.archivesBaseName}-${mode}.aar"
456456

457457
if (new File(pathToAAR).exists()) {
458458
def isWinOs = System.properties['os.name'].toLowerCase().contains('windows')

0 commit comments

Comments
 (0)