Page 2 of 2

Re: Problem on game distribution

Posted: Fri Aug 15, 2014 5:42 am
by alberto_lara
Thanks a lot! that worked like a charm and I'm sorry, I had forgotten that part of the docs, I just uploaded the apps and they should be available tomorrow :) in case you want to check, look for "Watch your balls"

Thanks dude!

Re: Problem on game distribution

Posted: Sat Aug 16, 2014 3:44 am
by Davidobot
alberto_lara wrote:Thanks a lot! that worked like a charm and I'm sorry, I had forgotten that part of the docs, I just uploaded the apps and they should be available tomorrow :) in case you want to check, look for "Watch your balls"

Thanks dude!
No problem, man! Anytime! I'll check out you app ASAP.

Re: Problem on game distribution

Posted: Sat Aug 16, 2014 5:03 pm
by Mermersk
Sorry for hijacking...

Davidobot: I'm trying to do like you said. my ant properties look like this:

Code: Select all

key.store = D:\GameLab\loverepo\MartinFelis-love-android-sdl2-70cb26bb2a31\assets\my.my-release-key.keystore
key.alias = my.release.key
But I get this error when I try to do ant release:

"BUILD FAILED
C:\Users\Mermersk\AppData\Local\Android\android-sdk\tools\ant\build.xml:1139: Th
e following error occurred while executing this line:
C:\Users\Mermersk\AppData\Local\Android\android-sdk\tools\ant\build.xml:1151: Va
lue for 'keystore' is not valid. It must resolve to a single path"

This comes after I put in the password for keystore and alias. Have no idea what alias is though.

What's wrong here?

Re: Problem on game distribution

Posted: Sat Aug 16, 2014 6:14 pm
by Davidobot
Mermersk wrote:Sorry for hijacking...

Davidobot: I'm trying to do like you said. my ant properties look like this:

Code: Select all

key.store = D:\GameLab\loverepo\MartinFelis-love-android-sdl2-70cb26bb2a31\assets\my.my-release-key.keystore
key.alias = my.release.key
But I get this error when I try to do ant release:

"BUILD FAILED
C:\Users\Mermersk\AppData\Local\Android\android-sdk\tools\ant\build.xml:1139: Th
e following error occurred while executing this line:
C:\Users\Mermersk\AppData\Local\Android\android-sdk\tools\ant\build.xml:1151: Va
lue for 'keystore' is not valid. It must resolve to a single path"

This comes after I put in the password for keystore and alias. Have no idea what alias is though.

What's wrong here?
I got two ideas:
- Your keystore is invalid or it doesn't contain a key with the alias "my.release.key"
- if it is valid, try either placing two // between the directories in ant.properties, like so "D:\\GameLab\\loverepo\\MartinFelis-love-android-sdl2-70cb26bb2a31\\assets\\my.my-release-key.keystore"
Or try referencing the the keystore relative to ant.properties, which would look something like this: "assets/my.my-release-key.keystore" (All directories must be written without the quotation marks inside ant.properties.)

EDIT: If worst comes to worse, just place the keystore into the same folder as ant.properties and refer to it as "my.my-release-key.keystore"