Search This thread

nkk71

Inactive Recognized Developer / Contributor
May 26, 2010
8,741
7,571
53
Beirut
Thanks, but this is only a Selectbox Option. I want to use combined Options of Checkboxes and Selectboxes (Like on my Screenshot). I was using 2 Pages for 2 Options before but I want to combine the UI Sounds Options (Selectboxes) with other Sounds like Ringtones (Checkboxes) on one Page.



Thanks Mate. I will upload a Snapshot in some Minutes and add the link on this Post! I will also add a reference to the example where I have the "form(" layout from (think it was a file in the AROMA 3.0b ZIP)...

(It's w.i.p. Flashing works but the Audio Part makes still Problems on the Updater Script. (No UI Lines while flashing and no executing))
Looks like i've found a really unique Option... But Checkboxes and Selectboxes on one Page are a must have, and it gives nice Options like mixed De-/bloating on 1 Page instead of 2 or my Audio example from before. I've done that also with SuperSU, Busybox and Init.d but only with Selectboxes and simple Yes/No Options on 3 Groups. AROMA has still a lot to give, it's interesting to find new Ways and Options but i really need help at this Point... Hope someone knows how to do it!


Sorry for the late reply, but I see the problem now, you're using a free form with groups which can either be options or checkboxes:
Code:
form(
"AUDIO",
"MAKE YOUR CHOICES AND CONTINUE BY PRESSING <b>'NEXT'</b>...",
"@none",
"audio.prop",
#
"group1","WHICH UI SOUNDS DO YOU WANT TO USE?","","group",
"opt1","LG SOUNDS","ALL LG V20 UI SOUNDS","select",
"opt2","MIUI SOUNDS","ALL MIUI V8 UI SOUNDS","select",
"opt3","HTC SOUNDS","ALL HTC 10 UI SOUNDS","select",
"opt4","SONY XPERIA SOUNDS","ALL XPERIA XZ UI SOUNDS","select",
"opt5","GOOGLE PIXEL SOUNDS","ALL PIXEL XL UI SOUNDS","select.selected",
"opt6","DEFAULT","KEEPS THE DEFAULT UI SOUNDS","select",
"group2","DO YOU WANT MORE SOUNDS?","","group",
"chk1","LG SOUNDS","ALL LG V20 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk2","MIUI SOUNDS","ALL MIUI V8 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk3","HTC SOUNDS","ALL HTC 10 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk4","SONY SOUNDS","ALL XPERIA XZ RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk5","GOOGLE SOUNDS","ALL PIXEL XL RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"group3","WHAT ABOUT THE AUDIO QUALITY?","","group",
"opt7","OPTIMIZED","USING SONY ENHANCEMENTS","select",
"opt8","DEFAULT","USING ONLY THE INJECTED PROP SETTINGS","select.selected"
);


So your audio.prop will not be using the "selected." variables, instead for
  • Options it will return "groupX=optY"
  • Checkboxes it will return "chkX=0" for unselected, or "chkX=1" for selected.

Here's a sample of what my selections were in that screen:
Code:
/tmp/aroma # cat audio.prop
chk1=1
chk2=1
chk3=1
chk4=0
chk5=1
group1=opt5
group3=opt8

So you'll just need to adjust your installer-script according to those values.
 

Miustone

Senior Member
Jul 23, 2012
3,355
6,184
30
Google Pixel 7 Pro
Sorry for the late reply, but I see the problem now, you're using a free form with groups which can either be options or checkboxes:
Code:
form(
"AUDIO",
"MAKE YOUR CHOICES AND CONTINUE BY PRESSING <b>'NEXT'</b>...",
"@none",
"audio.prop",
#
"group1","WHICH UI SOUNDS DO YOU WANT TO USE?","","group",
"opt1","LG SOUNDS","ALL LG V20 UI SOUNDS","select",
"opt2","MIUI SOUNDS","ALL MIUI V8 UI SOUNDS","select",
"opt3","HTC SOUNDS","ALL HTC 10 UI SOUNDS","select",
"opt4","SONY XPERIA SOUNDS","ALL XPERIA XZ UI SOUNDS","select",
"opt5","GOOGLE PIXEL SOUNDS","ALL PIXEL XL UI SOUNDS","select.selected",
"opt6","DEFAULT","KEEPS THE DEFAULT UI SOUNDS","select",
"group2","DO YOU WANT MORE SOUNDS?","","group",
"chk1","LG SOUNDS","ALL LG V20 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk2","MIUI SOUNDS","ALL MIUI V8 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk3","HTC SOUNDS","ALL HTC 10 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk4","SONY SOUNDS","ALL XPERIA XZ RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"chk5","GOOGLE SOUNDS","ALL PIXEL XL RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"group3","WHAT ABOUT THE AUDIO QUALITY?","","group",
"opt7","OPTIMIZED","USING SONY ENHANCEMENTS","select",
"opt8","DEFAULT","USING ONLY THE INJECTED PROP SETTINGS","select.selected"
);


So your audio.prop will not be using the "selected." variables, instead for
  • Options it will return "groupX=optY"
  • Checkboxes it will return "chkX=0" for unselected, or "chkX=1" for selected.

Here's a sample of what my selections were in that screen:
Code:
/tmp/aroma # cat audio.prop
chk1=1
chk2=1
chk3=1
chk4=0
chk5=1
group1=opt5
group3=opt8

So you'll just need to adjust your installer-script according to those values.

Thanks! I tried many Lines but ended up with that Lines here:
Code:
ui_print("--AUDIO");
set_progress(0.50);
#
if file_getprop("/tmp/aroma-data/audio.prop","opt1") == "1" then
ui_print("-LG UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/LG/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt2") == "1" then
ui_print("-MIUI UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/MIUI/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt3") == "1" then
ui_print("-HTC UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/HTC/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt4") == "1" then
ui_print("-SONY XPERIA UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/SONY/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt5") == "1" then
ui_print("-GOOGLE PIXEL UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/GOOGLE/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt6") == "1" then
ui_print("-NO UI SOUND EXTRACTION");
set_progress(0.55);
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk1" then
ui_print("-LG RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/LG/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk2" then
ui_print("-MIUI RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/MIUI/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk3" then
ui_print("-HTC RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/HTC/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk4" then
ui_print("-SONY RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/SONY/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk5" then
ui_print("-GOOGLE RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/GOOGLE/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group3") == "opt1" then
ui_print("-UI TEST! OPTIMIZED AUDIO QUALITY");
set_progress(0.65);
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group3") == "opt2" then
ui_print("-UI TEST! NO OPTIMIZED AUDIO QUALITY");
set_progress(0.65);
endif;
#
But it does also not work. Any Idea how it has to looks like? :rolleyes:
 

nkk71

Inactive Recognized Developer / Contributor
May 26, 2010
8,741
7,571
53
Beirut
Thanks! I tried many Lines but ended up with that Lines here:
Code:
ui_print("--AUDIO");
set_progress(0.50);
#
if file_getprop("/tmp/aroma-data/audio.prop","opt1") == "1" then
ui_print("-LG UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/LG/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt2") == "1" then
ui_print("-MIUI UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/MIUI/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt3") == "1" then
ui_print("-HTC UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/HTC/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt4") == "1" then
ui_print("-SONY XPERIA UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/SONY/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt5") == "1" then
ui_print("-GOOGLE PIXEL UI SOUND EXTRACTION");
set_progress(0.55);
package_extract_dir("SOUNDS/GOOGLE/UI", "/system/media/audio/ui");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","opt6") == "1" then
ui_print("-NO UI SOUND EXTRACTION");
set_progress(0.55);
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk1" then
ui_print("-LG RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/LG/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk2" then
ui_print("-MIUI RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/MIUI/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk3" then
ui_print("-HTC RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/HTC/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk4" then
ui_print("-SONY RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/SONY/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group2") == "chk5" then
ui_print("-GOOGLE RINGTONES, ALARMS AND NOTIFICATIONS EXTRACTION");
set_progress(0.60);
package_extract_dir("SOUNDS/GOOGLE/OTHERS", "/system/media/audio");
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group3") == "opt1" then
ui_print("-UI TEST! OPTIMIZED AUDIO QUALITY");
set_progress(0.65);
endif;
#
if file_getprop("/tmp/aroma-data/audio.prop","group3") == "opt2" then
ui_print("-UI TEST! NO OPTIMIZED AUDIO QUALITY");
set_progress(0.65);
endif;
#
But it does also not work. Any Idea how it has to looks like? :rolleyes:

I think you missed the option vs checkbox thing, doing this on the browser so excuse any mistakes
(and I usually prefer more descriptive options when I do get a chance), so probably something like:
Code:
form(
"AUDIO",
"MAKE YOUR CHOICES AND CONTINUE BY PRESSING <b>'NEXT'</b>...",
"@none",
"audio.prop",
#
"MAIN_SOUNDS","WHICH UI SOUNDS DO YOU WANT TO USE?","","group",
"LG","LG SOUNDS","ALL LG V20 UI SOUNDS","select",
"MIUI","MIUI SOUNDS","ALL MIUI V8 UI SOUNDS","select",
"HTC","HTC SOUNDS","ALL HTC 10 UI SOUNDS","select",
"SONY","SONY XPERIA SOUNDS","ALL XPERIA XZ UI SOUNDS","select",
"PIXEL","GOOGLE PIXEL SOUNDS","ALL PIXEL XL UI SOUNDS","select.selected",
"DEFAULT","DEFAULT","KEEPS THE DEFAULT UI SOUNDS","select",

"group2","DO YOU WANT MORE SOUNDS?","","group",
"add_LG","LG SOUNDS","ALL LG V20 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"add_MIUI","MIUI SOUNDS","ALL MIUI V8 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"add_HTC","HTC SOUNDS","ALL HTC 10 RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"add_SONY","SONY SOUNDS","ALL XPERIA XZ RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",
"add_GOOGLE","GOOGLE SOUNDS","ALL PIXEL XL RINGTONES, ALARMS AND NOTIFICATIONS","check.checked",

"AUDIO_QUALITY","WHAT ABOUT THE AUDIO QUALITY?","","group",
"OPTIMIZED","OPTIMIZED","USING SONY ENHANCEMENTS","select",
"DEFAULT","DEFAULT","USING ONLY THE INJECTED PROP SETTINGS","select.selected"
);

Code:
# Main Sounds
if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "LG" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "MIUI" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "HTC" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "SONY" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "PIXEL" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","MAIN_SOUNDS") == "DEFAULT" then
...
endif;



# Additional Sounds
if file_getprop("/tmp/aroma-data/audio.prop","add_LG") == "1" then
...
endif;
if file_getprop("/tmp/aroma-data/audio.prop","add_MIUI") == "1" then
...
endif;
if file_getprop("/tmp/aroma-data/audio.prop","add_HTC") == "1" then
...
endif;
if file_getprop("/tmp/aroma-data/audio.prop","add_SONY") == "1" then
...
endif;
if file_getprop("/tmp/aroma-data/audio.prop","add_GOOGLE") == "1" then
...
endif;



# Audio Quality
if file_getprop("/tmp/aroma-data/audio.prop","AUDIO_QUALITY") == "OPTIMIZED" then
...
endif;

if file_getprop("/tmp/aroma-data/audio.prop","AUDIO_QUALITY") == "DEFAULT" then
...
endif;

You can stick with chkN and optM, but for
  • optM,
  • you do file_getprop("/tmp/aroma-data/audio.prop",<name of group>) == "optM"
and for
  • chkN,
  • you do file_getprop("/tmp/aroma-data/audio.prop","chkN") == "1"

@Miustone
I just ran the above aroma-config, here's the output:

Code:
/tmp/aroma # cat audio.prop 
add_LG=0
add_MIUI=1
add_HTC=1
add_SONY=1
add_GOOGLE=0
MAIN_SOUNDS=MIUI
AUDIO_QUALITY=DEFAULT
then I changed my mind :p, and went back because I wanted Optimized Audio:
Code:
/tmp/aroma # cat audio.prop 
add_LG=0
add_MIUI=1
add_HTC=1
add_SONY=1
add_GOOGLE=0
MAIN_SOUNDS=MIUI
AUDIO_QUALITY=OPTIMIZED
 
Last edited:
  • Like
Reactions: Miustone

dedraks

Senior Member
Nov 1, 2010
623
341
Belo Horizonte
www.in4byte.com
logo.png

The World's First ANDROID Touch And Customizable ROM Installer


DEVELOPMENT AND UPDATE NOW ON XDA-DEVDB
AROMA INSTALLER THREAD


Don't Forget To Donate To Me:



When you install Linux, Windows, Mac or applications on the PC
You can always customize your installation as you want.


WHY CAN'T WE DO THE SAME INSTALLING AN ANDROID ROM?

BECAUSE NOW
AROMA Installer
GIVES YOU THIS POSSIBILITY!




For Questions and Answer about scripting and customizing your Installer, please post your problems in Q&A Thread below:
AROMA Installer & Edify
Q & A THREAD



Need stunning AROMA Installer Package Creator in GUI:
Aroma App Package Creator

by commandersafi​
YOU DON'T NEED TO USE TOUCH RECOVERY TO MAKE THE TOUCH SCREEN WORKS
If your Recovery Kernel include Touch Screen Driver, even if the recovery not supported touch screen, it will works.
And Almost any recovery included touch screen driver in its kernel (Except some trimmed versions)


-------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------



Benefits For Users
AROMA Installer gives users the possibility to choose which mods and applications they want to Install on to their device. Sometimes we want the clean install, without bloatware; and sometimes we want the full set of applications on our device. With AROMA Installer, you are your phone's master!



Benefits For Chefs/Developers
AROMA Installer gives chefs many benefits:

You don't ever again have to hear someone ask to remove or include something they like into your ROM, just for you to yell "Hey, that is only your opinion! Only you and some other people like it; most people don't! Go remove the apps on your own with WINRAR, you ^$#&*&#$", remember they are still a customer :cool:, and with AROMA Installer, this problem can be solved.

If you are good at customizing the AROMA Installer it was possible to make your ROM compatible with many devices using just one ROM File. You save your time, bandwith and hosting maintanance.

With the great user interface in your ROM installation, users will be very happy with it.

With AROMA Installer, You Are The Greatest ROM Developer


-------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------




-------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------


Videos
Watch this video to learn about AROMA Installer. Thanks to XsMagical for creating this awesome video...






Hi @amarullz my new ROM uses AROMA installer:

https://xdaforums.com/moto-z-play/development/rom-dedraks-essential-rom-mzp-t3576478
 

TimelessPWN

Senior Member
Jan 29, 2017
271
356
Greenville
I added a menu to my script today and now when i try to flash with FlashFire i get error Aroma-Config line 171 col 7, which is the very last line of my code, all that is there is endif; yet is telling me there is an error? I have been trying to figure this out all damn day, any help would be greatly appreciated. Here is a copy of my Aroma-Config and My Updater-Script.
 

Attachments

  • aroma.zip
    7.2 KB · Views: 54

black dark man

Senior Member
Dec 25, 2015
382
85
I added a menu to my script today and now when i try to flash with FlashFire i get error Aroma-Config line 171 col 7, which is the very last line of my code, all that is there is endif; yet is telling me there is an error? I have been trying to figure this out all damn day, any help would be greatly appreciated. Here is a copy of my Aroma-Config and My Updater-Script.
I think you are missing endif in EXIT portion.
 

AndroidSword

Senior Member
Oct 31, 2016
884
1,044
24
Delhi
OnePlus 7T
OnePlus 8
Hello guys:),
I need a bit of help from all the great dev/contributors here.
I am facing empty installation UI while running AROMA. Like, in AROMA, everything works fine, the Wizard works as it should...:)
But as soon as I reach the installation screen, it remains empty and does not move forward... :(it simply redirects me to the "Installation Complete" page:(. Even the installation logs are empty...:)

MY AROMA IS BELOW 2GB...

Any help would be appreciated, Thanks a lot in advance:):)

Here is my updater script and aroma-config.
 
Last edited:

pekaka

Senior Member
Apr 5, 2007
963
1,061
Liuzhou
xdaforums.com
dir amarullz,
Aroma installer is a great job!firstlly thanks for hard work,but now I can't sign the script on line?the link is not working.
so send this message for help.
thanks a lots。
 

Banty448

Senior Member
Dec 19, 2016
64
3
Hi how to uninstall aroma installer from ported rom without pc?coz aroma is not working with my device(lava iris 503 mtk6572) and i am using cwm recovery6.0.1.9 when i try to flash ported rom i stuck on aroma installer and touch don't work.please help....plzzzzz
 

Huskied

Senior Member
Jun 10, 2015
335
106
Round Rock
OnePlus 6T
OnePlus 8T

Attachments

  • aroma-config.zip
    3.1 KB · Views: 32
Last edited:

nkk71

Inactive Recognized Developer / Contributor
May 26, 2010
8,741
7,571
53
Beirut
Trying to get this Aroma Installer built, Ended up with a Syntax Error "aroma_config on line 305 col 6"
literally has only "endif;" here is the config.

https://xdaforums.com/attachment.php?attachmentid=4242012&stc=1&d=1502764009

EDIT: Removing that endif; worked.

EDIT2: Did a screen flash, then took me back to the recovery, seems a bit strange, I don't think that worked..

Yeah that endif; is definitely out of place, it has no accompanying if to begin with, then it works just fine, attached a couple of screenshots, and the resulting .prop files
 

Attachments

  • fb0-1.jpg
    fb0-1.jpg
    57 KB · Views: 151
  • fb0-2.jpg
    fb0-2.jpg
    106.1 KB · Views: 153
  • aroma-data.zip
    518 bytes · Views: 35
  • Like
Reactions: Huskied

Huskied

Senior Member
Jun 10, 2015
335
106
Round Rock
OnePlus 6T
OnePlus 8T
Yeah that endif; is definitely out of place, it has no accompanying if to begin with, then it works just fine, attached a couple of screenshots, and the resulting .prop files

Alrght, So I removed the endif; and tested things out. But when attempting to switch to the installation process if shuts everything down and TWRP is saying it finished, When there are no signs of change. Any solutions? And thank you for your help.
 

nkk71

Inactive Recognized Developer / Contributor
May 26, 2010
8,741
7,571
53
Beirut
Alrght, So I removed the endif; and tested things out. But when attempting to switch to the installation process if shuts everything down and TWRP is saying it finished, When there are no signs of change. Any solutions? And thank you for your help.

Can't say, I only saw your aroma config, you sure your installer script is correct?

Sent from my HTC 10 using XDA Labs
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1437
    logo.png

    The World's First ANDROID Touch And Customizable ROM Installer


    DEVELOPMENT AND UPDATE NOW ON XDA-DEVDB
    AROMA INSTALLER THREAD


    Don't Forget To Donate To Me:



    When you install Linux, Windows, Mac or applications on the PC
    You can always customize your installation as you want.


    WHY CAN'T WE DO THE SAME INSTALLING AN ANDROID ROM?

    BECAUSE NOW
    AROMA Installer
    GIVES YOU THIS POSSIBILITY!




    For Questions and Answer about scripting and customizing your Installer, please post your problems in Q&A Thread below:
    AROMA Installer & Edify
    Q & A THREAD



    Need stunning AROMA Installer Package Creator in GUI:
    Aroma App Package Creator

    by commandersafi​
    YOU DON'T NEED TO USE TOUCH RECOVERY TO MAKE THE TOUCH SCREEN WORKS
    If your Recovery Kernel include Touch Screen Driver, even if the recovery not supported touch screen, it will works.
    And Almost any recovery included touch screen driver in its kernel (Except some trimmed versions)


    -------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------



    Benefits For Users
    AROMA Installer gives users the possibility to choose which mods and applications they want to Install on to their device. Sometimes we want the clean install, without bloatware; and sometimes we want the full set of applications on our device. With AROMA Installer, you are your phone's master!



    Benefits For Chefs/Developers
    AROMA Installer gives chefs many benefits:

    You don't ever again have to hear someone ask to remove or include something they like into your ROM, just for you to yell "Hey, that is only your opinion! Only you and some other people like it; most people don't! Go remove the apps on your own with WINRAR, you ^$#&*&#$", remember they are still a customer :cool:, and with AROMA Installer, this problem can be solved.

    If you are good at customizing the AROMA Installer it was possible to make your ROM compatible with many devices using just one ROM File. You save your time, bandwith and hosting maintanance.

    With the great user interface in your ROM installation, users will be very happy with it.

    With AROMA Installer, You Are The Greatest ROM Developer


    -------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------




    -------------------------A-R-O-M-A---I-n-s-t-a-l-l-e-r-------------------------


    Videos
    Watch this video to learn about AROMA Installer. Thanks to XsMagical for creating this awesome video...





    426
    Downloads & Resources

    FOR ROM CHEFS ONLY

    ROM CHEF? WHAT IS THAT? ... HERE IS A VIDEO


    DON'T ASK ABOUT HOW TO INSTALL IT, BECAUSE IT MEANS YOU DON'T KNOW WHAT IT IS FOR

    IT ISN'T AN APPLICATION YOU CAN USE OR INSTALL ON TO YOUR PHONE LIKE ANGRY BIRDS OR FACEBOOK

    IF YOU JUST A USER, THEN FIND A ROM THAT ALREADY USES THIS INSTALLER

    MOST IMPORTANT THING BEFORE CUSTOMIZING IT

    Make sure You took an update-binary from a working ROM,
    renamed it to update-binary-installer and overwrote the one in my AROMA Installer zip

    Download Binary

    Version 3.00b1 - MELATI
    BUILD:15022833

    NOTE WILL ONLY WORKS ON DEVICE WITH ARM NEON SUPPORT
    Recent Changelogs:
    • FLAMBOYAN MELATI- 3.00b1
    • new engine fb & input driver
    • support msmfb overlay
    • more neon improve
    • tweaks some ui
    • graphics processing

    Download Binary

    Version 2.70 RC2 - FLAMBOYAN
    BUILD:130903

    NOTE WILL ONLY WORKS ON DEVICE WITH ARM NEON SUPPORT

    Recent Changelogs (FLAMBOYAN BETA):
    • FLAMBOYAN BETA - 2.70B1-B6
    • -
    • BETA-6
    • Fix some back sequence (thanks Electronic Punk) - Small but Important fix aparse_current_position++ to ++aparse_current_position. ( https://github.com/amarullz/AROMA-In...1bba2d02988c60 )
    • -
    • BETA-5
    • Fix Commented NEON - Now Fast Again
    • New Themes
    • New Stack Transition, and smoother dialog transitions
    • Add ini_set("transition","stack");
    • Add Screenshoot (Volume Down+Power Button) - Image Format BMP-565 16 bit
    • fix ini_get function
    • Whole new input driver
    • Optimize alphablend processes
    • Optimize and Add Drawing Scale Nearest Neighbor
    • Add drawing functions for alphablend
    • Dialog In & Out Transition
    • Cache recovery display for exit transition
    • Add Exit transition
    • fix force_colorspace issue
    • add colorspace change demo
    • remove unneeded sleep for faster start and exit
    • -
    • BETA-4
    • Fix Icon Themes Error
    • Change Transition Animation - Slides for next/back - Smoother than alpha blend animation
    • Remove any transition effect for Dialog Window
    • Use Bold Text for Navigation Button
    • Fix Installer UI for text log position
    • Add ini_set/ini_get for Vibrate Intensity (0-10). ini_set("vibrate","5") = Half Intensity, ini_set("vibrate","0") = No Vibrate At All
    • Add ini_set/ini_get for icon_back and icon_next. ini_set("icon_next","@install"), ini_set("icon_back","icons/back")
    • Fix Installer Freeze on (pthread_detach) - Compileable for Android Build Environment
    • BUILD WITH ANDROID BUILD ENVIRONMENT - Binary Size Reduce By ~60% - BUILD COMMAND: make aroma_installer; make aroma_installer.zip
    • Add zip build command in building the source
    • Rewrite building script for windows and linux with Android Build Environment
    • Modify aroma-config in demo zip to includes some new features
    • Change update-binary-installer from Galaxy Nexus binary. Sensation user should replace it binary with sensation binary
    • Beautifier Source Code. Add beautifier tools in source code tree
    • -
    • BETA-3
    • Fix Include Back Error
    • Improve Back Sequence Capability
    • ADD EVAL Function to execute the script inline from string
    • ADD GOTO Function to jump back into GOTO Label. gotolabel(), goto().
    • Update More Demo in Example Zip
    • Improving Efficiency processes when loading and reloading themes
    • -
    • BETA-2
    • Fix color handling on themes
    • Using bilinear scaling in png.9p
    • Re-add hebrew support
    • Add Italic Support with tag \<i>Italic\</i>
    • ADD include function, to include script from different file. look at new aroma-config file and language_select.edify file
    • -
    • BETA-1
    • reboot("now","recovery"); and reboot("now","fastbot");
    • Refresh look and feel
    • Remove RTL and Arabic Support (For faster and freeing resource, because the features still unusable)
    • Subpixel rendering for Fonts (Clear Type Like)
    • Improve performance with NEON here and there.
    • Tweaks some input driver
    • May fix some colorspace issue
    • Bilinear scaling for png icons, Now it look smooth even if it resized
    • FIX MANY BACK SEQUENCE BUGS
    • Font will only loaded if the font is really changed - Faster-faster performance improvement
    • Change Navigation Bar Buttons. Now next and back can be using Icons
    • Add Menu Button for buttonless devices.


    • EDELWEIS - 2.56 - BUILD 121004-031
    • Fix capacitive button
    • Remove calibration tools

    • EDELWEIS - 2.55 - BUILD 121003-030
    • Completely new Input/Touchscreen Handler - Thanks to agrabren from TWRP
    • Remove all calibration need. calibtool(), calibrate() and calibrate_matrix() won't do anything now. :)

    • EDELWEIS - 2.51 - BUILD 120810-026
    • Supported Galaxy Nexus Touch Screen - And maybe other devices now supported

    • EDELWEIS - 2.50 - BUILD 120716-025
    • Add Calibration Matrix for More Accurate Touch screen calibration
    • Set ROBOTO as Default True Type Font

    • DAHLIA - 2.00 - BUILD 120425-020
    • Fix Installation Save Logs
    • Fix framebuffer mmap size
    • Fix status 0 error
    • Add Multilanguage functions
    • Change list bullet drawing method
    • Add support for kerning font when use TrueType/OpenType
    • Add AROMA Memory management and memory debuging build (COMPILE FROM SOURCE ONLY)
    • Add more limit size for AROMA texts
    • Add font glyph cache for faster freetype drawing & processing
    • Add support for Modern Standard Arabic
    • Add support for RTL
    • Add support for TrueType and OpenType fonts
    • Add support for UTF8 encoding in aroma-config and all AMS text. For updater-script use NO-BOM UTF8
    • Fix Memory leaks
    • Add ini_set("force_colorspace","rgba");
    • Add support for atmel_maxtouch - Asus Transformer Touch Screen

    • CEMPAKA- 1.64 - BUILD 120414-040
    • Fix framebuffer mmap size
    • Fix status 0 error


    Previous Changelogs:
    Code:
    [LEFT]
    * [B]CEMPAKA- 1.63 - BUILD 120306-032[/B]
    * Add support for atmel_maxtouch (Down Event SYN) - Asus Transformer Prime Touch Screen
    
    * [B]CEMPAKA- 1.62 - BUILD 120303-030[/B]
    * Fix some memory leaks ([COLOR="Red"]Important[/COLOR]).
    * Add ini_set("[COLOR="Green"]force_colorspace[/COLOR]","rgba");
    
    * [B]CEMPAKA- 1.60 - BUILD 120227-026[/B]
    * Add msb_right check for Endianess video memory
    * Fix Installer text log drawing
    * Add ini_get
    * Add rom_date in ini_get
    * Fix reboot and back function
    * Add more and recreate Icons for themes and generic
    * Rewrite text handler
    * Add alignment, indentation and list in AROMA Markup String
    * Change temp directory to /tmp/aroma, /tmp/aroma-data stil works
    * Add Theme Support
    * Add AROMA Markup for <b> Bold
    * Add More Colorset
    * Add More Text to Customize
    * Add PNG Icon Load From Theme (Default Icons)
    * Add Tab support in AROMA Markup String
    * Change int to long for partition info, now support big storage information
    * Config Init All/Theme Only
    * Recreate new example (release) for binary release
    * Customizable Font Runtime
    * Reformat About Dialog
    * Add show progress per time in installer (now support by files and by time).
    * Themeable Progressbar
    * Enhance Exec Functions to return exit status and autosave buffer into variable
    * Fix glibc error in ag_close - Need workaround
    * Move ai_trim to system libs
    * Add Stretch function for png
    * Add 9 Patch drawing function for png
    * Fix Reboot Function
    * Add Alternative Touch Method
    * Add ziptotmp & restotmp
    * Add support for mxt224 touch screen (SYN_MT_REPORT event)
    * [B]BOUGENVILLE - 1.10 - BUILD 120208-13[/B]
    * Add Alternative Touch Method
    * Added New Functions
      - anisplash - ANIMATED SPLASH SCREEN
      - prop - GET PROP FROM AROMA TMP
      - zipprop - GET PROP FROM ZIP
      - resprop - GET PROP FROM AROMA RESOURCE ZIP
      - sysprop - GET RECOVERY PROP
      - property_get - GET RECOVERY PROP
      - write - WRITE STRING INTO FILESYSTEM
      - readtmpfile - READ TEMPORARY FILE AS STRINF
      - read - READ FILESYSTEM AS STRING
      - zipread - Read String From Zip
      - resread - Read Strinf From Resource
      - zipexec - Exec Program From Zip
      - resexec - Exec Program From Resource
      - run_program - Run Program/Exec
      - exec - Run Prohram/Exec
      - back - BACK TO PREVIOUS WIZARD
      - reboot - REBOOT DEVICE
    * Deprecated Funcrions
      - readfile - Will Renamed to zipread
      - readfile_aroma - Will Renamed to resread
    * Add Some Fix in Touch Up Handler
    * Prop parsing, File Handling & Zip Handling has been managed in efficient functions
    * Remove CERT.SA - Not Needed
    * Add Licence Headers in all aroma source code Apache 2.0
    * Add More Comments & Documentation in Souce Code
    * Renamed functions for fit needs
    
    * [B]ANGGREK -1.00 - BUILD:120204-011[/B]
    * Fix calibrating function not working when set in aroma-config
    * Update and fix firmware command from update-binary-installer into recovery.
    
    * [B]ANGGREK -1.00 - BUILD:120202-10[/B]
    * Improve touch handler compatibility. Now more accurate in every devices
    * Add more chars into ROM Infos from only 31 to 63max
    * Detail changelog from commit: [URL="https://github.com/amarullz/AROMA-Installer/commit/f49e2969e3b3514e180dcb15bed5a48298b19046"]10[/URL]
    
    * [B]ANGGREK -1.00 - BUILD:120201-009[/B]
    * Stride/Pitch/Padding Framebuffer support for non multiply 8 screen size like qhd on sensation and evo3d
    * Rewrite input handler, better keys & touch screen compatibility.
    * Change calibration division data from integer to float, more accurate calibrating
    * Improve fling and scrolling engine
    * Add support for all possible screen bit depth 32/24/16bit. ARGB, ABGR, RGBA, BGRA. No problem now.
    * Detail changelog from commit: [URL="https://github.com/amarullz/AROMA-Installer/commit/b9daae9151e6ec4e1054725722b6f507f621f065"]006[/URL], [URL="https://github.com/amarullz/AROMA-Installer/commit/65fdbb9a2f7c12a799f320b3759ab60d6b00d3b1"]007[/URL], [URL="https://github.com/amarullz/AROMA-Installer/commit/f49e2969e3b3514e180dcb15bed5a48298b19046"]009[/URL]
    
    [B]ANGGREK -1.00 - BUILD:120129-005[/B]
    * Remove Signature Check - Now You don't need to sign aroma-config and updater-script
    * Calibration Tool now show before anything, so you can directly do calibration. you can disabled it in aroma-config by deleting [B]calibtool("");[/B] command.
    * Fix some touch screen input handler
    * Add 229 in menu keycode (F2 used in emulator as menu key)
    
    [B]ANGGREK -1.00 - BUILD:120128-004[/B]
    * Open Source - Binary No Released
    
    [B]ANGGREK -1.00 - BUILD:120126-003[/B]
    * Refer to defy recovery source code found [URL="https://github.com/CyanogenDefy/android_device_motorola_jordan/blob/gingerbread/recovery_ui.c"]HERE[/URL] (Thanks [URL="http://xdaforums.com/showthread.php?t=1356767"]walter79[/URL] for github source code) I add some keycode into input reader : [URL="http://xdaforums.com/showpost.php?p=21826756&postcount=32"]Read Here[/URL]
    * Add confirmation if calibrated data will be used in current process (After Calibrating) - So you can try touchscreen without editing [COLOR="Green"]aroma-config[/COLOR] after you calibrate it.
    * Remove precision calculation in scrolling thread (Natural calculation but less fluid)... Feel faster now.
    * Add function for [COLOR="Green"]aroma-config[/COLOR] to define custom key code for up/down/select/back/menu, just like [COLOR="Green"]calibrate()[/COLOR] function. with format like this: [COLOR="DarkRed"]ini_set("customkeycode_up",130);[/COLOR] or [COLOR="DarkRed"]ini_set("customkeycode_select",13);[/COLOR], the keycode can be capture by [URL="http://xdaforums.com/attachment.php?attachmentid=872892&d=1327550395"]aroma-keycapture-flashable.zip[/URL]
    
    [B]ANGGREK -1.00 - BUILD:120125-002[/B]
    * Add Home & Power Button To Select Items
    * Unsigned Script Now Not Terminated Installer, but just show Alert That the script should be signed to pass install ui
    * Add More Documentation in aroma-config
    
    [B]ANGGREK -1.00 - BUILD:120124-001[/B]
    * Initial Release ( AROMA UI, AROMA Touch Handler, AROMA Markup String )
    * Customizable ( Custom Theme Colors, Customizable Fonts and Images )
    * Optimized Build ( Static, -o2, remove unused functions, remove png-write and zlib deflate functions )
    [/LEFT]

    Open Source?
    There may be some people who will ask if the project is Open Source, and the quick answer is YES. It is an Open Source Project Now.

    Why Release The Source?
    • I used some other work (modified) from the Open Source Community, especially Koush's recovery source code for getting the input mode, PNG, ZLIB, and some Framebuffer programming samples.
    • I want to make all chefs feel safe, so I guarantee that I won't make this into a money making program.
    • I got something from the community, and I want to give something back to it.

    What Benefits?
    • Rapid development
    • I can get code review & patches - Not just bug reports
    • There are many innovations that I wrote in the program that may be useful for other needs, like the AROMA Graphic Framebuffer, the AROMA UI, the Amarullz Dithering Method, and the AROMA Simple PNG Fonts. It may be used in recovery, so recovery can use the AROMA Installer Interface
    • :cool: I can learn more about Open Sourcing programs (especially the CVS and licensing things - that always drive me to the question - what is it?)

    I Need Help
    As I said before, I am just a newbie at Android Development, or even as a user. I need someone who has a lot of knowledge about Open Sourcing the software, and a lot of knowledge about licencing (I don't know much, I just tried to make my software compatible with them: GPL, Apache, etc.)...

    Thanks.
    Source Code


    TOOLS: AROMA Key Capture
    I also created "aroma-keycapture-flashable.zip" to capture the keycodes of your device (flashable in recovery - won't flash anything :cool:). And in case the keys don't work, report the keycodes in this thread, with information like this example:


    Code:
    Prev Item/Up Key = 120
    Next Item/Up Key = 110
    Select Item/Enter/Select Key = 13
    Back Key = 200
    Menu Key = 193

    To customize keycodes, open aroma-config and modify this code:
    Code:
    ##
    # Custom Key Code - Usefull For Some Device which not used
    #                   Standard key code for up/down/select/back/menu
    #
    # You can capture the keycode in
    # recovery using "aroma-keycapture-flashable.zip" Available in
    # AROMA Installer Thread.
    #
    # Press some key when it run, it will return key code,
    # that key can override up/down/select/back/menu actions in
    # AROMA Installer, you can even set your home key for up, or
    # volume down for select item
    #
    #-------- Uncomment & Modify this Code:
    #
    # ini_set("customkeycode_up",     "115");
    # ini_set("customkeycode_down",   "114");
    # ini_set("customkeycode_select", "116");
    # ini_set("customkeycode_menu",   "139");
    # ini_set("customkeycode_back",   "158");
    #
    260
    AROMA Installer Resources

    The Codenames
    AROMA Installer codename based on Alphabetical Indonesian Flower Names. Here the list of already used codename:

    ANGGREK - 1.00
    anggrek.jpg


    BOUGENVILLE - 1.10
    bougenville.jpg


    CEMPAKA - 1.60 - 1.64
    cempaka.jpg


    DAHLIA - 2.00
    dahlia.jpg


    EDELWEIS - 2.50
    edeilweis.jpg


    FLAMBOYAN - 2.70
    flamboyan.jpg



    Programming Language
    It was application which runs on Android device but not on Android OS Environment that the native applications usually use Java. AROMA Installer use C (Pure C, not C++), so it may run on another platform like x86 with small modifications ofcourse.​


    Used Libraries
    • ZLIB - ofcourse, it was the most awesome thing in computer world :good:
    • PNG
    • MinZIP
    • Freetype
    All library need to compiled as static to make sure it runs without any dependency issue in any devices.​


    Official Binary
    I Only support ARM device, but it was opensourced, so anyone can play with the source and compiled it for they own devices.


    ROM That Already Uses AROMA Installer

    MOD/THEMES Uses AROMA Installer
    3rd Party AROMA Installer Resources



    If you release the ROM with AROMA Installer, please inform me here, I will add your ROM in this post.​

    Thanks for Donators


    Thanks To
    • Sebastiaan15 - For using and test it for the first time
    • avss - For helping me to make it works in sgs2 and many samsung devices
    • DemonWav - For helping grammar in the thread, Testing and give many great ideas.
    • -viperboy- - For intensively testing & feedback the touch screen in EVO3D CDMA
    • baadnwz - For Testing the touch input in sensation
    • capychimp - For Testing Display
    • Prof Peach - For helping and testing
    • V6-Maniac - Creating Video
    208
    About AROMA Installer

    Background
    Android has an advanced system for installing the OS and updates, unlike other mobile OS's that distribute the contents of the OS in static ROM image(s), Android distributes the OS and updates in a plain .zip file that contains all of the packages, files, and the updater for processing the installation.

    The updater splits in 2 types, the binary (update-binary) and script (updater-script), while the binary is an executable file, and the script was a configuration script that tells the binary executable what to do.

    But this advanced technology never expanded into its highest potential ability. The update-binary was simply the linux executable wrote in C that runs in root mode, and can do anything to your system; including accessing the Display FrameBuffer, accessing keys and the touch screen, set vibrate, run programs, parse files, load png(s) and .zip's, and read and write to the filesystem.

    The old update-binary only supported a few functions that can controlled only by the updater-script to instal the files. It didn't have a single function that allowed the installer to interact with the user. There is a program called "yesno" that shows a "Yes" or "No" interface, but it wasn't enough to create a more customizable updater.

    Now with AROMA Installer update-binary, all of this limitation is gone, and this advanced technology is expanded to the highest level of its pontential.


    What is AROMA Installer
    "AROMA" was taken from Bahasa Indonesia (Indonesian Language) and it means "Scent", but it is also an abbreviation of "AMARULLZ ANDROID ROM MANIFESTATION". It is an advanced update-binary for Android that contains many features like Wizard Installation, Touch User Interface (AROMA UI), Customizable Packages, System Inspecting, Themeable, and User Interactive. All release versions will have "flower" codenames, for example, the 1st version is codenamed "Anggrek", which mean "Orchid".​


    How AROMA Installer Works
    How can it work in recovery mode, and how can it so smooth when it scrolls? It works because I hired Chuck Norris to force the recovery to run the installer, and the phone is too afraid to show any lag :cool:.

    No, seriously, when the user selects the .zip file to install it, the recovery will extract the update-binary and run it with a few arguments. All processes are handled by the update-binary, and the recovery will only show the information passed by update-binary via a custom pipe. The great thing is that the update-binary can do anything if we can code it in C/C++, but not all people can easily play with C/C++. Its also not very effective or fun to compile it every time we need to change the process. That's why the custom script is used in AROMA Installer, it is simply edify scripting that is used as the normal updater-script, but with expanded functions available.

    It wasn't a simple thing to archive something like this, because the update-binary is simply the "linux executable" that doesn't even support dynamic links of libraries, basic drawing functions like drawrect, drawline, and I don't think it OpenGL can be included in it's binary. It runs on it's own. Even User Interface was wrote from scratch to manipulate directly into the display framebuffer, user input was read directly from the raw kernel input device, png and .zip was read with a static link library, and the configuration was parsed in it's own program. It is the result of one full month of developing, but you can learn it instantly, without any need to know how to manage memory usage and pointers.

    The AROMA Installer will read, parse, and run the script commands to show it's UI, calculate partition sizes, create, read, and write temporary prop files, set & get variables, do simple integer comparisons and math sequences, do the if else or inline if conditions, configure the UI color scheme, configure rom information, and much more.

    Because it was very complicated and needed a lot of time to develope, did I earn some reason to get donations?.​

    Flowchart How It Works

    more at amarullz.com [+]​
    164
    Functions Reference

    CONFIGURATION FUNCTIONS

    setcolor

    Descriptions:
    Set AROMA Installer Color Scheme. It can also defined in themes with theme.prop file
    Sintax:

    void setcolor(colorname, hexcolor);
    Parameters:
    • colorname - Name of color to be set. colorname with "_g" for gradient color.
      • winbg, winbg_g : Main/Top Most Window Backgroud
      • winfg : Main/Top Most Window Text Foreground
      • winfg_gray : Main/Top Most Window Gray Text Foreground
      • dialogbg, dialogbg_g : Popup Window Backgroud (Alert, Confirm, About)
      • dialogfg : Popup Window Text Foreground
      • textbg, textbg_g : Textbox, Checkbox, and any scrollable UI Background
      • textfg : Textbox, Checkbox, and any scrollable UI Text Foreground
      • textfg_gray : Gray Text ( on Optionbox/Checkbox Item Description )
      • controlbg, controlbg_g : Control / Button / Checkbox border - Background Color
      • controlfg : Button Text Color
      • selectbg, selectbg_g : Selected Element Background ( Pushed/focused Button/items, etc )
      • selectfg : Selected Element Text/Foreground Color
      • titlebg, titlebg_g : Window Title Background
      • titlefg : Window Title Text Foreground Color
      • navbg, navbg_g : Bottom Bar (Navigation Bar) Background. Next-Previous Area
      • scrollbar : Scrollbar indicator color
      • border, border_g : Common Border Color
      • progressglow : Progress Animation Color
    • hexcolor - Hexadecimal Color in RGB. it support 3 and 6 characters hexadecimal started with #. example: "#a8e" or "#ff5599".
    Return Value: none
    Examples:
    Code:
    # Set Color with 3 chars hexcolor
    setcolor("winbg", "#444");
    setcolor("winbg_g", "#222");
    setcolor("textbg", "#333");
    setcolor("textfg", "#fff");
    
    # Set Color with 6 chars hexcolor
    setcolor("textfg_gray", "#bbbbbb");
    setcolor("controlbg", "#446699");
    setcolor("controlbg_g", "#223355");

    ini_set

    Descriptions:
    Sets the value of a AROMA Installer configuration option
    Sintax:

    void setcolor(configname, newvalue);

    Parameters:
    • configname - Configuration name to be set.
      • roundsize : Set Corner size of rounded rectangle for common controls (default:"3")
      • button_roundsize: Set Corner size of rounded rectangle for button controls (default:"2")
      • window_roundsize : Set Corner size of rounded rectangle for main window (default:"4")
      • transition_frame : Set number of frames for transition (default:"5")
      • text_ok : Set text for common OK text (default:"OK")
      • text_next : Set text for wizard next button (default:"Next >")
      • text_back : Set text for wizard back button (default:"< Back")
      • text_yes : Set text for default yes button (default:"Yes")
      • text_no : Set text for default no button (default:"No")
      • text_about : Set text for About menu (default:"About & Informations")
      • text_calibrating : Set text for Calibration Menu (default:"Calibrating Tools")
      • text_quit : Set text for Quit Menu (default:"Quit Installation")
      • text_quit_msg : Set text for Quit Confirmation Message (default:"Are you sure to quit the Installer?")
      • rom_name : Set ROM Name Information
      • rom_version : Set ROM Version Information
      • rom_author : Set ROM Author Information
      • rom_device : Set ROM Device Information
      • customkeycode_up : Set Alternative keycode for up key (navigate up)
      • customkeycode_down : Set Alternative keycode for down key (navigate down)
      • customkeycode_select : Set Alternative keycode for select key (select an item)
      • customkeycode_back : Set Alternative keycode for back key
      • customkeycode_menu : Set Alternative keycode for menu key
    • newvalue - New value to be set for configname
    Return Value: none
    Examples:
    Code:
    # Set ROM Informations
    ini_set("rom_name", "AROMA ROM");
    ini_set("rom_version", "1.0");
    ini_set("rom_author", "amarullz");
    ini_set("rom_device", "HTC Desire (bravo)");
    
    # Set Custom Text
    ini_set("text_ok", "OK Man");
    ini_set("text_next", ">>");
    ini_set("text_back", "<<");
    
    # Set Alternative Key Code - You can use keycapture tool
    # to capture your device keycode
    ini_set("customkeycode_up", "115");
    ini_set("customkeycode_down", "114");
    ini_set("customkeycode_select", "116");
    ini_set("customkeycode_menu", "229");
    ini_set("customkeycode_back", "158");

    calibrate

    Descriptions:
    Set Touch Screen Calibration Data. Different device may had different touch screen calibration data. To get calibration data, press menu, select calibration tools then follow the intructions.
    Sintax:

    void calibrate(divx, addx, divy, addy [, alternative_method]);
    Parameters:
    • divx - Division value for horizontal touchscreen to display resolution.
    • addx - Add value for horizontal alignment.
    • divy - Division value for vertical touchscreen to display resolution.
    • addy - Add value for vertical alignment.
    • alternative_method [Optional] - Use alternative method for touch screen handling if normal method not works in your device (default:"no")
    Return Value: none
    Examples:
    Code:
    # HTC Desire Calibrated Data
    calibrate("7.90","20","7.90","20");
    
    # Alternative method Calibrated Data
    calibration("1.8447", "37", "1.2158", "27", "yes");


    calibtool

    Descriptions:
    Start calibration tool.
    Sintax:

    void calibtool(dummy_arguments);
    Parameters:
    • dummy_arguments - Edify should pass at least 1 arguments. Just Pass "" for it
    Return Value: none
    Examples:
    Code:
    # Start Calibrating Tools
    calibtool("");

    theme

    Descriptions:
    Set AROMA Installer Theme will be used in next display.
    Sintax:

    void theme(theme_name);
    Parameters:
    • theme_name - Theme Name will be used. It was theme directory name located in "META-INF/com/google/android/aroma/themes"
    Return Value: none
    Examples:
    Code:
    # Use ICS Theme located at:
    # META-INF/com/google/android/aroma/themes/ics
    theme("ics");

    VARIABLE FUNCTIONS

    getvar

    Descriptions:
    Get Variable
    Sintax:

    variable_value getvar(varname);
    Parameters:
    • varname - Variable Name
    Return Value: Variable Value
    Examples:
    Code:
    # Show "testvar" value in alert
    alert(
     "Value of testvar",
     getvar("testvar")
    );

    setvar

    Descriptions:
    Set Variable
    Sintax:

    void setvar(varname, value);
    Parameters:
    • varname - Variable Name to be set
    • value - New Value for Variable
    Return Value: none
    Examples:
    Code:
    # Set new value for "testvar"
    setvar("testvar", "This is only test!!");
    
    # Now Show the "testvar" value in alert
    alert(
     "Value of testvar",
     getvar("testvar")
    );

    appendvar

    Descriptions:
    Append new value after previous value, it's like concating strings ( previous_value + newvalue )
    Sintax:

    void appendvar(varname, value);
    Parameters:
    • varname - Variable Name to be set
    • value - New Value to be appended in variable
    Return Value: none
    Examples:
    Code:
    # Set new value for "testvar"
    setvar("testvar", "This is only test!!");
    
    # Append new value
    appendvar("testvar", "Add String");
    
    # "testvar" now will contain "This is only test!!Add String"

    prependvar

    Descriptions:
    Prepend new value before previous value, it's like concating strings ( newvalue + previous_value )
    Sintax:

    void prependvar(varname, value);
    Parameters:
    • varname - Variable Name to be set
    • value - New Value to be prepended in variable
    Return Value: none
    Examples:
    Code:
    # Set new value for "testvar"
    setvar("testvar", "This is only test!!");
    
    # Prepend new value
    prependvar("testvar", "Add String!! ");
    
    # "testvar" now will contain "Add String!! This is only test!!"

    PROP FILE HANDLER FUNCTIONS

    file_getprop

    Descriptions:
    Read prop file value for given keyname
    Sintax:

    prop_value file_getprop(filename, keyname);
    Parameters:
    • filename - Absolute path of prop file in filesystem
    • keyname - Prop Key Name
    Return Value: Value of prop for given keyname
    Examples:
    Code:
    # Get value of "item.1.1" from /tmp/aroma-data/custom.prop
    alert(
     "Value of Prop",
     file_getprop("/tmp/aroma-data/custom.prop", "item.1.1")
    );

    prop

    Descriptions:
    Same with file_getprop, but will read relatively from AROMA Temporary Directory "/tmp/aroma-data/"
    Sintax:

    prop_value prop(filename, keyname);
    Parameters:
    • filename - Relative path of prop file in AROMA Temporary Directory "/tmp/aroma-data/"
    • keyname - Prop Key Name
    Return Value: Value of prop for given keyname
    Examples:
    Code:
    # Get value of "item.1.1" from /tmp/aroma-data/custom.prop
    alert(
     "Value of Prop",
     prop("custom.prop", "item.1.1")
    );

    zipprop

    Descriptions:
    Same with file_getprop, but will read the prop file from Zip
    Sintax:

    prop_value zipprop(zip_path, keyname);
    Parameters:
    • zip_path - Absolute path of prop file in Zip ( don't add "/" in first character )
    • keyname - Prop Key Name
    Return Value: Value of prop for given keyname
    Examples:
    Code:
    # Get value of "item.1.1" from META-INF/com/google/android/aroma/custom.prop
    alert(
     "Value of Prop",
     zipprop("META-INF/com/google/android/aroma/custom.prop", "item.1.1")
    );

    resprop

    Descriptions:
    Same with zipprop, but will read the prop file from Zip relatively from AROMA Resource Directory "META-INF/com/google/android/aroma/"
    Sintax:

    prop_value resprop(zip_path, keyname);
    Parameters:
    • zip_path - Relative path of prop file in Zip from AROMA Resource Directory "META-INF/com/google/android/aroma/"
    • keyname - Prop Key Name
    Return Value: Value of prop for given keyname
    Examples:
    Code:
    # Get value of "item.1.1" from META-INF/com/google/android/aroma/custom.prop
    alert(
     "Value of Prop",
     resprop("custom.prop", "item.1.1")
    );

    sysprop, property_get

    Descriptions:
    Read system property value for given keyname
    Sintax:

    prop_value property_get(keyname);

    prop_value sysprop(keyname);
    Parameters:
    • keyname - Prop Key Name
    Return Value: Value of prop for given keyname
    Examples:
    Code:
    # Get Device Board Name
    alert(
     "Device Board Name",
     sysprop("ro.product.board")
    );
    
    # Get Board Platform
    alert(
     "Device Board Name",
     property_get("ro.board.platform")
    );

    FILESYSTEM FUNCTIONS

    writetmpfile

    Descriptions:
    Write string into file in AROMA temporary
    Sintax:

    void writetmpfile(filename, value);
    Parameters:
    • filename - Destination file in AROMA temporary directory
    • value - String that will be write into the file
    Return Value: none
    Examples:
    Code:
    # It will saved in from /tmp/aroma-data/test.txt
    writetmpfile("test.txt", "This is test text");
    
    # Show the content in alert with readtmpfile
    alert(
     "Value of test.txt",
     readtmpfile("test.txt")
    );
    
    # Show the content in alert with read
    alert(
     "Value of test.txt",
     read("/tmp/aroma-data/test.txt")
    );

    write

    Descriptions:
    Write string into file in filesystem
    Sintax:

    void write(filename, value);
    Parameters:
    • filename - Absolute path to Destination file
    • value - String that will be write into the file
    Return Value: none
    Examples:
    Code:
    # It will saved in from /sdcard/test.txt
    writetmpfile("/sdcard/test.txt", "This is test text");
    
    # Show the content in alert with read
    alert(
     "Value of test.txt",
     read("/sdcard/test.txt")
    );

    readtmpfile

    Descriptions:
    Read string from file in AROMA temporary directory
    Sintax:

    content_of_file readtmpfile(filename);
    Parameters:
    • filename - File in AROMA temporary directory that will be readed
    Return Value: Content of file in String
    Examples:
    Code:
    # It will read data from /tmp/aroma-data/test.txt
    # then save it in variable
    setvar(
     "testvar",
     readtmpfile("test.txt")
    );

    read

    Descriptions:
    Read string from file in filesysten
    Sintax:

    content_of_file read(filename);
    Parameters:
    • filename - Absolute path to Destination file that will be readed
    Return Value: Content of file in String
    Examples:
    Code:
    # It will read data from /sdcard/test.txt
    # then save it in variable
    setvar(
     "testvar",
     read("/sdcard/test.txt")
    );

    ZIP CONTENT HANDLING FUNCTIONS

    readfile

    DEPRECATED!!! - Identical with zipread. Will be deleted soon.

    readfile_aroma

    DEPRECATED!!! - Identical with resread. Will be deleted soon.

    zipread

    Descriptions:
    Read string from file in zip
    Sintax:

    content_of_file zipread(zip_path);
    Parameters:
    • zip_path - Absolute path to Destination file in zip that will be readed
    Return Value: Content of file in String
    Examples:
    Code:
    # It will read data from zip content "META-INF/com/google/android/aroma/text.txt"
    # then save it in variable
    setvar(
     "testvar",
     zipread("META-INF/com/google/android/aroma/text.txt")
    );
    
    # It will read data from zip content "tmp/text.txt"
    # then save it in variable
    setvar(
     "testvar2",
     zipread("tmp/text.txt")
    );

    resread

    Descriptions:
    Read string from file in zip relatively from AROMA Resource Directory "META-INF/com/google/android/aroma/"
    Sintax:

    content_of_file resread(zip_path);
    Parameters:
    • zip_path - Relative path of file in Zip from AROMA Resource Directory "META-INF/com/google/android/aroma/" that will be readed
    Return Value: Content of file in String
    Examples:
    Code:
    # It will read data from zip content "META-INF/com/google/android/aroma/text.txt"
    # then save it in variable
    setvar(
     "testvar",
     resread("text.txt")
    );


    ZIP EXTRACT FUNCTIONS

    ziptotmp

    Descriptions:
    Extract file from zip content into AROMA Temporary directory, and automatically chmod it for executable.
    Sintax:

    void ziptotmp(zip_path, destination_name);
    Parameters:
    • zip_path - Absolute path to Destination file in zip that will be extracted
    • destination_name - Extracted target filename
    Return Value: none
    Examples:
    Code:
    # It will extract "tmp/busybox" into "/tmp/aroma-data/busybox"
    ziptotmp("tmp/busybox", "busybox");
    
    # Now we can execute it
    exec("/tmp/aroma-data/busybox","ls","-l");

    restotmp

    Descriptions:
    Extract file from zip content in AROMA Resource Directory "META-INF/com/google/android/aroma/" into AROMA Temporary directory, and automatically chmod it for executable.
    Sintax:

    void restotmp(zip_path, destination_name);
    Parameters:
    • zip_path - Relative path of file in Zip from AROMA Resource Directory "META-INF/com/google/android/aroma/" that will be extracted
    • destination_name - Extracted target filename
    Return Value: none
    Examples:
    Code:
    # It will extract "META-INF/com/google/android/aroma/busybox" into "/tmp/aroma-data/busybox"
    restotmp("busybox", "busybox");
    
    # Now we can execute it
    exec("/tmp/aroma-data/busybox","ls","-l");

    EXEC FUNCTIONS

    zipexec

    Descriptions:
    Extract file from zip into AROMA temporary, chmod it, and execute it.
    Sintax:

    exit_status zipexec(zip_path [, argument1, argument2, ... ]);
    Parameters:
    • zip_path - Absolute path of zip content that will be executed
    • arguments [Optional] - Command line Arguments
    Return Value: Return exit status. "0" for common success status
    The output buffer/stdout will be automatically saved into "exec_buffer"
    Examples:
    Code:
    # It will extract and run "META-INF/com/google/android/aroma/test.sh"
    zipexec("META-INF/com/google/android/aroma/test.sh");
    
    # With Arguments
    zipexec("META-INF/com/google/android/aroma/test.sh", "argument1", "argument2");
    
    # Get Return Status
    if
     zipexec("META-INF/com/google/android/aroma/test.sh") == "0"
    then
     alert(
     "Exec Status",
     "Shell was executed successfully"
     );
    endif;
    
    # Get STDOUT
    zipexec("META-INF/com/google/android/aroma/test.sh");
    alert(
     "Exec STDOUT",
     getvar("exec_buffer")
     );

    resexec

    Descriptions:
    Same as zipexec, but it will extract and run the file from zip relatively from AROMA Resource Directory "META-INF/com/google/android/aroma"
    Sintax:

    exit_status resexec(zip_path [, argument1, argument2, ... ]);
    Parameters:
    • zip_path - Relative path of zip content from AROMA Resource Directory "META-INF/com/google/android/aroma/" that will be executed
    • arguments [Optional] - Command line Arguments
    Return Value: Return exit status. "0" for common success status
    The output buffer/stdout will be automatically saved into "exec_buffer"
    Examples:
    Code:
    # It will extract and run "META-INF/com/google/android/aroma/test.sh"
    resexec("test.sh");
    
    # With Arguments
    resexec("test.sh", "argument1", "argument2");
    
    # Get Return Status
    if
     resexec("test.sh") == "0"
    then
     alert(
     "Exec Status",
     "Shell was executed successfully"
     );
    endif;
    
    # Get STDOUT
    resexec("test.sh");
    alert(
     "Exec STDOUT",
     getvar("exec_buffer")
     );


    run_program, exec

    Descriptions:
    Run executable from filesystem
    Sintax:

    exit_status run_program(path [, argument1, argument2, ... ]);
    exit_status exec(path [, argument1, argument2, ... ]);
    Parameters:
    • zip_path - Absolute path to executable
    • arguments [Optional] - Command line Arguments
    Return Value: Return exit status. "0" for common success status
    The output buffer/stdout will be automatically saved into "exec_buffer"
    Examples:
    Code:
    # It will run "ls" command
    run_program("/sbin/ls");
    
    # or
    exec("/sbin/ls");
    
    # With some Arguments
    run_program("/sbin/ls", "-l", "/sdcard");
    
    # Mounting Device
    exec("/sbin/mount", "-t", "auto", "/system");
    
    # Get Return Status
    if
     exec("/sbin/mount", "-t", "auto", "/system") == "0"
    then
     alert(
     "Exec Status",
     "Mount was executed successfully"
     );
    endif;
    
    # Get STDOUT
    exec("/sbin/ls", "-l", "/sdcard/*.zip");
    alert(
     "List of Zip in SDCARD",
     getvar("exec_buffer")
     );