Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Android RPG Maker MV Guide

Fermmoylle

Villager
Xy$
0.00
Okay, followed everything to the letter and it works! Kind of.

The APK runs smoothly (better than I expected), everything is okay, except for a crucial thing: I can't load games.

I can save them as normal, I can access the load screen, I see the files there... but they are grayed out and I can't select them.

Any ideas on what may be causing that?
 

DKPlugins

Towns Guard
Xy$
0.00
Code:
var afs = androidRequire( 'fs' );

var fileText = afs.readFileSync( '/path/file.txt' );
afs.writeFileSync( '/path/out.txt', "Hello, world!" );
Does Android support asynchronous operations?
Should I wait for asynchronous versions of functions from "fs"?
 

Xilefian

Adventurer
Xy$
0.00
Does Android support asynchronous operations?
Should I wait for asynchronous versions of functions from "fs"?
I started work on async operations, it is possible, but the complexity grew quite massively so I put this branch of development on freeze.

This is an open-source project, so if you're willing to you can add asynchronous operations in yourself, it would be much appreciated (I don't have much time to work on these projects anymore).
 
I tried testing it and it shows the following error
"
Error while executing: am start -n "systems.altimit.rpgmakermv/systems.altimit.rpgmakermv.WebPlayerActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=systems.altimit.rpgmakermv/.WebPlayerActivity }
Error type 3
Error: Activity class {systems.altimit.rpgmakermv/systems.altimit.rpgmakermv.WebPlayerActivity} does not exist.

Error while Launching activity"
 

Shigekims

Villager
Xy$
0.00
Tried this on my Pixel 3 XL using a vanilla RMMV project, built in Android 9.0 SDK (Android 28), using webviewDebug, and everything works great, but I'm getting non-critical RPG Maker errors loading sound effects.

For example:
Loading Error Failed to load: audio/se/Cursor2.m4a

Anyone else have this problem?
 
Top