Unverified Commit f959b72c authored by Lokhin Cheng's avatar Lokhin Cheng Committed by Jeffrey I. Schiller

Fixed the slash issue for Windows users

Change-Id: Ie010e3eb2ca7267407681c360d15b750e348f1fd
parent df951c9f
......@@ -74,7 +74,7 @@ public final class Compiler {
// Copied from SdkLevel.java (which isn't in our class path so we duplicate it here)
private static final String LEVEL_GINGERBREAD_MR1 = "10";
public static final String RUNTIME_FILES_DIR = SLASH + "files" + SLASH;
public static final String RUNTIME_FILES_DIR = "/" + "files" + "/";
// Build info constants. Used for permissions, libraries and assets.
// Must match ComponentProcessor.ARMEABI_V7A_SUFFIX
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment