Search found 38 matches

by downover
Tue Mar 19, 2024 4:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game
Replies: 5
Views: 261

Re: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game

I think I found it. Stupid mistake on my part - I put the downloader in label splashscreen. With that in mind, what I'm seeing makes total sense! Will post again once verified fixed.
by downover
Tue Mar 19, 2024 12:36 am
Forum: Ren'Py Questions and Announcements
Topic: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game
Replies: 5
Views: 261

Re: Downloader for Large Games on Mobile keeps cycling

I'm going to have to leave it at here for the night. Would appreciate any tips/thoughts! My best guess is that it's just loading the wrong game in a loop. I don't see bootstrap happening and I don't see any errors indicating that it's TRYING to load the downloaded game and failing - it just appears ...
by downover
Tue Mar 19, 2024 12:02 am
Forum: Ren'Py Questions and Announcements
Topic: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game
Replies: 5
Views: 261

Re: Downloader for Large Games on Mobile keeps cycling

get_alternate_base() is returning "/data/user/0/com.altosandherdone.headmaster.downloader/files/base". That looks right to me - when I play in launcher it creates a folder called /base/ in the base directory for the (simulated) downloaded game.
by downover
Mon Mar 18, 2024 11:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game
Replies: 5
Views: 261

Re: Downloader for Large Games on Mobile keeps cycling

I've tried deleting the game/cache folder but it's regenerated on build.

current.json and key.pem are created during the update process.
by downover
Mon Mar 18, 2024 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game
Replies: 5
Views: 261

Downloader for Large Games on Mobile keeps reloading downloader game instead of downloaded game

I'm continuing to struggle with the Downloader for Large Games on Mobile. The 8.3.0 nightly fixed most of my issues, but I'm having an issue now where the game will download all 7 GB of my update, then restart and re-download 5 files (3 changed, 2 new). This process repeats and the downloaded game n...
by downover
Wed Mar 13, 2024 10:16 pm
Forum: Ren'Py Questions and Announcements
Topic: I can't build the android version.
Replies: 2
Views: 257

Re: I can't build the android version.

For what it's worth, I downloaded 7.4.11.2266 to grab that code, but it's actually unchanged in main: https://github.com/renpy/renpy/blob/master/launcher/game/android.rpy So unless it's caused by something further up in the stack, I doubt it's a bug that has since been fixed, but more likely is some...
by downover
Wed Mar 13, 2024 10:13 pm
Forum: Ren'Py Questions and Announcements
Topic: I can't build the android version.
Replies: 2
Views: 257

Re: I can't build the android version.

Looks to me like it's breaking trying to delete that folder. Is one of the files in that folder being used in another program? def android_build(p=None, gui=True, bundle=False, install=False, launch=False, destination=None, opendir=False): """ This actually builds the package. "&...
by downover
Sat Mar 09, 2024 9:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 963

Re: Android Game Freezes in "Downloading assets"

8.2.2 nightly fixed EVERYTHING for me! I'm not uploading to google play so maybe the bug you're seeing doesn't apply to my game stwkun.

Only issue I see is the emulation issue which is not a big deal for me. I logged an issue on github for it: https://github.com/renpy/renpy/issues/5403
by downover
Sat Mar 09, 2024 7:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 963

Re: Android Game Freezes in "Downloading assets"

A couple things: * Make sure you're on 8.2.1 or the fix branch, as there have been a lot of fixes to this. * There's also a known problem with Google Play. Your best bet is to contact @GooglePlayBiz on X, and see if they can fix it. 8.2.2 nightly fixed the issue that I was currently blocked on, but...
by downover
Sat Mar 09, 2024 7:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 963

Re: Android Game Freezes in "Downloading assets"

The log comes out over logcat, so you can get access to it that way. I don't think it does. I'm specifically talking about the logging in 00updater.rpy. I should see either "Verifying with ECDSA." or "Verifying with RSA." and I see neither. I also inserted a log into the start o...
by downover
Sat Mar 09, 2024 5:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 963

Re: Android Game Freezes in "Downloading assets"

That's good to know, thank you! I'll use that from now on.

Working on this today. I'll set something up in github with both the downloader and the downloaded game as minimal as possible and work up from there until I hit the problems!
by downover
Thu Mar 07, 2024 1:32 am
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 963

Re: Android Game Freezes in "Downloading assets"

I am also 100% blocked on using the updater on android. As soon as I have time off from work I'll make example projects demonstrating the problem. One of my projects starts the downloaded game twice, causing errors anywhere 'default' is used. The other, a much larger project, simply cycles through t...
by downover
Fri Mar 01, 2024 8:22 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Downloader for Large Games on Mobile key.pem inconsistencies
Replies: 1
Views: 205

[Solved]Downloader for Large Games on Mobile key.pem inconsistencies

I've been working on using the Downloader to download a very large game onto Android. I've created a downloader app that looks at an updates.json I'm hosting locally. I've then created two different apps - one based on the ren'py example tutorial (4mb download), the other the full game I'm working o...