Browse Source

Fixed bug in Android Ant exporter due to mixed up build settings.

tags/2021-05-28
Timur Doumler 9 years ago
parent
commit
2fa6c2094e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      extras/Projucer/Source/Project Saving/jucer_ProjectExport_AndroidAnt.h

+ 2
- 2
extras/Projucer/Source/Project Saving/jucer_ProjectExport_AndroidAnt.h View File

@@ -444,8 +444,8 @@ private:
<< "sdk.dir=" << escapeSpaces (replacePreprocessorDefs (getAllPreprocessorDefs(), sdkPath.toString())) << newLine
<< "ndk.dir=" << escapeSpaces (replacePreprocessorDefs (getAllPreprocessorDefs(), ndkPath.toString())) << newLine
<< "key.store=" << androidKeyStore.get() << newLine
<< "key.alias=" << androidKeyStorePass.get() << newLine
<< "key.store.password=" << androidKeyAlias.get() << newLine
<< "key.alias=" << androidKeyAlias.get() << newLine
<< "key.store.password=" << androidKeyStorePass.get() << newLine
<< "key.alias.password=" << androidKeyAliasPass.get() << newLine
<< newLine;


Loading…
Cancel
Save