-
Hi, I wanted to build for android and adopted my project to look like the go-inovation example. Sadly I receive an error where I am not sure what could be the cause or how to debug further.
From go.mod
Error using ebitenmobile
Any help is appreciated. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
scratch85
Jan 25, 2024
Replies: 1 comment 11 replies
-
Which version of ebitenmobile are you using? |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ahh, this is something that helps a lot:
From the gomobile docs:
But hey, I found the issue today.
Using
-javapkg com.client.game
it works. Using-javapkg com.warlords-client.game
fails with the error mentioned above.Using
-javapkg com.warlordsclient.game
works as well, so the issue seems/is the "-" (minus/hyphen) in the-javapkg
param or in general the way the cmd params (with go flag) work.Many thanks for your help and your fast responses.