Search found 11 matches

by comradesparklepony
Fri Jul 01, 2022 8:15 pm
Forum: Support and Development
Topic: Android App Keeps Stopping
Replies: 5
Views: 2385

Re: Android App Keeps Stopping

Thanks for the link, good find! Yep, looks like running it with an x86_64 emulator instead of an x86 emulator fixed it. Thank you!
by comradesparklepony
Fri Jul 01, 2022 1:27 pm
Forum: Support and Development
Topic: Android App Keeps Stopping
Replies: 5
Views: 2385

Re: Android App Keeps Stopping

I did have python3 installed, but not aliased to python. For some reason aliasing didn't work, probably because I'm using Android Studio, but manually changing the makefile to use python3 instead did. So thank you for catching that! That said, I still am getting the issue with the app stopping. I di...
by comradesparklepony
Wed Jun 29, 2022 3:50 pm
Forum: Support and Development
Topic: Android App Keeps Stopping
Replies: 5
Views: 2385

Re: Android App Keeps Stopping

Couple updates: If I rebuild the project, I get the following error: [CXX1405] error when building with ndkBuild using /Volumes/FILES/,proj/,old/2020/metrodrone/love-android/love/src/jni/Android.mk: Build command failed. Error while executing process /Users/dv/Library/Android/sdk/ndk/21.3.6528147/nd...
by comradesparklepony
Wed Jun 29, 2022 3:24 pm
Forum: Support and Development
Topic: Android App Keeps Stopping
Replies: 5
Views: 2385

Android App Keeps Stopping

Hello, I have an LOVE android app which I am moving to love 11.4. Everything compiles fine, but when I try to run it, it appears to stop instantly, and I get the notification "<app name> keeps stopping". I've tried clearing the app cache, and cleaning and rebuilding the project, but the is...
by comradesparklepony
Wed Jul 22, 2020 8:25 pm
Forum: Games and Creations
Topic: H0ard3() Rel0aded - a hectic top-down shooter
Replies: 5
Views: 8501

Re: H0ard3() Rel0aded - a hectic top-down shooter

EnzoGrey wrote: Mon Jul 20, 2020 5:58 pm I'd be curious to know how you made the curved screen work? I've been trying to do some similar stuff.
I think there might be something in here:https://github.com/vrld/moonshine
by comradesparklepony
Sun Jul 05, 2020 6:02 pm
Forum: Support and Development
Topic: Save on iOS?
Replies: 2
Views: 2373

Re: Save on iOS?

I was handling saving in

Code: Select all

love.quit
which as slime pointed out in the Discord doesn't really work on iOS. Changing it to

Code: Select all

love.focus
fixed it!
by comradesparklepony
Sun Jul 05, 2020 4:54 pm
Forum: Support and Development
Topic: Save on iOS?
Replies: 2
Views: 2373

Save on iOS?

Hello, Is it possible to create a savefile on iOS? I have a LOVE project that saves correctly when run on a computer, but it does not appear to work on iOS. It uses love.filesystem.read and love.filesystem.write with binser in order to save. On the wiki, there is no save path listed for iOS, so give...
by comradesparklepony
Sun Apr 26, 2020 7:32 pm
Forum: Support and Development
Topic: LÖVE does not support iPhone 5 (?)
Replies: 4
Views: 4639

Re: LÖVE does not support iPhone 5 (?)

My app (metro.drone) was approved by the app store, so it looks like iPhone 5 support is not necessary. Thank you!
by comradesparklepony
Thu Apr 23, 2020 3:30 pm
Forum: Support and Development
Topic: LÖVE does not support iPhone 5 (?)
Replies: 4
Views: 4639

Re: LÖVE does not support iPhone 5 (?)

The iPhone 5 has a screen size of 4 inches, but there's no place for a 4 inch screenshot for the App Store on the App Submission page, so it's looking like I do not need to support the iPhone 5.
by comradesparklepony
Wed Apr 22, 2020 9:25 pm
Forum: Support and Development
Topic: LÖVE does not support iPhone 5 (?)
Replies: 4
Views: 4639

Re: LÖVE does not support iPhone 5 (?)

Unfortunately, I do not have an iPhone 5 to test it on. Admittedly, my main concern is that not supporting the iPhone 5 will prevent it from being accepted onto the App Store. Apple has officially dropped support for iPhone 5, but I'm not sure if I still need to support it in order to get past their...