Skip to content

Commit a2a8f03

Browse files
Fixing storeFile path
1 parent 78b8bca commit a2a8f03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mode/src/processing/mode/android/AndroidBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ private void createTopModule(String projectModules, String keyPassword)
384384
replaceMap.clear();
385385
replaceMap.put("@@java_home@@", javaHome);
386386
if (!keyPassword.equals("") && AndroidKeyStore.getKeyStore() != null) {
387-
replaceMap.put("@@keystore_file@@", AndroidKeyStore.getKeyStore().getAbsolutePath());
387+
replaceMap.put("@@keystore_file@@", AndroidKeyStore.getKeyStore().getAbsolutePath().replace('\\', '/'));
388388
replaceMap.put("@@key_alias@@", AndroidKeyStore.ALIAS_STRING);
389389
replaceMap.put("@@key_password@@", keyPassword);
390390
}

0 commit comments

Comments
 (0)