Search found 410 matches

by amyren
Sun Nov 02, 2025 1:09 pm
Forum: APK Compiler
Topic: Google Playstore Release - How to do?
Replies: 3
Views: 205

Re: Google Playstore Release - How to do?

Lets know how you are doing. No doubt it is a lot to go through. But perhaps its easier when you do a first release, because it is a step-by-step process you must go through. For maintaining an existing app I found it frustrating when they came up with new requirements and I felt clueless about wher...
by amyren
Sun Oct 19, 2025 11:23 pm
Forum: APK Compiler
Topic: Icons for Android
Replies: 2
Views: 72

Re: Icons for Android

I wish you good luck, and hope you find the process of publishing on playstore to frustrating.
A while since I did this, but I remember it as a very cumbersome job.
If I did it again I would try to make notes of each step I had to go through just to have that list afterwards to look back at.
by amyren
Sat Oct 18, 2025 3:26 pm
Forum: APK Compiler
Topic: Scoped storage methods for Android 10+
Replies: 9
Views: 590

Re: Scoped storage methods for Android 10+

Yes it´s very usefull for me at least, thank you again Ok, here is a hollywood script that will first ask for the required permissions, then open the camera for you to take a picture. Then the picture should be stored on mediastorage (Pictures/HollywoodPhotos) and the path to the picture is copied ...
by amyren
Fri Oct 17, 2025 5:31 pm
Forum: Newbie questions
Topic: Extract file content into string without creating a flie
Replies: 12
Views: 395

Re: Extract file content into string without creating a flie

It seems DeleteFile does have the ability to use the zip plugin, just not via InstallAdapter. Adapter = "zip" works Here in this example there is no zip.defaultpassword set, and no password in the argument of DeleteFile, but it still is able to access the archive and delete files within it...
by amyren
Thu Oct 16, 2025 8:44 pm
Forum: Newbie questions
Topic: Extract file content into string without creating a flie
Replies: 12
Views: 395

Re: Extract file content into string without creating a flie

You can replace the InstallAdapter by an Adapter="zip" in the argument table of OpenFile , then DeleteFile works in my script too. Nice find. Inspired by your finding I found that you can keep the InstallAdapter if you add Adapter="Inbuilt" in the argument table of DeleteFile.
by amyren
Thu Oct 16, 2025 1:33 pm
Forum: Newbie questions
Topic: Extract file content into string without creating a flie
Replies: 12
Views: 395

Re: Extract file content into string without creating a flie

Later in the script i added an option to delete that zip file, but it fails with an error (unable to delete). Ialso tried to force it to be deleted, but here again I am unsure if the syntax is correct. The syntax is correct, and Force should not be necessary. Did you do this with my skript, startin...
by amyren
Thu Oct 16, 2025 10:58 am
Forum: Newbie questions
Topic: Extract file content into string without creating a flie
Replies: 12
Views: 395

Re: Extract file content into string without creating a flie

Thank you both for your suggestions. The script from jPV was the one most similar to my first attempt, but fixed into a working condition. I think I will go along with the suggestion from Flix, since that way I could read the data directly without creating another virtual file. I must admit I someti...
by amyren
Tue Oct 14, 2025 4:47 pm
Forum: Newbie questions
Topic: Extract file content into string without creating a flie
Replies: 12
Views: 395

Re: Extract file content into string without creating a flie

When not setting the Encryption tag the password is not used, the zip file opens without any password. But thanks for the effort. I guess I could just let the file be stored on disk temporary and delete it immediately after reading. Perhaps even wipe the file before deleting so it apear empty for an...
by amyren
Tue Oct 14, 2025 11:13 am
Forum: APK Compiler
Topic: Scoped storage methods for Android 10+
Replies: 9
Views: 590

Re: Scoped storage methods for Android 10+

The methods mentioned above are mostly working, but as said earlier there are room for improvement, and there also might be bugs I'm not aware of. In my case I tried by using the method for storing files in the mediastorage area. Some of the issues I found when putting the scrips into real usage was...
by amyren
Mon Oct 13, 2025 11:13 pm
Forum: APK Compiler
Topic: Scoped storage methods for Android 10+
Replies: 9
Views: 590

Re: Scoped storage methods for Android 10+

xabierpayet wrote: Sun Oct 12, 2025 12:57 am i need test it ASAP, thanks
There are most likely room for improvement. I came across a couple issues that needed adjustments. Will post a modified version of the java file tomorrow.