O

Onix

Member

Last active 2 years ago

  1. 2 years ago
    Fri Jun 11 22:27:47 2021

    same problem on mate30 pro-android10. camera is not opened but open the images folder. please fix it

  2. 6 years ago
    Thu Mar 1 22:54:50 2018

    Notofications -> Notifications
    I also suggest only "Do you want to receive notifications?"

  3. Wed Feb 28 22:36:12 2018
    O Onix started the conversation Wrong spelling 'Notofications'.

    As you can see in this picture the translation of "notifications" is wrong:
    -image-

    How can i fix the translation?
    How to edit text in my language?
    Thank you

  4. Tue Jan 16 23:51:09 2018
    O Onix started the conversation "Confirm on exit" Custom Text.

    It could be useful a custom message on exit for translated text.

  5. Tue Jan 16 23:22:55 2018

    Also "Progress wheel"+"Location" selection is not saved/loaded
    "New" project menu command do not clear all fields and icon, splash.

  6. Tue Jan 16 22:53:28 2018
    O Onix started the conversation .Webapp Project not Saving some of Details.

    The version name and code is not saved or is not loaded from a .webapp project.
    I'm using the version 3.1pro

  7. Tue Jan 16 22:51:32 2018
    O Onix started the conversation Keystore Path Bug.

    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

  8. Tue Jan 16 22:46:37 2018

    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 :)

  9. Tue Jan 16 22:39:31 2018
    O Onix joined the forum.