1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

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

This commit is contained in:
Timur Doumler 2016-04-19 17:26:51 +01:00
parent 1e41e3d11d
commit 2fa6c2094e

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;