Member
Last active 3 years ago
same problem on mate30 pro-android10. camera is not opened but open the images folder. please fix it
Notofications -> Notifications
I also suggest only "Do you want to receive notifications?"
As you can see in this picture the translation of "notifications" is wrong:
How can i fix the translation?
How to edit text in my language?
Thank you
It could be useful a custom message on exit for translated text.
Also "Progress wheel"+"Location" selection is not saved/loaded
"New" project menu command do not clear all fields and icon, splash.
The version name and code is not saved or is not loaded from a .webapp project.
I'm using the version 3.1pro
I've found a bug signing the apk with my keystore.
If the file mykeystore.jks is on a path with spaces (example on user desktop) the import will fail with the message "Keystore was tampered with, or password was incorrect".
A simple path works, for example c:\keys\mykeystore.jks
you have to force the download from your php script, like this:
<?php
ob_start();
$filename=$_GET["fn"];
if( !is_file($filename) ) die("File is missing...\n");
$mime = ($mime = getimagesize($filename)) ? $mime['mime'] : $mime;
header("Expires: 0");
header("Pragma: public");
header("Content-type: " . $mime);
header("Content-Length: ".filesize($filename));
header("Content-Disposition: attachment; filename=".basename($filename));
header("Content-Transfer-Encoding: binary");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
readfile("$filename");
ob_end_flush();
?>
save this file as download.php
then your link will be:
<a href="download.php?fn=my_image.jpg">DOWNLOAD IMAGE</a>
i've done it in webapp and with website2apk v3.1 works great :)