Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
4e4cc5f8
Commit
4e4cc5f8
authored
Jan 20, 2021
by
Evan W. Patton
Committed by
ellelili2025
Jan 20, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PlayApp build on Windows
Change-Id: Ic74aa9b4800d44a11ab1b5ddf7403d110aacf750
parent
6516283d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
appinventor/buildserver/src/com/google/appinventor/buildserver/Compiler.java
...rver/src/com/google/appinventor/buildserver/Compiler.java
+2
-1
No files found.
appinventor/buildserver/src/com/google/appinventor/buildserver/Compiler.java
View file @
4e4cc5f8
...
...
@@ -94,6 +94,7 @@ public final class Compiler {
private
static
final
Object
SYNC_KAWA_OR_DX
=
new
Object
();
private
static
final
String
SLASH
=
File
.
separator
;
private
static
final
String
SLASHREGEX
=
File
.
separatorChar
==
'\\'
?
"\\\\"
:
"/"
;
private
static
final
String
COLON
=
File
.
pathSeparator
;
private
static
final
String
ZIPSLASH
=
"/"
;
...
...
@@ -2319,7 +2320,7 @@ public final class Compiler {
aaptPackageCommandLineArgs
.
add
(
"--output-text-symbols"
);
aaptPackageCommandLineArgs
.
add
(
symbolOutputDir
.
getAbsolutePath
());
aaptPackageCommandLineArgs
.
add
(
"--no-version-vectors"
);
appRJava
=
new
File
(
sourceOutputDir
,
packageName
.
replaceAll
(
"\\."
,
SLASH
)
+
SLASH
+
"R.java"
);
appRJava
=
new
File
(
sourceOutputDir
,
packageName
.
replaceAll
(
"\\."
,
SLASH
REGEX
)
+
SLASH
+
"R.java"
);
appRTxt
=
new
File
(
symbolOutputDir
,
"R.txt"
);
}
String
[]
aaptPackageCommandLine
=
aaptPackageCommandLineArgs
.
toArray
(
new
String
[
aaptPackageCommandLineArgs
.
size
()]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment