Skip to content

Commit ff2aab9

Browse files
committed
Merge remote-tracking branch 'upstream/release-9.6.0' into merge-release-9.6.0-03.08.2020
2 parents 47648e5 + acd6bcf commit ff2aab9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/notes/bugfix-22737.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Make sure the externals lcextd folder is not copied into the apk

ide-support/revsaveasandroidstandalone.livecodescript

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,9 @@ private command addAssetsToArchive pFileData, pBaseFolder, pArchive
12971297
revZipAddUncompressedItemWithFile pArchive, "assets/" & tFile["name"], tFile["resolved"]
12981298
end if
12991299
else if there is a folder tFile["resolved"] then
1300-
addAssetsFromFolderToArchive tFile["resolved"], "assets" & slash & tFile["name"], pArchive, tFonts
1300+
if not (tFile["resolved"] ends with ".lcextd") then
1301+
addAssetsFromFolderToArchive tFile["resolved"], "assets" & slash & tFile["name"], pArchive, tFonts
1302+
end if
13011303
else
13021304
throw "could not find referenced asset to include -" && tFile["resolved"]
13031305
end if

0 commit comments

Comments
 (0)