Search found 103 matches

by Apa
Tue Jan 03, 2017 2:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Android development: rinse/repeat
Replies: 6
Views: 956

Re: Android development: rinse/repeat

Is this for development, rather than production, purposes? Absolutely. Rebuilding apk+obb for testing on every tiny update takes all the fun out from development. I can replace files in obb, but it’ll be a lot faster and more convenient to have a writable folder for *.rpy/*.rpyc/*.rpyb files. Techn...
by Apa
Tue Jan 03, 2017 1:26 am
Forum: Ren'Py Questions and Announcements
Topic: Android development: rinse/repeat
Replies: 6
Views: 956

Re: Android development: rinse/repeat

Ok, posted there too...
by Apa
Tue Jan 03, 2017 1:24 am
Forum: Development of Ren'Py
Topic: Android development: rinse/repeat
Replies: 0
Views: 616

Android development: rinse/repeat

Guys,
Can somebody shed a bit of light here, please? :?:
by Apa
Mon Jan 02, 2017 4:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Android development: rinse/repeat
Replies: 6
Views: 956

Android development: rinse/repeat

PyTom, Out of curiosity, if it possible to add one more folder for *.rpyc/*.rpyb files lookup for mobile platforms, Android specifically? Something like sdcard/Android/data/test.test/files/assets I.e. a newer file is loaded either from obb of above folder. And *.rpyc/*.rpyb files can be written ther...
by Apa
Sat Dec 31, 2016 8:27 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] android renpy.movie_cutscene exception
Replies: 2
Views: 1726

Re: android renpy.movie_cutscene exception

PyTom,
Thanks a lot for quick response and
Happy new year to you and whole Ren'Py community! :D
by Apa
Sat Dec 31, 2016 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] android renpy.movie_cutscene exception
Replies: 2
Views: 1726

[SOLVED] android renpy.movie_cutscene exception

I’m getting following error on Android/renpy-6.99.12-sdk/renpy-6.99.12.2-sdk for the following code fragment define test = 'video/test.mp4' $ renpy.movie_cutscene(test) or $ renpy.movie_cutscene('video/test.mp4') Same fragment works fine on PC and Ren’Py launcher Emulators Phone and Tablet. :? The A...
by Apa
Mon Dec 26, 2016 2:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Building An Android Version
Replies: 15
Views: 2338

Re: Building An Android Version

Fatimah wrote:Another question, how do I remove the mouse cursor from the mobile versions?
IMO, it only shows up if you have external mouse connected, which is almost never the case, except with emulators.
by Apa
Sat Dec 24, 2016 1:40 am
Forum: Ren'Py Questions and Announcements
Topic: RAPT tiny wrinkles...
Replies: 2
Views: 496

Re: RAPT tiny wrinkles...

Are you running the latest Renpy version (I think a new update was pushed last week)? I haven't really come across the problems you've described, but I also haven't built an Android app for a while now. Yep, renpy-6.99.12-sdk and corresponding RAPT. And the behavior was exactly same for 6.99.11. Re...
by Apa
Fri Dec 23, 2016 6:23 pm
Forum: Ren'Py Questions and Announcements
Topic: RAPT tiny wrinkles...
Replies: 2
Views: 496

RAPT tiny wrinkles...

1. rapt\bin\classes is not cleaned up from previously build apps. The result is next build app APK contains classes from all previously build apps. I.e. if 2 apps were build in following order: test.tst, question.tst TheTest-1.0-release.apk has test.tst classes. TheQuestion-1.0-release.apk has both ...
by Apa
Fri Dec 23, 2016 6:15 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Developer Menu on Android
Replies: 4
Views: 840

Re: Developer Menu on Android

I see. Thanks for clarification! :)
In short:
Ren'Py loads "developer stuff" if (and only if!) config.developer = True (for packaged apps for all platforms), right?
Shortcuts, like shift+D|C|R, do not work on Android. (Shouldn’t be a big deal to assign these or any others, I guess)
by Apa
Fri Dec 23, 2016 12:54 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Developer Menu on Android
Replies: 4
Views: 840

Re: Developer Menu on Android

You can try to invoke it using the code: textbutton "Developer" action Show("_developer") Worked like a charm! :) Thanks a lot! but that will only work if Ren'Py decided to load the developer stuff in the first place. Ouch. What affects Ren'Py decision to load the "develope...
by Apa
Fri Dec 23, 2016 2:53 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Developer Menu on Android
Replies: 4
Views: 840

[SOLVED] Developer Menu on Android

I cannot get into Developer Menu on Android. Works fine on windows. options.rpy/config.developer = True obviously. Is it not suppose to work on Android or it’s me doing something wrong? If it’s the former - is there a way invoke Developer Menu from prefs screen? I do use Bluetooth keyboard (if it ma...
by Apa
Fri Dec 23, 2016 2:50 am
Forum: Ren'Py Questions and Announcements
Topic: Android updating/testing cycles...
Replies: 0
Views: 494

Android updating/testing cycles...

If you updating/testing your project frequently on Android this might help. If you made a small change to you project, instead of doing full build/install cycle, you can simply update .obb file with what you have changed. I.e. if you updated options.rpy , you can use compiled options.rpyc to update ...