Value for 'keystore' is not valid. It must resolve to a single path

android, apk, command-line

Solution

This was resolved by the keystore and the project has to be on the same folder... thats what it means by saying `It must resolve to a single path`..resolved myself....kudos

Problem

i am trying to build apk from command line with ant. I am able to create build in debug mode while getting this error when i run in release mode for signing the apk file with the key store generated. my local.properties file look like this ``` sdk.dir=E:\\_WorkArea\\adt-bundle-windows-x86\\sdk key.store=C:\Users\\l.keystore key.alias=tys key.store.password=tr key.alias.password=tre D:\Android-Sdks\tools\ant\build.xml:1132: The following error occurred while executing this line: D:\Android-Sdks\tools\ant\build.xml:1144: Value for 'keystore' is not valid. It must resolve to a single path ```

Original source