Search found 441 matches
- Sun Feb 22, 2026 9:48 pm
- Forum: APK Compiler
- Topic: duplicate class HollywoodDelegate
- Replies: 5
- Views: 7795
Re: duplicate class HollywoodDelegate
Wonderful, now its working again. Although I had to rename one of my entries in my HollywoodDelegate.java to avoid conflict. I guess there are "competing" CalljavaMethod commands now. I had my own java command named createFile, and that resulted in compile errors. To resolve this I had to ...
- Fri Feb 20, 2026 9:57 pm
- Forum: APK Compiler
- Topic: APK Compiler No Longer Producing Two Versions (Arm7 and Arm8)
- Replies: 4
- Views: 6339
Re: APK Compiler No Longer Producing Two Versions (Arm7 and Arm8)
Yes, that's exactly what's happening here. The APKs generated by APK Compiler 5.0 contain both the arm7 and arm8 versions because that's the way the Android build chain works now. Thats quite cool. I did recompile one of my games with HW11 and Compile 5.0 and noticed the combined apk now is a bit b...
- Thu Feb 19, 2026 8:40 pm
- Forum: APK Compiler
- Topic: APK Compiler No Longer Producing Two Versions (Arm7 and Arm8)
- Replies: 4
- Views: 6339
Re: APK Compiler No Longer Producing Two Versions (Arm7 and Arm8)
arm7 was the 32bit wasnt ? probably has to do with the fact that new adroid studio /google has dropped support for this If google is to be trusted, even Android Studio Panda still supports creating armeabi-v7a apk's. Could it be that the apks now contain both versions in one apk? Although the apks ...
- Mon Feb 16, 2026 9:19 pm
- Forum: APK Compiler
- Topic: duplicate class HollywoodDelegate
- Replies: 5
- Views: 7795
Re: duplicate class HollywoodDelegate
Before coming as far as to the point I got that duplicate error, there was some other errors reported. To get past those I had to use a custom gradle.build script like this plugins { alias(libs.plugins.android.application) } android { namespace = '%PACKAGE%' compileSdk { version = release(%COMPILESD...
- Mon Feb 16, 2026 1:11 pm
- Forum: APK Compiler
- Topic: duplicate class HollywoodDelegate
- Replies: 5
- Views: 7795
duplicate class HollywoodDelegate
With apk compiler 5.0 I get this error when compiling C:\Users\Admin\AppData\Local\AirsoftSoftwair\APKCompiler\com.amy66dev.dirtest\app\src\main\java\HollywoodDelegate.java:29: error: duplicate class: com.amy66dev.dirtest.HollywoodDelegate public class HollywoodDelegate extends HollywoodActivity { W...
- Wed Feb 11, 2026 3:31 pm
- Forum: Newbie questions
- Topic: How to handle animations?
- Replies: 10
- Views: 10964
Re: How to handle animations?
Thanks for clearifying. Getting the anim format argument correct solved it for both IFF and GIF. For IFF and GIF the FPS argument is not needed in BeginAnimStream(), and the Delay argument will work as it should regardless if FPS is set or not. So I would say the manual is correct. On the other hand...
- Tue Feb 10, 2026 8:36 pm
- Forum: General programming
- Topic: Debugging Hollywood on Android
- Replies: 7
- Views: 8630
Re: Debugging Hollywood on Android
Try to strip down your app into a minimum just to get something running. If you have a small code and it still just quits, you could post it here. If it runs, then add more code bit by bit until you find the part that cause the issue. Or you could make your app create a text file and make it write d...
- Tue Feb 10, 2026 1:36 pm
- Forum: Newbie questions
- Topic: How to handle animations?
- Replies: 10
- Views: 10964
Re: How to handle animations?
SelectAnim() did work well for most of my purposes. Only case that need the BeginAnimStream() and WriteAnimFrame is when adding delay to the frames. In the docs it says that only IFF and GIF formats supports frame delay. But I can not get it to work with GIF anims, only IFF. For the example below I ...
- Sun Feb 08, 2026 5:34 pm
- Forum: Announcements
- Topic: Hollywood APK Compiler 5.0 released
- Replies: 7
- Views: 6553
Re: Hollywood APK Compiler 5.0 released
Updating from v 4.4 to 5.0
I currently have Android Studio Electruc Eel / ndk 28.0.12674087 and gradle 6.71
Does this meet the minimum requirements in 5.0 or do I need to update before installing?
I currently have Android Studio Electruc Eel / ndk 28.0.12674087 and gradle 6.71
Does this meet the minimum requirements in 5.0 or do I need to update before installing?
- Sat Feb 07, 2026 6:30 pm
- Forum: Wishlist
- Topic: Stringrequest as a number
- Replies: 1
- Views: 9111
Stringrequest as a number
I think it could be convenient if when settiing the #NUMERICAL option for stringrequest that the resulting variable then would be stored as a value instead of a string. Sometimes when using stringrequest one can get away with using the result as a number but in other cases you get the "comparin...