Skip to content

Commit 9298967

Browse files
authored
Merge pull request #694 from rupesh-kumar-lpu/patch-1
Fixing storeFile path
2 parents 78b8bca + a2a8f03 commit 9298967

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)