AndyFox2012

appackage-aroma-config

Jan 25th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. ##
  2. #
  3. # AROMA Installer - Team Venom
  4. # (c) 2011 by Ahmad Amarullah
  5. # amarullz - xda-developers
  6. # http://www.amarullz.com/
  7. # Version 2.56
  8. #
  9. ##
  10.  
  11. ini_set("rom_name", "CyanMobile");
  12. ini_set("rom_version", "Build28113");
  13. ini_set("rom_author", "AndyFox2011");
  14. ini_set("rom_device", "HTC Desire HD/Inspire 4G");
  15.  
  16. splash(4000, "splash");
  17. theme("ics");
  18.  
  19. viewbox(
  20. "Welcome",
  21. "\n\n\n\n\n"+
  22. "You're about to flash\n"+
  23. ini_get("rom_name") + " by " + ini_get("rom_author") +
  24. "\n\n\n"+
  25. " Version: <#080>" + ini_get("rom_version") + "</#>\n"+
  26. " Device: <#080>" + ini_get("rom_device") + "</#>\n\n\n"+
  27. "Press Next to continue the evolution...",
  28. "icons/info"
  29. );
  30.  
  31. textbox(
  32. "Changelog",
  33. "ROM Changelog",
  34. "icons/info",
  35. readfile_aroma("changelogs.txt")
  36. );
  37.  
  38. agreebox(
  39. "Terms Of Use",
  40. "Please read the Terms of Use ...",
  41. "icons/agreement",
  42. readfile_aroma("agreement.txt"),
  43. "I agree with this Terms Of Use...",
  44. "Please check the agreement..."
  45. );
  46.  
  47. checkbox(
  48. "Remove Apps",
  49. "Check the ones you want to uninstall",
  50. "icons/personalize",
  51. "remove.prop",
  52.  
  53. "Facebook", "", 0,
  54. "Twitter", "", 0,
  55. "HoloLauncher", "", 0,
  56. "Seeder", "", 0,
  57. "3Music", "", 0,
  58. "Firefox", "", 0,
  59. "Dropbox", "", 0
  60. );
  61.  
  62. checkbox(
  63. "Select Mods",
  64. "Check the ones you want to uninstall",
  65. "icons/personalize",
  66. "mods.prop",
  67.  
  68. "Inspire 4G patch", "Please choose if you have an Inspire 4G", 0
  69. );
  70.  
  71.  
  72. install(
  73. "Installing",
  74. "Installing CyanMobile \nPlease wait...",
  75. "icons/install"
  76. );
  77.  
  78.  
  79. # Set Next Text fo Finish
  80. ini_set("text_next", "Finish");
  81.  
  82. viewbox(
  83. "Installation Completed",
  84. "<#080>Congratulation...</#>\n\n"+
  85. ini_get("rom_name") + " " + ini_get("rom_version") + " has been installed successfully.\n\n"+
  86. "Enjoy! :D",
  87. "icons/info"
  88. );
Advertisement
Add Comment
Please, Sign In to add comment