nikita36078 / J2ME-Loader

A J2ME emulator for Android.
Apache License 2.0
2.1k stars 210 forks source link

Is there any way to install multiple games at once? #943

Open darkmaster434 opened 2 years ago

darkmaster434 commented 2 years ago

I downloaded a 1000 games pack. and it isn't enjoyable to select a game only one at a time. BTW I am a newbie in GitHub that's why even though this is not an issue I posted it here. if break any rules please delete it.

guangrei commented 2 years ago

i use sl4a script to mass convert .jar files (through view intent) but everytime one file converted/installed, i have to manually close j2meloader app to make another conversation task running, i wonder is there any better api?

darkmaster434 commented 2 years ago

i use sl4a script to mass convert .jar files (through share intent) but everytime one file converted/installed, i have to manually close j2meloader app to make another conversation task running, i wonder is there any better api?

can you tell me the process. or any documentation? i have computer so if the process needs PC it wont be a problem

guangrei commented 2 years ago

its use qpython (you can install from playstrore) then run this script:

import os
from androidhelper import Android

path = "/sdcard/download/jar"
droid = Android()
file = [f for f in os.listdir(path) if os.path.isfile(os.path.join(path, f))]
files =  [f for f in file if f.endswith(".jar")]
for i in files:
    print("[!] processing "+i)
    droid.view("file://"+path+"/"+i, "application/zip")
    print("done!")
xiexindev commented 1 year ago

It's technically easy but unfortunately the software doesn't have it