Search found 2 matches

by sbr2729
Wed Apr 17, 2024 3:23 pm
Forum: Support and Development
Topic: Trying to build an android apk
Replies: 2
Views: 1644

Re: Trying to build an android apk

Before sign, try use the zipalign command, like below. zipalign -v -p 4 app.apk aligned.apk After that, sign the aligned.apk file. Hey, I did some digging on this, it took me a while to figure out but i had to use not just `zipalign` but a bunch of other android tools, and yes you were right, the a...
by sbr2729
Mon Apr 15, 2024 3:06 pm
Forum: Support and Development
Topic: Trying to build an android apk
Replies: 2
Views: 1644

Trying to build an android apk

Hello everyone, Here's my game. It just draws a circle on the screen. -- this is main.lua function love.draw() love.graphics.circle("fill", 300, 300, 100) end and -- this is conf.lua function love.conf(t) t.window.resizable = true end This program runs fine as expected on my m1 mac. But I ...