├── .gitignore ├── README.md ├── build.xml ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── project.properties └── project.xml └── src └── flashablezipcreator ├── 1549450_687091887991785_1258867375_n.jpg ├── 2359723.jpg ├── AFZC.png ├── Adb ├── Adb.java └── Package.java ├── Core ├── DeleteNode.java ├── FileNode.java ├── FileSystemModel.java ├── FolderNode.java ├── GroupNode.java ├── MyCellEditor.java ├── MyPopup.java ├── MyTransferHandler.java ├── MyTreeModelListener.java ├── NodeProperties.java ├── NodeRenderer.java ├── ProjectItemNode.java ├── ProjectMouseAdapter.java ├── ProjectNode.java ├── ProjectTree.java ├── ProjectTreeBuilder.java ├── ProjectTreeModel.java └── SubGroupNode.java ├── DiskOperations ├── Read.java ├── ReadZip.java ├── Write.java └── WriteZip.java ├── FlashableZipCreator.java ├── Gapps ├── Gapps.java └── Pico.java ├── META-INF └── com │ └── google │ └── android │ ├── EDELWEIS │ ├── FLAMBOYAN │ ├── Instructions │ ├── MELATI │ ├── Supported Devices │ ├── addon │ ├── afzc │ ├── aroma │ ├── Terms and Conditions.txt │ ├── custombox_test.edify │ ├── exec_demo │ │ ├── displaycapture │ │ ├── exec_demo1.sh │ │ ├── exec_demo2.sh │ │ └── sleep │ ├── fonts │ │ ├── big.png │ │ └── small.png │ ├── icons │ │ ├── agreement.png │ │ ├── alert.png │ │ ├── apps.png │ │ ├── back.png │ │ ├── confirm.png │ │ ├── customize.png │ │ ├── default.png │ │ ├── finish.png │ │ ├── info.png │ │ ├── install.png │ │ ├── installbutton.png │ │ ├── license.png │ │ ├── menu.png │ │ ├── next.png │ │ ├── personalize.png │ │ ├── update.png │ │ └── welcome.png │ ├── langs │ │ ├── ar.lang │ │ ├── cn.lang │ │ ├── de.lang │ │ ├── en.lang │ │ ├── es.lang │ │ ├── fr.lang │ │ ├── he.lang │ │ ├── id.lang │ │ ├── it.lang │ │ ├── ja.lang │ │ └── ru.lang │ ├── language_select.edify │ ├── splash │ │ ├── AFZC.png │ │ ├── a1.png │ │ ├── a2.png │ │ ├── a3.png │ │ ├── a4.png │ │ ├── a5.png │ │ └── a6.png │ ├── themes │ │ ├── Ics │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── desktop.ini │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.9.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── Miui │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_sel.png │ │ │ ├── cb_sel.png │ │ │ ├── desktop.ini │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── nav.9.png │ │ │ ├── radio.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_sel.png │ │ │ ├── radio_sel.png │ │ │ ├── select.9.png │ │ │ ├── select_push.9.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── Miui4 │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── desktop.ini │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── Miui6 │ │ │ ├── Thumbs.db │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.exit.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.installgapps.png │ │ │ ├── icon.installmods.png │ │ │ ├── icon.installrom.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.reboot.png │ │ │ ├── icon.recovery.png │ │ │ ├── icon.recyclebin.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── radio.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_sel.png │ │ │ ├── radio_sel.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── Nikhil │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.cd.png │ │ │ ├── icon.changelog.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.folder.png │ │ │ ├── icon.google.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.install2.png │ │ │ ├── icon.license.png │ │ │ ├── icon.lockring.png │ │ │ ├── icon.memory.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.mods.png │ │ │ ├── icon.next.png │ │ │ ├── icon.package.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.positive.png │ │ │ ├── icon.reboot.png │ │ │ ├── icon.recovery.png │ │ │ ├── icon.recyclebin.png │ │ │ ├── icon.reset.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ └── RedBlack │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── desktop.ini │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.exit.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.installbutton.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.modem.png │ │ │ ├── icon.next.png │ │ │ ├── icon.paypal.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.reboot.png │ │ │ ├── icon.recovery.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ ├── ttf │ │ ├── DroidSans.ttf │ │ ├── DroidSansArabic.ttf │ │ ├── DroidSansFallback.ttf │ │ └── Roboto-Regular.ttf │ └── unicode │ │ ├── chinesse.txt │ │ └── russian_latin.txt │ └── universal-update-binary ├── Operations ├── AdbOperations.java ├── AromaScriptOperations.java ├── DeviceOperations.java ├── JarOperations.java ├── MyFileFilter.java ├── ProjectOperations.java ├── TreeOperations.java ├── UpdateBinaryOperations.java ├── UpdaterScriptOperations.java └── XmlOperations.java ├── Protocols ├── AromaConfig.java ├── Binary.java ├── Commands.java ├── Control.java ├── Device.java ├── Export.java ├── FtpUrlUpload.java ├── GetNetworkAddress.java ├── Identify.java ├── Import.java ├── Jar.java ├── Logs.java ├── Mod.java ├── PreferenceProperties.java ├── Project.java ├── Script.java ├── Types.java ├── Update.java ├── UpdateBinary.java ├── UpdaterScript.java ├── Web.java ├── WinRegistryAccess.java ├── WindowsCommandRetriever.java └── Xml.java ├── Supported Devices ├── Thumbs.db ├── Update ├── ChangeLogBeta ├── ChangeLogStable ├── ChangeLogTest ├── Control ├── DownloadLatestBetaVersion ├── DownloadLatestStableVersion ├── DownloadLatestTestVersion ├── LatestBetaVersion ├── LatestStableVersion ├── LatestTestVersion └── UpcomingFeatures ├── UserInterface ├── About.java ├── AboutUI.form ├── AboutUI.java ├── AdbUI.form ├── AdbUI.java ├── AddGroup.java ├── AddGroupNameUI.form ├── AddGroupNameUI.java ├── AddGroupUI.form ├── AddGroupUI.java ├── AddProjectNameUI.form ├── AddProjectNameUI.java ├── CircularProgressBar.java ├── Delete.java ├── DeleteUI.form ├── DeleteUI.java ├── DeviceConnectUI.form ├── DeviceConnectUI.java ├── FilterList.java ├── FilterListUI.form ├── FilterListUI.java ├── ImportZip.java ├── ImportZipUI.form ├── ImportZipUI.java ├── Instructions.java ├── InstructionsUI.form ├── InstructionsUI.java ├── JTreeDemo.form ├── JTreeDemo.java ├── MyTree.java ├── MyTree1.java ├── MyTreeUI.form ├── MyTreeUI.java ├── PHTextField.java ├── Preference.java ├── PreferenceUI.form ├── PreferenceUI.java ├── Preferences.java ├── PreferencesUI.form ├── PreferencesUI.java ├── ProgressBarUI.form └── ProgressBarUI.java └── res ├── 1412847978411.png ├── Actions-document-edit-icon.png ├── Documents-icon.png ├── Thumbs.db ├── WinRAR-icon.png ├── Winrar.png ├── alarm.png ├── apk-file-format.png ├── apk.png ├── apk_big.png ├── bootanimation.png ├── bootanimations.png ├── bootgroup.png ├── bootsubgroup.png ├── dark_folder_music.png ├── data.png ├── datagroup.png ├── dll.png ├── file.png ├── folder.png ├── folder_root.png ├── folderopened_yellow.png ├── font.png ├── fontfile.png ├── fonts.png ├── fontsfile.png ├── fontsgroup.png ├── fontsubgroup.png ├── kernalsubgroup.png ├── kernel.png ├── kernelgroup.png ├── kernels.png ├── logo.png ├── logo2.png ├── logo3.png ├── logo4.png ├── music.png ├── musicfile.png ├── musicgroup.png ├── notification.png ├── project.png ├── project1.png ├── project2.png ├── projects.png ├── prop-icon.png ├── ringtone.png ├── root.png ├── rootNode.png ├── rsz_11412847978411.png ├── rsz_1rsz_11412847978411.png ├── system.png ├── systemgroup.png ├── text.png ├── theme-group.png ├── theme-project.png ├── theme.png ├── themes.png ├── tree_diagramm.png └── ui.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Mobile Tools for Java (J2ME) 4 | .mtj.tmp/ 5 | 6 | # Package Files # 7 | *.jar 8 | *.war 9 | *.ear 10 | 11 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 12 | hs_err_pid* 13 | /FlashableZipCreator/nbproject/private/ 14 | /nbproject/private/ 15 | /build/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FlashableZipCreator v4.0 2 | This is v4.0 of android flashable zip creator project which is used to create zip files that can be flashed in rooted android phones. 3 | -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=baf7a3b7 2 | build.xml.script.CRC32=1080cd17 3 | build.xml.stylesheet.CRC32=8064a381@1.79.1.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=baf7a3b7 7 | nbproject/build-impl.xml.script.CRC32=ad83e017 8 | nbproject/build-impl.xml.stylesheet.CRC32=05530350@1.79.1.48 9 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.test.classpath=\ 22 | ${run.test.classpath} 23 | # Files in build.classes.dir which should be excluded from distribution jar 24 | dist.archive.excludes= 25 | # This directory is removed when the project is cleaned: 26 | dist.dir=dist 27 | dist.jar=${dist.dir}/FlashableZipCreator.jar 28 | dist.javadoc.dir=${dist.dir}/javadoc 29 | excludes= 30 | includes=** 31 | jar.compress=false 32 | javac.classpath= 33 | # Space-separated list of extra javac options 34 | javac.compilerargs= 35 | javac.deprecation=false 36 | javac.external.vm=true 37 | javac.processorpath=\ 38 | ${javac.classpath} 39 | javac.source=1.8 40 | javac.target=1.8 41 | javac.test.classpath=\ 42 | ${javac.classpath}:\ 43 | ${build.classes.dir} 44 | javac.test.processorpath=\ 45 | ${javac.test.classpath} 46 | javadoc.additionalparam= 47 | javadoc.author=false 48 | javadoc.encoding=${source.encoding} 49 | javadoc.noindex=false 50 | javadoc.nonavbar=false 51 | javadoc.notree=false 52 | javadoc.private=false 53 | javadoc.splitindex=true 54 | javadoc.use=true 55 | javadoc.version=false 56 | javadoc.windowtitle= 57 | main.class=flashablezipcreator.FlashableZipCreator 58 | manifest.file=manifest.mf 59 | meta.inf.dir=${src.dir}/META-INF 60 | mkdist.disabled=false 61 | platform.active=default_platform 62 | run.classpath=\ 63 | ${javac.classpath}:\ 64 | ${build.classes.dir} 65 | # Space-separated list of JVM arguments used when running the project. 66 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 67 | # To set system properties for unit tests define test-sys-prop.name=value: 68 | run.jvmargs= 69 | run.test.classpath=\ 70 | ${javac.test.classpath}:\ 71 | ${build.test.classes.dir} 72 | source.encoding=UTF-8 73 | src.dir=src 74 | test.src.dir=test 75 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | FlashableZipCreator 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/flashablezipcreator/1549450_687091887991785_1258867375_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/1549450_687091887991785_1258867375_n.jpg -------------------------------------------------------------------------------- /src/flashablezipcreator/2359723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/2359723.jpg -------------------------------------------------------------------------------- /src/flashablezipcreator/AFZC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/AFZC.png -------------------------------------------------------------------------------- /src/flashablezipcreator/Adb/Adb.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Adb; 7 | 8 | import flashablezipcreator.Core.FileNode; 9 | import flashablezipcreator.Core.ProjectItemNode; 10 | import flashablezipcreator.Gapps.Gapps; 11 | import flashablezipcreator.Operations.AdbOperations; 12 | import java.util.ArrayList; 13 | import javax.swing.JDialog; 14 | 15 | /** 16 | * 17 | * @author Nikhil 18 | */ 19 | public class Adb { 20 | 21 | public JDialog dialog; 22 | public static String deviceName = "My Device"; 23 | public static ArrayList filteredPartitionPath = new ArrayList<>(); 24 | public static ArrayList filteredFilePath = new ArrayList<>(); 25 | public static boolean filteredFileInclude = true; 26 | public static int index = 0; 27 | 28 | static AdbOperations adbOp = new AdbOperations(); 29 | 30 | public static String logs = ""; 31 | 32 | public Adb() { 33 | 34 | } 35 | 36 | public static ArrayList runProcess(boolean isWin, boolean wait, String... command) { 37 | return adbOp.runProcess(isWin, wait, command); 38 | } 39 | 40 | public void importGapps(ProjectItemNode parent) { 41 | new Thread(() -> { 42 | ArrayList packages = Gapps.getPackage(parent.prop.modType); 43 | if (packages.size() > 0) { 44 | adbOp.importPackages(packages, parent); 45 | } 46 | }).start(); 47 | } 48 | 49 | public void checkForUpdate(ProjectItemNode parent) { 50 | new Thread(() -> { 51 | adbOp.checkForUpdate(parent); 52 | }).start(); 53 | } 54 | 55 | public void importPackage(FileNode file, String packageName, ProjectItemNode parent, float startFileIndex, float maxFileIndex) { 56 | adbOp.importPackage(file, packageName, parent, startFileIndex, maxFileIndex); 57 | } 58 | 59 | public void importFiles(ProjectItemNode parent) { 60 | adbOp.importFiles(parent); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/DeleteNode.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Core; 7 | 8 | import flashablezipcreator.Protocols.Types; 9 | 10 | /** 11 | * 12 | * @author Nikhil 13 | */ 14 | public class DeleteNode extends ProjectItemNode { 15 | 16 | public String zipPath = ""; 17 | 18 | public DeleteNode(String title, GroupNode parent) { 19 | super(title, Types.NODE_DELETE, parent); 20 | } 21 | 22 | public String getDeleteLocation() { 23 | return super.getTitle();//.replaceAll("_", "/"); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/MyCellEditor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Core; 7 | 8 | import java.awt.event.MouseEvent; 9 | import java.util.EventObject; 10 | import javax.swing.DefaultCellEditor; 11 | import javax.swing.JTextField; 12 | import javax.swing.JTree; 13 | import javax.swing.tree.DefaultMutableTreeNode; 14 | import javax.swing.tree.TreeNode; 15 | import javax.swing.tree.TreePath; 16 | 17 | /** 18 | * 19 | * @author Nikhil 20 | */ 21 | public class MyCellEditor extends DefaultCellEditor { 22 | public MyCellEditor(){ 23 | super(new JTextField()); 24 | } 25 | public MyCellEditor(JTree tree, JTextField field) { 26 | super(field); 27 | } 28 | public boolean isCellEditable(EventObject e) { 29 | if(e instanceof MouseEvent) { 30 | MouseEvent me = (MouseEvent)e; 31 | if(me.getClickCount() == 3) { 32 | JTree tree = (JTree)me.getSource(); 33 | TreePath path = tree.getPathForLocation(me.getX(), me.getY()); 34 | if(path.getPathCount() == 1) { 35 | //System.out.println("Root"); 36 | return false; // root node 37 | } 38 | DefaultMutableTreeNode node = 39 | (DefaultMutableTreeNode) path.getLastPathComponent(); 40 | Object hitObject=path.getLastPathComponent(); 41 | if(hitObject instanceof TreeNode) { 42 | TreeNode t = (TreeNode)hitObject; 43 | boolean b = t.isLeaf(); 44 | if (b) { 45 | //System.out.println("Leaf"); 46 | return (((TreeNode)hitObject).isLeaf()); 47 | } //else System.out.println("Not Leaf"); 48 | } 49 | } 50 | } 51 | // System.out.println("Exit"); 52 | return false; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/MyTreeModelListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Core; 7 | 8 | import flashablezipcreator.Operations.TreeOperations; 9 | import java.io.IOException; 10 | import java.util.logging.Level; 11 | import java.util.logging.Logger; 12 | import javax.swing.event.TreeModelEvent; 13 | import javax.swing.event.TreeModelListener; 14 | 15 | /** 16 | * 17 | * @author Nikhil 18 | */ 19 | public class MyTreeModelListener implements TreeModelListener { 20 | 21 | TreeOperations to = new TreeOperations(); 22 | public void treeNodesChanged(TreeModelEvent e) { 23 | ProjectItemNode node = (ProjectItemNode) (e.getTreePath().getLastPathComponent()); 24 | 25 | /* 26 | * If the event lists children, then the changed 27 | * node is the child of the node we have already 28 | * gotten. Otherwise, the changed node and the 29 | * specified node are the same. 30 | */ 31 | try { 32 | int index = e.getChildIndices()[0]; 33 | node = (ProjectItemNode) (node.getChildAt(index)); 34 | } catch (NullPointerException exc) { 35 | } 36 | try { 37 | to.renameNode(node, node.getUserObject().toString()); 38 | } catch (IOException ex) { 39 | Logger.getLogger(MyTreeModelListener.class.getName()).log(Level.SEVERE, null, ex); 40 | } 41 | } 42 | 43 | public void treeNodesInserted(TreeModelEvent e) { 44 | } 45 | 46 | public void treeNodesRemoved(TreeModelEvent e) { 47 | } 48 | 49 | public void treeStructureChanged(TreeModelEvent e) { 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/ProjectMouseAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Core; 7 | 8 | import java.awt.Component; 9 | import java.awt.event.MouseAdapter; 10 | import java.awt.event.MouseEvent; 11 | import javax.swing.JDialog; 12 | import javax.swing.JMenuItem; 13 | import javax.swing.JOptionPane; 14 | import javax.swing.JPopupMenu; 15 | import javax.swing.tree.TreePath; 16 | import javax.swing.tree.DefaultTreeModel; 17 | 18 | /** 19 | * 20 | * @author Nikhil 21 | */ 22 | public class ProjectMouseAdapter extends MouseAdapter { 23 | 24 | private void myPopupEvent(MouseEvent e) { 25 | JPopupMenu popup = null; 26 | javax.swing.JTree myTree = (javax.swing.JTree) e.getSource(); 27 | 28 | TreePath[] paths = myTree.getSelectionPaths(); 29 | if (paths != null) { 30 | popup = MyPopup.getPopup(paths, myTree); 31 | popup.show(myTree, e.getX(), e.getY()); 32 | } 33 | } 34 | 35 | public void mousePressed(MouseEvent e) { 36 | if (e.isPopupTrigger()) { 37 | myPopupEvent(e); 38 | } 39 | } 40 | 41 | public void mouseReleased(MouseEvent e) { 42 | if (e.isPopupTrigger()) { 43 | myPopupEvent(e); 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/ProjectTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | 7 | package flashablezipcreator.Core; 8 | 9 | import java.awt.BorderLayout; 10 | import java.io.IOException; 11 | import java.util.logging.Level; 12 | import java.util.logging.Logger; 13 | import javax.swing.JFrame; 14 | import javax.swing.JOptionPane; 15 | import javax.swing.JScrollPane; 16 | import javax.swing.JTree; 17 | import javax.swing.SwingUtilities; 18 | import javax.swing.UIManager; 19 | import javax.swing.event.TreeSelectionEvent; 20 | import javax.swing.event.TreeSelectionListener; 21 | import javax.swing.tree.DefaultTreeCellRenderer; 22 | 23 | /** 24 | * 25 | * @author Nikhil 26 | */ 27 | public class ProjectTree extends JFrame implements TreeSelectionListener { 28 | 29 | private JTree tree; 30 | 31 | public ProjectTree() throws IOException{ 32 | super("Demo Project"); 33 | setLayout(new BorderLayout()); 34 | 35 | // ProjectItemNode rootNode = ProjectTreeBuilder.build(); 36 | // TreeOperations to = new TreeOperations(); 37 | // to.buildDirectory(rootNode); 38 | // TreeModel model = new ProjectTreeModel(rootNode); 39 | // tree = new JTree(model); 40 | //tree.setCellRenderer(new NodeRenderer()); 41 | tree.setCellRenderer(new DefaultTreeCellRenderer()); 42 | tree.addTreeSelectionListener(this); 43 | add(new JScrollPane(tree), BorderLayout.CENTER); 44 | 45 | for(int i = 0 ; i < tree.getRowCount(); i++){ 46 | tree.expandRow(i); 47 | } 48 | setSize (200,300); 49 | setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 50 | setLocationRelativeTo(null); 51 | } 52 | 53 | @Override 54 | public void valueChanged(TreeSelectionEvent tse) { 55 | ProjectItemNode node = (ProjectItemNode)tree.getLastSelectedPathComponent(); 56 | if(node == null){ 57 | return; 58 | } 59 | 60 | JOptionPane.showMessageDialog(this, "You have selected: " + node.prop.parent); 61 | } 62 | 63 | public static void main(String args[]){ 64 | try{ 65 | UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 66 | }catch(Exception e){ 67 | 68 | } 69 | SwingUtilities.invokeLater(new Runnable(){ 70 | public void run(){ 71 | try { 72 | new ProjectTree().setVisible(true); 73 | } catch (IOException ex) { 74 | Logger.getLogger(ProjectTree.class.getName()).log(Level.SEVERE, null, ex); 75 | } 76 | } 77 | }); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/ProjectTreeBuilder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Core; 7 | 8 | import flashablezipcreator.Protocols.Types; 9 | import java.awt.Font; 10 | import java.io.IOException; 11 | import javax.swing.tree.DefaultTreeModel; 12 | 13 | /** 14 | * 15 | * @author Nikhil 16 | */ 17 | public class ProjectTreeBuilder { 18 | 19 | public static javax.swing.JTree tree; 20 | public static javax.swing.JScrollPane jScrollPane; 21 | public static ProjectItemNode rootNode; 22 | 23 | public static javax.swing.JTree buildTree() throws IOException { 24 | rootNode = new ProjectItemNode("AFZC Projects", Types.NODE_ROOT); 25 | rootNode.prop.path = "AFZC Projects"; 26 | rootNode.prop.zipPath = "customize"; 27 | tree = new javax.swing.JTree(rootNode); 28 | tree.setCellRenderer(new NodeRenderer()); 29 | tree.setDragEnabled(true); 30 | tree.setEditable(true); 31 | tree.setInvokesStopCellEditing(true); 32 | tree.setSelectionRow(0); 33 | tree.setShowsRootHandles(true); 34 | tree.setTransferHandler(new MyTransferHandler(rootNode, (DefaultTreeModel) ProjectTreeBuilder.tree.getModel())); 35 | Font currentFont = tree.getFont(); 36 | Font bigFont = new Font(currentFont.getName(), currentFont.getStyle(), currentFont.getSize() + 1); 37 | tree.setFont(bigFont); 38 | tree.setRowHeight(21); 39 | tree.setVisibleRowCount(18); 40 | //mouse click configurations 41 | ProjectMouseAdapter ma = new ProjectMouseAdapter(); 42 | tree.addMouseListener(ma); 43 | return tree; 44 | } 45 | 46 | public static DefaultTreeModel buildModel() { 47 | DefaultTreeModel model = (DefaultTreeModel) ProjectTreeBuilder.tree.getModel(); 48 | model.addTreeModelListener(new MyTreeModelListener()); 49 | return model; 50 | } 51 | 52 | public static javax.swing.JScrollPane buildScrollPane() { 53 | jScrollPane = new javax.swing.JScrollPane(); 54 | jScrollPane.setViewportView(ProjectTreeBuilder.tree); 55 | return jScrollPane; 56 | } 57 | 58 | public static ProjectItemNode createNode(String title, int type) { 59 | return new ProjectItemNode(title, type); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Core/ProjectTreeModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | 7 | package flashablezipcreator.Core; 8 | 9 | import java.util.Vector; 10 | import javax.swing.event.TreeModelListener; 11 | import javax.swing.tree.DefaultTreeModel; 12 | import javax.swing.tree.TreeModel; 13 | import javax.swing.tree.TreeNode; 14 | import javax.swing.tree.TreePath; 15 | 16 | /** 17 | * 18 | * @author Nikhil 19 | */ 20 | public class ProjectTreeModel extends DefaultTreeModel implements TreeModel{ 21 | 22 | public TreeNode rootNode; 23 | public Vector listeners = new Vector(); 24 | 25 | 26 | public ProjectTreeModel(TreeNode rootNode){ 27 | super(rootNode); 28 | this.rootNode = rootNode; 29 | } 30 | 31 | @Override 32 | public Object getRoot() { 33 | return rootNode; 34 | } 35 | 36 | @Override 37 | public Object getChild(Object parent, int index) { 38 | TreeNode parentNode = (TreeNode) parent; 39 | return parentNode.getChildAt(index); 40 | } 41 | 42 | @Override 43 | public int getChildCount(Object parent) { 44 | TreeNode parentNode = (TreeNode) parent; 45 | return parentNode.getChildCount(); 46 | } 47 | 48 | @Override 49 | public boolean isLeaf(Object node) { 50 | TreeNode treeNode = (TreeNode) node; 51 | return treeNode.isLeaf(); 52 | } 53 | 54 | @Override 55 | public void valueForPathChanged(TreePath tp, Object o) { 56 | throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 57 | } 58 | 59 | @Override 60 | public int getIndexOfChild(Object parent, Object child) { 61 | TreeNode parentNode = (TreeNode) parent; 62 | TreeNode childNode = (TreeNode) child; 63 | return parentNode.getIndex(childNode); 64 | } 65 | 66 | @Override 67 | public void addTreeModelListener(TreeModelListener tl) { 68 | listeners.add(tl); 69 | } 70 | 71 | @Override 72 | public void removeTreeModelListener(TreeModelListener tl) { 73 | listeners.remove(tl); 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /src/flashablezipcreator/DiskOperations/Read.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.DiskOperations; 7 | 8 | import java.io.BufferedReader; 9 | import java.io.ByteArrayOutputStream; 10 | import java.io.File; 11 | import java.io.FileInputStream; 12 | import java.io.FileNotFoundException; 13 | import java.io.IOException; 14 | import java.io.InputStream; 15 | import java.io.InputStreamReader; 16 | import javax.swing.JOptionPane; 17 | 18 | /** 19 | * 20 | * @author Nikhil 21 | */ 22 | public class Read { 23 | 24 | BufferedReader br; 25 | 26 | public String getFileString(String path) throws FileNotFoundException { 27 | File file = new File(path); 28 | if (file.exists()) { 29 | br = new BufferedReader(new InputStreamReader(new FileInputStream(file))); 30 | try { 31 | String str = ""; 32 | while ((br.ready())) { 33 | str += (char) br.read(); 34 | } 35 | return str; 36 | } catch (IOException ioe) { 37 | System.out.println("Exception caught while reading from File.." + ioe); 38 | } 39 | } else { 40 | JOptionPane.showMessageDialog(null, "External xml File Not Found"); 41 | } 42 | return ""; 43 | } 44 | 45 | public byte[] getFileBytes(String path) throws IOException { 46 | FileInputStream fis = new FileInputStream(new File(path)); 47 | int len; 48 | byte[] buffer = new byte[1024]; 49 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); 50 | while ((len = fis.read(buffer)) > 0) { 51 | baos.write(buffer, 0, len); 52 | } 53 | return baos.toByteArray(); 54 | } 55 | 56 | public byte[] getBytesFromFile(InputStream is) throws IOException { 57 | int len; 58 | byte[] buffer = new byte[1024]; 59 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); 60 | while ((len = is.read(buffer)) > 0) { 61 | baos.write(buffer, 0, len); 62 | } 63 | return baos.toByteArray(); 64 | } 65 | 66 | public String getStringFromFile(InputStream is) throws IOException { 67 | int len; 68 | byte[] buffer = new byte[1024]; 69 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); 70 | while ((len = is.read(buffer)) > 0) { 71 | baos.write(buffer, 0, len); 72 | } 73 | return baos.toString(); 74 | } 75 | 76 | public static String removeExtension(String name) { 77 | return name.replaceFirst("[.][^.]+$", ""); 78 | } 79 | 80 | } 81 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Gapps/Pico.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Gapps; 7 | 8 | import java.util.ArrayList; 9 | import flashablezipcreator.Adb.Package; 10 | 11 | /** 12 | * 13 | * @author NBCTNBM 14 | */ 15 | public class Pico { 16 | 17 | public static ArrayList getList() { 18 | Gapps gapps = new Gapps(); 19 | ArrayList list = new ArrayList<>(); 20 | list.add(Gapps.GmsCoreSetupPrebuilt); 21 | list.add(Gapps.GoogleBackupTransport); 22 | list.add(Gapps.GoogleContactsSyncAdapter); 23 | list.add(Gapps.GoogleExtServices); 24 | list.add(Gapps.GoogleExtShared); 25 | list.add(Gapps.GoogleServicesFramework); 26 | list.add(Gapps.Phonesky); 27 | list.add(Gapps.PrebuiltGmsCore); 28 | return list; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/EDELWEIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/EDELWEIS -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/FLAMBOYAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/FLAMBOYAN -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/MELATI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/MELATI -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/Supported Devices: -------------------------------------------------------------------------------- 1 | Redmi Note 3 (kenzo)_kenzo_xxx_nonneon 2 | HTC One S C2 (ville c2)_ville c2_/dev/block/mmcblk0p20_neon 3 | HTC One mini (M4)_M4_/dev/block/mmcblk0p31_neon 4 | HTC Sensation (pyramid)_pyramid_/dev/block/mmcblk0p20_neon 5 | HTC desire X (protou)_protou_/dev/block/mmcblk0p27_neon 6 | HTC Desire Z (vision)_vision_xxx_neon 7 | Huawei honor (U8860)_u8860_/dev/block/mmcblk0p1_neon 8 | Lenovo (K910)_K910_xxx_neon 9 | LG G3 Sprint (LS990)_LS990_/dev/block/platform/msm_sdcc.1/by-name/boot_neon 10 | LG Optimus L5 (e610)_e610_/dev/block/platform/msm_sdcc.3/by-num/p9_neon 11 | LG Optimus L9 (p769)_p769_/dev/block/platform/omap/omap_hsmmc.1/by-name/boot_neon 12 | LG Optimus L90 (D415)_D415_xxx_neon 13 | LG Optimus 4X HD (p880)_p880_/dev/block/platform/sdhci-tegra.3/by-name/LNX_neon 14 | LG Nexus 5 (mako)_mako_xxx_neon 15 | Lg L3 II (E430)_E430_xxx_neon 16 | Galaxy Ace 3 LTE (GT-S7275R)_s7275r_/dev/block/platform/msm_sdcc.1/by-name/boot_neon 17 | Samsung Galaxy Fame (s6812)_s6812_/dev/block/mmcblk0p5_neon 18 | Samsung Galaxy Grand Duos (i9082)_i9082_/dev/block/mmcblk0p5_neon 19 | Samsung Galaxy R (i9103)_i9103_/dev/block/mmcblk0p9_nonneon 20 | Samsung Galaxy S (i9070)Advance_i9070_/dev/block/mmcblk0p15_neon 21 | Samsung Galaxy S 2 (i9100)_i9100_/dev/block/mmcblk0p5_neon 22 | Samsung Galaxy S 3 (i9300)_i9300_/dev/block/mmcblk0p5_neon 23 | Samsung Galaxy S 4 (i9500)_i9500_/dev/block/mmcblk0p9_neon 24 | Samsung Galaxy S4 mini LTE (I9195)_i9195_/dev/block/platform/msm_sdcc.1/by-name/boot_neon 25 | Samsung Galaxy S 5 (G-900F)_900F_xxx_neon 26 | Samsung Galaxy Nexus (GSM)_maguro_/dev/block/platform/omap/omap_hsmmc.0/by-name/boot_neon 27 | Samsung Infuse (i997)_i997_xxx_neon 28 | Nexus 4 (e960)_e960_/dev/block/mmcblk0p6_neon 29 | Nexus 5X (bullhead)_bullhead_xxx_neon 30 | Nexus 7 (2012 version)_grouper_/dev/block/platform/sdhci-tegra.3/by-name/LNX_neon 31 | Samsung Galaxy Note II (N7100)_N7100_/dev/block/mmcblk0p8_neon 32 | Samsung Galaxy Note III (hltetmo)_hltetmo_/dev/block/platform/msm_sdcc.1/by-name/boot_neon 33 | Samsung Galaxy Note III (n900)_n900_xxx_neon 34 | Xperia Go (st27i)_st27i_/dev/block/mmcblk0p9_neon 35 | Xperia Z1 Compact_xperiaZ1_xxx_neon 36 | LG G2 At&T (D800)_d800_xxx_neon 37 | LG G2 (D802)_d802_xxx_neon 38 | Motorola RAZR Maxx_XT912_xxx_neon 39 | Motorola Defy_mb525_xxx_neon 40 | Samsung Galaxy Note (N7000)_N7000_xxx_neon 41 | Samsung Galaxy Note II AT&T (i317)_i317_xxx_neon 42 | Samsung Galaxy Note III (N9002)_N9002_xxx_neon 43 | Samsung Galaxy S IV (i9505)_i9505_xxx_neon 44 | Samsung Galaxy Pocket (s5300)_s5300_xxx_neon 45 | Xperia Ion (LT28x)_LT28x_xxx_neon 46 | Neon_generic_nomountpoint_neon 47 | NonNeon_generic_nomountpoint_nonneon -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/addon: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | 3 | #OUTFD=$1; 4 | 5 | #echo "executing addon" >> $OUTFD 6 | shift 2; 7 | destDir=/system/addon.d 8 | dest=$destDir/99-Afzc.sh 9 | source=$1 10 | mkdir -p $destDir; 11 | run(){ 12 | echo "#!/sbin/sh" 13 | echo "#" 14 | echo "#Addon.d script created by AFZC tool" 15 | echo "#" 16 | echo "" 17 | echo ". /tmp/backuptool.functions" 18 | echo "" 19 | echo "list_files() {" 20 | echo "cat < $dest 79 | chmod 755 $dest; -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/afzc: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | #afzc script to perform various operations 3 | # 4 | 5 | #OUTFD=$1; 6 | 7 | #echo "executing afzc with parameters $0" >> $OUTFD 8 | shift 1; 9 | case "$1" in 10 | "-d") 11 | shift 1; 12 | rm -rf "$@" 13 | ;; 14 | "-ei") 15 | shift 1; 16 | mkdir -p /tmp/zipContent 17 | echo "install=$@" >> /tmp/zipContent/addondbackupdata 18 | ;; 19 | "-di") 20 | shift 1; 21 | mkdir -p /tmp/zipContent 22 | echo "delete=$@" >> /tmp/zipContent/addondbackupdata 23 | ;; 24 | esac -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/Terms and Conditions.txt: -------------------------------------------------------------------------------- 1 | This Zip is created using Android Flashable Zip Creator tool developed by Nikhil. 2 | 3 | You are using this at your own risk. 4 | 5 | We are not responsible if any kind of damaged is caused to your device. 6 | 7 | Do Not Flash this until you are certain about what you are doing. -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/displaycapture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/displaycapture -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/exec_demo1.sh: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | # #!/system/bin/sh 3 | 4 | echo "Listing Root Directory:" 5 | ls / 6 | echo " " 7 | 8 | echo "Running ls -l /" 9 | ls -l / 10 | echo " " 11 | 12 | echo "Mounting /sdcard" 13 | mount -t auto /sdcard 14 | echo " " 15 | 16 | echo "Listing /sdcard" 17 | ls /sdcard 18 | echo " " 19 | 20 | echo "Mounting /system" 21 | mount -t auto /system 22 | echo " " 23 | 24 | echo "Listing /system" 25 | ls /system 26 | echo " " 27 | 28 | echo "Mounting /data" 29 | mount -t auto /data 30 | echo " " 31 | 32 | echo "Listing /data" 33 | ls /data 34 | echo " " 35 | 36 | echo "Mounting /sd-ext" 37 | mount -t auto /sd-ext 38 | echo " " 39 | 40 | echo "Listing /sd-ext" 41 | ls /sd-ext 42 | echo " " 43 | 44 | echo "Running df" 45 | df 46 | echo " " 47 | 48 | echo "Running ps" 49 | ps 50 | echo " " 51 | echo " " 52 | 53 | echo "Shell Finished" 54 | 55 | #-- Exit Code 56 | exit 10 -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/exec_demo2.sh: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | # #!/system/bin/sh 3 | 4 | echo "Evironment Variable Demo" 5 | echo "UPDATE_PACKAGE: $UPDATE_PACKAGE" 6 | echo "AROMA_TMP: $AROMA_TMP" 7 | echo "AROMA_NAME: $AROMA_NAME" 8 | echo "AROMA_COPY: $AROMA_COPY" 9 | echo "AROMA_VERSION: $AROMA_VERSION" 10 | echo "AROMA_BUILD: $AROMA_BUILD" 11 | echo "AROMA_BUILD_CN: $AROMA_BUILD_CN" 12 | echo "PATH: $PATH" 13 | echo " " 14 | 15 | echo "default.prop value" 16 | cat /default.prop 17 | 18 | 19 | #-- Exit Code 20 | exit 0 -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/exec_demo/sleep -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/fonts/big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/fonts/big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/fonts/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/fonts/small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/finish.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/installbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/installbutton.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/icons/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/icons/welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/ar.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=موافق 27 | text_next=التالي 28 | text_back=ظهر 29 | text_yes=نعم 30 | text_no=لا 31 | text_about=حول 32 | text_calibrating=معايرة أدوات 33 | text_quit=إنهاء التثبيت 34 | text_quit_msg=هل أنت متأكد لإنهاء المثبت؟ 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=لل 40 | 41 | langtest.title=لغة الاختبار 42 | langtest.multiline=ويقع هذا النص في langs/ar.lang\ 43 | استخدم مائل قبل الدخول لإضافة سطر جديد\ 44 | \ 45 | يمكنك أيضا القيام Formatting داخل لغة مورد سلسلة.\ 46 | \ 47 | شكرا لاستخدام AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=اختيار الموضوع 53 | themes.desc=الرجاء اختيار موضوع المثبت الذي تريد استخدامه في هذا الاختبار التثبيت: 54 | 55 | welcome.title=ترحيب 56 | welcome.text1=أنت على وشك تثبيت 57 | welcome.text2=وكان AROMA Installer القرص الروبوت الأول واللمس فقط وقابلة للتخصيص المثبت في العالم. 58 | welcome.version=VERSION 59 | welcome.codename=CODENAME 60 | welcome.updated=ين ياباني 61 | welcome.next=اضغط التالي لمتابعة التثبيت... 62 | 63 | terms.title=الشروط والأحكام 64 | terms.desc=الرجاء قراءة بعناية AROMA Installer والبنود والشروط أدناه. 65 | terms.check=أنا أتفق مع هذا البنود والشروط ... 66 | terms.confirm=يرجى الاطلاع على اتفاق ... 67 | 68 | changelog.title=التغيير 69 | changelog.desc=AROMA Installer التغيير 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/cn.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : 简体中文 20 | # By : amarullz + google translate + 魂客(kinghunki) 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=确定 27 | text_next=下一步 28 | text_back=返回 29 | text_yes=同意 30 | text_no=放弃 31 | text_about=关于 32 | text_calibrating=屏幕校准 33 | text_quit=退出安装 34 | text_quit_msg=你确定要退出安装吗? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=到您的 40 | 41 | langtest.title=语言测试 42 | langtest.multiline=这个简体中文文件在:langs/cn.lang\ 43 | 如果你有更好的解释,请自行打开.lang文件修改其中内容。 44 | 45 | 感谢amarullz 提供的智能刷机脚本。 46 | 感谢您使用 AROMA Installer智能刷机脚本。 47 | 48 | #-- End of string without any backslash for multiline text 49 | 50 | 51 | themes.title=选择主题 52 | themes.desc=要在此安装测试使用,请选择安装的主题: 53 | 54 | welcome.title=欢迎 55 | welcome.text1=你即将安装 56 | welcome.text2=AROMA Installer 是第一也是唯一的触摸选择刷机过程的智能脚本. 57 | welcome.version=ROM 版本 58 | welcome.codename=定制作者 59 | welcome.updated=更新日期 60 | welcome.next=按下一步继续安装... 61 | 62 | terms.title=条款和许可 63 | terms.desc=请仔细阅读仔细的AROMA安装条款和以下许可. 64 | terms.check=我同意本条款及许可... 65 | terms.confirm=请认真阅读协议并同意... 66 | 67 | changelog.title=更新日志 68 | changelog.desc=关于更新说明 69 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/de.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : German 20 | # By : Kalashnikitty (Midian666) 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Weiter 28 | text_back=Zurück 29 | text_yes=Ja 30 | text_no=Nein 31 | text_about=Über 32 | text_calibrating=Kalibrierung 33 | text_quit=Installation beenden 34 | text_quit_msg=Installer wirklich beenden? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=für 40 | 41 | langtest.title=Sprach Test 42 | langtest.multiline=Dieser Text ist in/de.lang\ 43 | Benutze Backslash, bevor du eine neue Zeile beginnst \ 44 | \ 45 | Möglich sind auch Formatierungen innerhalb eines Textes.\ 46 | \ 47 | Danke das du den AROMA Installer benutzt. 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Thema wählen 53 | themes.desc=Bitte wähle das Installations Thema, welches du während der Installation testen möchtest: 54 | 55 | welcome.title=Willkommen 56 | welcome.text1=Du bist dabei zu Installieren 57 | welcome.text2=Der AROMA Installer war das erste und das einzige anpassbare Touch Installer für ANDROID der Welt. 58 | welcome.version=VERSION 59 | welcome.codename=CODENAME 60 | welcome.updated=AKTUALISIERT 61 | welcome.next=Weiter drücken, um mit der Installation fortzufahren... 62 | 63 | terms.title=AGB 64 | terms.desc=Bitte lese dir die AGB für den AROMA Installer genau durch. 65 | terms.check=Ich stimme den AGBs zu... 66 | terms.confirm=Eingabe überprüfen... 67 | 68 | changelog.title=Changelog 69 | changelog.desc=AROMA Installer Changelog -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/en.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Next 28 | text_back=Back 29 | text_yes=Yes 30 | text_no=No 31 | text_about=About 32 | text_calibrating=Calibrating Tools 33 | text_quit=Quit Installation 34 | text_quit_msg=Are you sure to quit the installer? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=for 40 | 41 | langtest.title=Language Test 42 | langtest.multiline=This text is located in langs/en.lang\ 43 | Use backslash before enter to add new line\ 44 | \ 45 | You can also do Formatting inside the language string resource.\ 46 | \ 47 | Thanks for using AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Select Theme 53 | themes.desc=Please select installer theme that you want to use in this installation test: 54 | 55 | welcome.title=Welcome 56 | welcome.text1=You are about to Installing 57 | welcome.text2=AROMA Installer was the first and the only Touch and Customizable ANDROID ROM Installer in the World. 58 | welcome.version=VERSION 59 | welcome.codename=CODENAME 60 | welcome.updated=UPDATED 61 | welcome.next=Press Next to Continue the Installation... 62 | 63 | terms.title=Terms and Conditions 64 | terms.desc=Please read carefully The AROMA Installer Terms and Conditions Below. 65 | terms.check=I Agree with this Terms and Conditions... 66 | terms.confirm=Please check the agreement... 67 | 68 | changelog.title=Changelog 69 | changelog.desc=AROMA Installer Changelog 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/es.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : Espanol 20 | # By : amarullz + google translate 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=Aceptar 27 | text_next=Siguiente 28 | text_back=Atrás 29 | text_yes=Sí 30 | text_no=No 31 | text_about=Acerca de 32 | text_calibrating=Calibrar pantalla 33 | text_quit=Salir de la instalación 34 | text_quit_msg=¿Seguro que quieres salir? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=para 40 | 41 | langtest.title=Prueba de Lenguaje 42 | langtest.multiline=Este texto está en langs/es.lang\ 43 | Usa la barra invertida al final del texto para marcar el salto de línea\ 44 | \ 45 | También puedes aplicar Formato al texto.\ 46 | \ 47 | Gracias por usar AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Selecciona un Tema 53 | themes.desc=Por favor, selecciona el tema gráfico que quieres usar en esta prueba de instalación: 54 | 55 | welcome.title=Bienvenido 56 | welcome.text1=Estás a punto de instalar 57 | welcome.text2=AROMA Installer fue el primer y el único instalador del mundo táctil y personalizable para ROMs Android. 58 | welcome.version=VERSIÓN 59 | welcome.codename=CODENAME 60 | welcome.updated=ACTUALIZADO 61 | welcome.next=Pulsa Siguiente para continuar la instalación... 62 | 63 | terms.title=Términos y Condiciones 64 | terms.desc=Por favor, lea cuidadosamente los términos y condiciones de AROMA Installer. 65 | terms.check=Estoy de acuerdo con estos Términos y Condiciones... 66 | terms.confirm=Por favor, revise el acuerdo... 67 | 68 | changelog.title=Historial de cambios 69 | changelog.desc=Historial de cambios de AROMA Installer 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/fr.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : French 20 | # By : RolluS (Team MyUI) & mickey-r 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Suivant 28 | text_back=Précédent 29 | text_yes=Oui 30 | text_no=Non 31 | text_about=À propos 32 | text_calibrating=Outils de calibration 33 | text_quit=Quitter l'installation 34 | text_quit_msg=Êtes-vous sûre de vouloir quitter l'installation? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=pour 40 | 41 | langtest.title=Test du language 42 | langtest.multiline=Ce texte se trouve dans langs/fr.lang\ 43 | Utiliser un antislash avant "Entrée" pour ajouter une ligne\ 44 | \ 45 | Vous pouvez aussi faire une Mise en forme dans les textes de ressource de langue.\ 46 | \ 47 | Merci d'utiliser AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Choisir le thème 53 | themes.desc=Merci de sélectionner le thème que vous souhaiter utiliser lors de ce test d'installation: 54 | 55 | welcome.title=Bienvenue 56 | welcome.text1=Vous aller installer 57 | welcome.text2=AROMA Installer est le premier et le seul Installateur de ROM ANDROID ROM tactile au niveau mondial. 58 | welcome.version=VERSION 59 | welcome.codename=NON DE CODE 60 | welcome.updated=MISE A JOUR 61 | welcome.next=Pressez Suivant pour continuer l'installation... 62 | 63 | terms.title=Conditions d'utilisation 64 | terms.desc=Merci de lire attentivement les Conditions d'utilisation de AROMA Installer. 65 | terms.check=Je suis d'accord avec ces Conditions d'utilisation... 66 | terms.confirm=Lire les conditions... 67 | 68 | changelog.title=Note de version 69 | changelog.desc=Changement apporté aux version d'AROMA Installer 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/he.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=אישור 27 | text_next=הבא 28 | text_back=הקודם 29 | text_yes=כן 30 | text_no=לא 31 | text_about=אודות 32 | text_calibrating=כלים לכיול 33 | text_quit=צא מההתקנה 34 | text_quit_msg=האם אתה בטוח שאתה רוצה לצאת מההתקנה? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=עבור 40 | 41 | langtest.title=בדיקת שפה 42 | langtest.multiline=הטקסט הזה נמצא ב- langs/en.lang\ 43 | השתמש בבקסלאש לפני אנטר בשביל לעבור לשורה חדשה\ 44 | \ 45 | אתה גם יכול לפרמט בתוך מאגר הנתונים של השפה.\ 46 | \ 47 | תודה לך עבור השימוש בהתקנת ארומה. 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=בחר ערכת נושא 53 | themes.desc=אנא בחר ערכת נושא שתרצה להשתמש בבדיקת ההתקנה: 54 | 55 | welcome.title=ברוכים הבאים 56 | welcome.text1=אתה עומד להתקין את 57 | welcome.text2=התקנת ארומה היא ההתקנה הראשונה והיחידה שמאפשרת התקנת מגע מותאמת אישית. 58 | welcome.version=גירסא 59 | welcome.codename=CODENAME 60 | welcome.updated=מעודכן 61 | welcome.next=לחץ הבא כדי להמשיך בהתקנה... 62 | 63 | terms.title=תנאי שימוש 64 | terms.desc=נא לקרוא בעיון את מתקין ארומה תנאי שימוש להלן. 65 | terms.check=אני מסכים לתנאי שימוש אלו... 66 | terms.confirm=נא סמן את ההסכמה... 67 | 68 | changelog.title=דוח שינויים 69 | changelog.desc=דוח שינויים של התקנת ארומה 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/id.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : Indonesian 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Selanjutnya 28 | text_back=Kembali 29 | text_yes=Ya 30 | text_no=Tidak 31 | text_about=Tentang 32 | text_calibrating=Alat Kalibrasi 33 | text_quit=Keluar dari Instaler 34 | text_quit_msg=Anda yakin akan keluar dari instaler? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=untuk 40 | 41 | langtest.title=Test Bahasa 42 | langtest.multiline=Teks ini berlokasi di langs/id.lang\ 43 | Guakan backslash sebelum enter untuk menambah baris\ 44 | \ 45 | Anda juga dapat melakukan Pemformatan di dalam string resource bahasa.\ 46 | \ 47 | Terima kasih telah menggunakan AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Pilih Tema 53 | themes.desc=Silahkan pilih tema yang ingin anda gunakan di dalam instalasi percobaan ini: 54 | 55 | welcome.title=Selamat Datang 56 | welcome.text1=Anda akan melakukan instalasi 57 | welcome.text2=AROMA Installer adalah yang pertama dan satu-satunya instaler di dunia yang mendukung Touch screen dan Kustomisasi untuk ANDROID ROM. 58 | welcome.version=VERSI 59 | welcome.codename=NAMA KODE 60 | welcome.updated=PERBARUI 61 | welcome.next=Tekan Selanjutnya untuk melanjutkan instalasi... 62 | 63 | terms.title=Syarat dan Ketentua 64 | terms.desc=Mohon dibaca dengan teliti Syarat dan Ketentuan AROMA Installer di bawah ini. 65 | terms.check=Saya Setuju dengan Syarat dan Kondisi ini... 66 | terms.confirm=Silakan periksa perjanjian... 67 | 68 | changelog.title=Info Perubahan 69 | changelog.desc=Info Perubahan AROMA Installer 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/it.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : Italiano 20 | # By : Lucky76 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=Accettare 27 | text_next=Seguente 28 | text_back=Indietro 29 | text_yes=Si 30 | text_no=No 31 | text_about=Circa 32 | text_calibrating=Tool di calibrazione 33 | text_quit=Uscire dall'Installazione 34 | text_quit_msg=Sicuro di voler uscire dall'installazione? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=per 40 | 41 | langtest.title=Test della Lingua 42 | langtest.multiline=Questo testo è situato in langs/it.lang\ 43 | Utilizzare il backslash alla fine del testo per segnare l'interruzione di riga\ 44 | \ 45 | È inoltre possibile applicare Formato al testo.\ 46 | \ 47 | Grazie per aver scelto di utilizzare AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Selezionare un Tema 53 | themes.desc=Per favore selezionare il tema grafico da utilizzare in questa installazione: 54 | 55 | welcome.title=Benvenuto 56 | welcome.text1=State per iniziare l'installazione 57 | welcome.text2=AROMA Installer è il primo e unico programma Touch al mondo per installare e personalizzare ROM Android. 58 | welcome.version=VERSIONE 59 | welcome.codename=CODENAME 60 | welcome.updated=AGGIORNAMENTO 61 | welcome.next=Premere Avanti per proseguire l'installazione... 62 | 63 | terms.title=Termini e Condizioni 64 | terms.desc=Si prega di leggere attentamente i termini e le condizioni dell'AROMA Installer riportate qui di seguito. 65 | terms.check=Io sono d'accordo con questi Termini e Condizioni... 66 | terms.confirm=Si prega di verificare l'accordo... 67 | 68 | changelog.title=Novità 69 | changelog.desc=Novità dell'AROMA Installer 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/ja.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : Japanese(日本語) 20 | # By : @WedyDQ10 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=次へ 28 | text_back=前へ 29 | text_yes=はい 30 | text_no=いいえ 31 | text_about=AROMAについて 32 | text_calibrating=調整ツール 33 | text_quit=インストールの中断 34 | text_quit_msg=インストールを中断しますか? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=for 40 | 41 | langtest.title=言語テスト 42 | langtest.multiline=このテキストは langs/ja.langに書かれています。\ 43 | 改行するにはバックスラッシュを入れてください。\ 44 | \ 45 | 言語リソースではフォーマットすることもできます。\ 46 | \ 47 | AROMAインストーラをお使いいただきありがとうございます。 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=テーマの選択 53 | themes.desc=インストールテストで使うテーマを選んでください: 54 | 55 | welcome.title=ようこそ 56 | welcome.text1=インストール内容:\ 57 | welcome.text2=AROMAインストーラは世界初の、タッチ操作とカスタマイズができるANDROID ROMインストーラです。 58 | welcome.version=バージョン 59 | welcome.codename=コードネーム 60 | welcome.updated=更新日時 61 | welcome.next=「次へ」をタップするとインストール操作を開始します... 62 | 63 | terms.title=利用規約 64 | terms.desc=以下のAROMAインストーラの利用規約をお読みください。 65 | terms.check=利用規約に同意します... 66 | terms.confirm=チェックしてください... 67 | 68 | changelog.title=更新履歴 69 | changelog.desc=AROMAインストーラの更新履歴です 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/langs/ru.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Далее 28 | text_back=Назад 29 | text_yes=Да 30 | text_no=Нет 31 | text_about=About 32 | text_calibrating=Калибровка 33 | text_quit=Покинуть установку 34 | text_quit_msg=Вы действительно хотите покинуть установку? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=for 40 | 41 | langtest.title=Тестирование языков 42 | langtest.multiline=Этот текст расположен в langs/ru.lang\ 43 | Используйте обратный слэш перед переходом на новую строку\ 44 | \ 45 | Вы также можете использовать форматирование внутри языковых ресурсов.\ 46 | \ 47 | Спасибо за использование AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Выберите тему 53 | themes.desc=Пожалуйста выберите тему которую вы хотите использовать в этом установочном тесте: 54 | 55 | welcome.title=Добро пожаловать 56 | welcome.text1=Вы собираетесь установить 57 | welcome.text2=AROMA Installer это первый и единственный в мире установщик прошивок для ANDROID с сенсорным управлением и тонкой настройкой. 58 | welcome.version=ВЕРСИЯ 59 | welcome.codename=КОДОВОЕ ИМЯ 60 | welcome.updated=ОБНОВЛЕНО 61 | welcome.next=Нажмите Далее для продолжения установки... 62 | 63 | terms.title=Условия 64 | terms.desc=Пожалуйста внимательно прочитайте условия использования AROMA Installer. 65 | terms.check=Я согласен с правилами использования... 66 | terms.confirm=Пожалуйста ознакомьтесь с соглашением... 67 | 68 | changelog.title=Changelog 69 | changelog.desc=AROMA Installer Changelog 70 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/AFZC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/AFZC.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a1.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a2.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a3.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a4.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a5.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/splash/a6.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/bg.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/cb_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | InfoTip=This folder is shared online. 3 | IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe 4 | IconIndex=16 5 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/list.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/navbar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/navbar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/radio_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar.9 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #33B5E5 41 | color.selectbg_g = #33B5E5 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #33B5E5 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = ICS 66 | info.description = ICS Theme for AROMA Installer 67 | info.author = DemonWav & amarullz -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Ics/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_on_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_on_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/cb_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | InfoTip=This folder is shared online. 3 | IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe 4 | IconIndex=16 5 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/nav.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/nav.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_on_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_on_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/radio_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/select.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/select.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/select_push.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/select_push.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/theme.prop: -------------------------------------------------------------------------------- 1 | img.background = 2 | img.titlebar = titlebar.9 3 | img.navbar = nav.9 4 | img.dialog = dialog.9 5 | img.dialog.titlebar = dialog_titlebar.9 6 | img.progress = button.9 7 | img.prograss.fill = button_focus.9 8 | img.selection = select.9 9 | img.selection.push = select_push.9 10 | img.button = button.9 11 | img.button.focus = button_focus.9 12 | img.button.push = button_press.9 13 | img.checkbox = cb 14 | img.checkbox.focus = cb_sel 15 | img.checkbox.push = cb 16 | img.checkbox.on = cb_on 17 | img.checkbox.on.focus = cb_on_sel 18 | img.checkbox.on.push = cb_on 19 | img.radio = radio 20 | img.radio.focus = radio_sel 21 | img.radio.push = radio 22 | img.radio.on = radio_on 23 | img.radio.on.focus = radio_on_sel 24 | img.radio.on.push = radio_on 25 | 26 | 27 | color.winbg = #efefef 28 | color.winbg_g = #e6e6e6 29 | color.winfg = #000000 30 | color.winfg_gray = #666666 31 | color.dialogbg = #efefef 32 | color.dialogbg_g = #e6e6e6 33 | color.dialogfg = #000000 34 | color.textbg = #ffffff 35 | color.textfg = #000000 36 | color.textfg_gray = #666666 37 | color.controlbg = #ececec 38 | color.controlbg_g = #bdbdbd 39 | color.controlfg = #222222 40 | color.selectbg = #fead20 41 | color.selectbg_g = #dc7d0c 42 | color.selectfg = #ffffff 43 | color.titlebg = #3b3b3b 44 | color.titlebg_g = #1a1a1a 45 | color.titlefg = #ffffff 46 | color.dlgtitlebg = #3b3b3b 47 | color.dlgtitlebg_g = #1a1a1a 48 | color.dlgtitlefg = #ffffff 49 | color.scrollbar = #f0b000 50 | color.navbg = #e6e6e6 51 | color.navbg_g = #c5c5c5 52 | color.border = #dddddd 53 | color.border_g = #cccccc 54 | color.progressglow = #fead20 55 | 56 | 57 | config.roundsize = 2 58 | config.button_roundsize = 2 59 | config.window_roundsize = 2 60 | config.transition_frame = 6 61 | 62 | font.small = font.roboto.small 63 | font.big = font.roboto.big 64 | 65 | 66 | info.themename = MIUI 67 | info.description = MIUI Theme for AROMA Installer 68 | info.author = mickey-r & amarullz -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/bg.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/cb_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | InfoTip=This folder is shared online. 3 | IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe 4 | IconIndex=16 5 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/list.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/navbar.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/radio_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar 3 | img.navbar=navbar 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #ffffff 28 | color.winbg_g = #eeeeee 29 | color.winfg = #000000 30 | color.winfg_gray = #666666 31 | color.dialogbg = #ffffff 32 | color.dialogbg_g = #eeeeee 33 | color.dialogfg = #000000 34 | color.textbg = #ffffff 35 | color.textfg = #000000 36 | color.textfg_gray = #666666 37 | color.controlbg = #dddddd 38 | color.controlbg_g = #cccccc 39 | color.controlfg = #000000 40 | color.selectbg = #ff7e00 41 | color.selectbg_g = #ff7e00 42 | color.selectfg = #ffffff 43 | color.titlebg = #ff7e00 44 | color.titlebg_g = #ff7e00 45 | color.titlefg = #ffffff 46 | color.dlgtitlebg = #ffffff 47 | color.dlgtitlebg_g = #ffffff 48 | color.dlgtitlefg = #444444 49 | color.scrollbar = #ff7e00 50 | color.navbg = #ffffff 51 | color.navbg_g = #eeeeee 52 | color.border = #666666 53 | color.border_g = #666666 54 | color.progressglow = #ff7e00 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = MIUI v4 ICS 66 | info.description = MIUI v4 ICS Theme for AROMA Installer 67 | info.author = DemonWav & amarullz & Lennox -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui4/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/Thumbs.db -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/bg.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/cb_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.exit.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installgapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installgapps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installmods.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.installrom.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.reboot.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.recovery.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.recyclebin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.recyclebin.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_on_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_on_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/radio_sel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/theme.prop: -------------------------------------------------------------------------------- 1 | img.background = bg 2 | img.titlebar = titlebar.9 3 | img.navbar = titlebar.9 4 | img.dialog = dialog.9 5 | img.dialog.titlebar = dialog_titlebar.9 6 | img.progress = button.9 7 | img.prograss.fill = button_focus.9 8 | img.selection = button.9 9 | img.selection.push = button_press.9 10 | img.button = button.9 11 | img.button.focus = button_focus.9 12 | img.button.push = button_press.9 13 | img.checkbox = cb 14 | img.checkbox.focus = cb_focus 15 | img.checkbox.push = cb_press 16 | img.checkbox.on = cb_on 17 | img.checkbox.on.focus = cb_on_focus 18 | img.checkbox.on.push = cb_on_press 19 | img.radio = radio 20 | img.radio.focus = radio_sel 21 | img.radio.push = radio 22 | img.radio.on = radio_on 23 | img.radio.on.focus = radio_on_sel 24 | img.radio.on.push = radio_on 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #ff4a00 41 | color.selectbg_g = #ff4a00 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #ff4a00 55 | 56 | 57 | config.roundsize = 2 58 | config.button_roundsize = 2 59 | config.window_roundsize = 2 60 | config.transition_frame = 6 61 | 62 | font.small = font.roboto.small 63 | font.big = font.roboto.big 64 | 65 | 66 | info.themename = Miui6 Theme 67 | info.description = Aroma Flashable Zip Creator Theme for AROMA Installer 68 | info.author = Nikhil -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Miui6/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/bg.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/cb_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.cd.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.changelog.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.folder.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.google.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.install2.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.lockring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.lockring.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.memory.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.mods.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.package.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.positive.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.reboot.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.recovery.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.recyclebin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.recyclebin.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.reset.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/list.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/navbar.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/radio_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #33b5e5 41 | color.selectbg_g = #33b5e5 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #33b5e5 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = Nikhil 66 | info.description = Theme for AROMA Installer 67 | info.author = Nikhil -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/Nikhil/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/bg.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button_focus.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/button_press.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/cb_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | InfoTip=This folder is shared online. 3 | IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe 4 | IconIndex=16 5 | -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/dialog.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/dialog_titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/font.roboto.big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/font.roboto.small.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.agreement.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.alert.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.apps.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.back.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.confirm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.customize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.default.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.exit.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.info.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.install.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.installbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.installbutton.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.license.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.menu.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.modem.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.next.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.paypal.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.personalize.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.reboot.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.recovery.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.update.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/icon.welcome.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/list.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/navbar.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on_focus.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_on_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/radio_press.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #e4001b 41 | color.selectbg_g = #e4001b 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #fff 53 | color.border_g = #fff 54 | color.progressglow = #e4001b 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = Redblack 66 | info.description = Redblack Theme for AROMA Installer 67 | info.author = Kickoff -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/themes/RedBlack/titlebar.9.png -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSans.ttf -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSansArabic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSansArabic.ttf -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/DroidSansFallback.ttf -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/META-INF/com/google/android/aroma/ttf/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/flashablezipcreator/META-INF/com/google/android/aroma/unicode/russian_latin.txt: -------------------------------------------------------------------------------- 1 | Детали о следующем поколении планшетов компании Archos попали в сеть до того, как сам производитель успел их анонсировать. Третье поколение планшетов будет работать под управлением ОС Google Android 4.0 Ice Cream Sandwich (ICS), а вместо доступа к официальному магазину Google Android Market в них будет AppsLib Market. 2 | 3 | <@fill>Вместе с китайской компанией Huawei, не менее известная компания под названием ZTE анонсировала на MWC свои смартфоны с операционной системой Android, в том числе и четырехъядерный. По окончании выставки в сети появилась информация о еще одной модели, которую по иронии судьбы назвали ZTE Optimus Barcelona. Официальной информации о нем пока мало - компания не анонсировала его, но некоторые данные уже появились для сертификации в Bluetooth SIG и Wi-Fi Alliance. 4 | 5 | <@right>Компания Novero представила гибрид, попытавшись объединить в одном корпусе сразу два типа популярных устройств. Получившаяся новинка называется Solana и очень похожа на виденный нами ранее аналогичный гибрид Dell Inspiron Duo - её экран разворачивается точно так же: в одном положении мы получаем ноутбук с Windows 7 (готовый к Windows 8), а в другом планшет с операционной системой Android. 6 | 7 | Hoy os traemos una nueva aplicación creada por nosotros que se suma a nuestra lista de aplicaciones. Y con esta, ya son 6 las aplicaciones que ponemos a vuestra disposición de manera totalmente gratuita a través del Android Market. 8 | 9 | En esta ocasión se trata de "Mis notas y préstamos", una aplicación que destaca por su cuidado diseño (al estilo Ice Cream Sandwich) y que te permitirá gestionar de una manera sencilla e intuitiva tus notas y préstamos personales. 10 | 11 | Podrás anotar cualquier tipo de información, y en un futuro próximo, incluso dibujar tus notas. 12 | 13 | Además, si realizas algún préstamo a un amigo, familiar o conocido, ¡anótalo para que no caiga en el olvido! 14 | 15 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Operations/ProjectOperations.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Operations; 7 | 8 | /** 9 | * 10 | * @author nikhil 11 | */ 12 | public class ProjectOperations { 13 | 14 | 15 | 16 | public void getSystemOS(){ 17 | 18 | } 19 | 20 | public void saveProject(){ 21 | 22 | } 23 | 24 | public void loadProject(){ 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/Binary.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | import flashablezipcreator.Core.ProjectItemNode; 9 | import java.io.IOException; 10 | 11 | /** 12 | * 13 | * @author Nikhil 14 | */ 15 | public class Binary { 16 | 17 | public static String updateBinaryInstallerPath = "META-INF/com/google/android/update-binary-installer"; 18 | public static String updateBinaryPath = "META-INF/com/google/android/update-binary"; 19 | 20 | public static byte[] getUpdateBinary(ProjectItemNode rootNode) throws IOException { 21 | return Jar.getAromaBinary(); 22 | } 23 | 24 | public static byte[] getInstallerBinary(ProjectItemNode rootNode) throws IOException { 25 | return Device.getBinary(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/Control.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | /** 9 | * 10 | * @author Nikhil 11 | */ 12 | public class Control { 13 | 14 | public static boolean forceTestUpdate = false; 15 | public static boolean forceBetaUpdate = false; 16 | public static boolean forceStableUpdate = false; 17 | public static boolean forceCheckOnStartUp = false; 18 | public static boolean forceFTP = false; 19 | public static String RawControlUrl = "https://raw.githubusercontent.com/nikhilmenghani/AFZC/v4.0/src/flashablezipcreator/Update/Control"; 20 | 21 | public static void check() { 22 | if (Web.netIsAvailable()) { 23 | try { 24 | String data = Web.getHtmlContent(RawControlUrl); 25 | String[] commands = data.split("\n"); 26 | forceTestUpdate = (commands[0].split(":"))[1].contains("1"); 27 | forceBetaUpdate = (commands[1].split(":"))[1].contains("1"); 28 | forceStableUpdate = (commands[2].split(":"))[1].contains("1"); 29 | forceCheckOnStartUp = (commands[3].split(":"))[1].contains("1"); 30 | forceFTP = (commands[4].split(":"))[1].contains("1"); 31 | } catch (Exception e) { 32 | Logs.write("While checking Contols: " + Logs.getExceptionTrace(e)); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/Device.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | 9 | import flashablezipcreator.Core.ProjectItemNode; 10 | import flashablezipcreator.Operations.DeviceOperations; 11 | import java.io.IOException; 12 | 13 | /** 14 | * 15 | * @author Nikhil 16 | */ 17 | public class Device { 18 | 19 | static DeviceOperations dop = new DeviceOperations(); 20 | public static byte[] binary = null; 21 | public static String IPAddress = ""; 22 | 23 | public static byte[] getBinary() throws IOException { 24 | if (Device.binary != null) { 25 | return Device.binary; 26 | } 27 | return null; 28 | } 29 | 30 | public static int checkDeviceConnectivity(){ 31 | return checkDeviceConnectivity(IPAddress); 32 | } 33 | 34 | public static int checkDeviceConnectivity(String ipAddress) { 35 | return dop.checkDeviceConnectivity(ipAddress); 36 | } 37 | 38 | public static void quickConnect() { 39 | dop.quickConnect(); 40 | } 41 | 42 | public static void connectWithUSB() { 43 | checkDeviceConnectivity(""); 44 | } 45 | 46 | public static String getName() { 47 | return dop.getDeviceName(); 48 | } 49 | 50 | public static String getAndroidVersion() { 51 | return dop.getDeviceAndroidVersion(); 52 | } 53 | 54 | public static String getArchitecture() { 55 | return dop.getDeviceArchitecture(); 56 | } 57 | 58 | public static boolean pushToDevice(String pushSource, String pushDestination) { 59 | return dop.pushToDevice(pushSource, pushDestination); 60 | } 61 | 62 | public static int pullFile(String pullFrom, String pullTo) { 63 | return dop.pullFile(pullFrom, pullTo); 64 | } 65 | 66 | public void pushZipToDevice(String source, String destination) { 67 | 68 | } 69 | 70 | public static boolean push(String pushSource, String pushDestination) { 71 | return dop.push(pushSource, pushDestination); 72 | } 73 | 74 | public static int pull(String pullFrom, String pullTo, String zipPath, ProjectItemNode parent) { 75 | return dop.pull(pullFrom, pullTo, zipPath, parent); 76 | } 77 | 78 | public static int pull(String pullFrom, ProjectItemNode parent) { 79 | return dop.pull(pullFrom, parent); 80 | } 81 | 82 | public static int pull(String dataPullFrom, String systemPullFrom, ProjectItemNode parent) { 83 | return dop.pull(dataPullFrom, systemPullFrom, parent); 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/Logs.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | import flashablezipcreator.DiskOperations.Write; 9 | import flashablezipcreator.UserInterface.Preference; 10 | import java.text.SimpleDateFormat; 11 | import java.util.Calendar; 12 | 13 | /** 14 | * 15 | * @author Nikhil 16 | */ 17 | public class Logs { 18 | 19 | public static String logFile = "log.log"; 20 | public static String newLine = "\n"; 21 | 22 | public static void write(String strToWrite) { 23 | if (Preference.pp.saveLogs) { 24 | Write w = new Write(); 25 | w.appendStringToFile(strToWrite + newLine, logFile); 26 | } 27 | } 28 | 29 | public static String getTime() { 30 | Calendar cal = Calendar.getInstance(); 31 | SimpleDateFormat sdf = new SimpleDateFormat("d_MMM_y_H_m_s"); 32 | return sdf.format(cal.getTime()); 33 | } 34 | 35 | public static String getShortTime() { 36 | Calendar cal = Calendar.getInstance(); 37 | SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); 38 | System.out.println(sdf.format(cal.getTime())); 39 | return sdf.format(cal.getTime()); 40 | } 41 | 42 | public static String getExceptionTrace(Exception e) { 43 | String detail = e.getClass().getName() + ": " + e.getMessage(); 44 | for (StackTraceElement s : e.getStackTrace()) { 45 | detail += "\n\t" + s.toString(); 46 | } 47 | while ((e = (Exception) e.getCause()) != null) { 48 | detail += "\nCaused by: "; 49 | for (final StackTraceElement s : e.getStackTrace()) { 50 | detail += "\n\t" + s.toString(); 51 | } 52 | } 53 | return detail; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/PreferenceProperties.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | import java.util.ArrayList; 9 | 10 | /** 11 | * 12 | * @author Nikhil 13 | */ 14 | public class PreferenceProperties { 15 | 16 | public String aromaVersion = "Version 3.00b1 - MELATI"; 17 | public boolean androidVersionAboveLP; 18 | public boolean isQuickSetup = true; 19 | public boolean checkUpdatesOnStartUp = true; 20 | public String zipCreatorName = "Nikhil"; 21 | public String zipVersion = "1.0"; 22 | public boolean saveLogs = false; 23 | public String currentVersion = "v4.1"; 24 | public String versionType = "stable"; 25 | public boolean preferencesFilePresent = false; 26 | public String preferencesConfig; 27 | public ArrayList themes = new ArrayList<>(); 28 | public boolean useUniversalBinary = true; 29 | public boolean enableAddonDSupport = true; 30 | public boolean displayAddonDSupport = true; 31 | public String createZipType = "Aroma"; 32 | public boolean checkForDeviceOnStartUp = false; 33 | public boolean forceConnect = true; 34 | public boolean keepConnected = true; 35 | public String connectIp = "192.168.2.19:5555"; 36 | public boolean isConnected = true; 37 | public boolean deviceReConnect = true; 38 | } 39 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Protocols/Script.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.Protocols; 7 | 8 | import flashablezipcreator.DiskOperations.Read; 9 | import flashablezipcreator.FlashableZipCreator; 10 | import java.io.IOException; 11 | 12 | /** 13 | * 14 | * @author Nikhil 15 | */ 16 | public class Script { 17 | 18 | public static final String afzcScriptFilePath = "/flashablezipcreator/META-INF/com/google/android/afzc"; 19 | public static final String addonScriptFilePath = "/flashablezipcreator/META-INF/com/google/android/addon"; 20 | public static final String afzcScriptZipPath = "afzc/afzc"; 21 | public static final String addonScriptZipPath = "afzc/addon"; 22 | public static final String afzcScriptTempPath = "/tmp/AFZCScripts/afzc"; 23 | public static final String addonScriptTempPath = "/tmp/AFZCScripts/addon"; 24 | public static final String logDataPath = "/tmp/zipContent/addondbackupdata"; 25 | 26 | public static String getAfzcString() throws IOException{ 27 | Read reader = new Read(); 28 | String afzcScript = reader.getStringFromFile(FlashableZipCreator.class.getResourceAsStream(afzcScriptFilePath)); 29 | return afzcScript; 30 | } 31 | 32 | public static String getAddonString() throws IOException{ 33 | Read reader = new Read(); 34 | String addonScript = reader.getStringFromFile(FlashableZipCreator.class.getResourceAsStream(addonScriptFilePath)); 35 | return addonScript; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/flashablezipcreator/Supported Devices: -------------------------------------------------------------------------------- 1 | HTC One S C2 (ville c2)_ville c2 2 | HTC One mini (M4)_M4 3 | Huawei honor (U8860)_u8860 4 | LG G2 At&T (D800)_d800 5 | LG Optimus L5 (e610)_e610 6 | LG Optimus L9 (p769)_p769 7 | LG Optimus 4X HD (p880)_p880 8 | LG G2 (D802)_d802 9 | Motorola RAZR Maxx_XT912 10 | Motorola Defy_mb525 11 | Samsung Galaxy Fame (s6812)_s6812 12 | Samsung Galaxy Pocket (s5300)_s5300 13 | Samsung Galaxy R (i9103)_i9103_nonneon 14 | Samsung Galaxy S (i9070)Advance_i9070 15 | Samsung Galaxy S II (i9100)_i9100 16 | Samsung Galaxy S III (i9300)_i9300 17 | Samsung Galaxy S IV (i9500)_i9500 18 | Samsung Galaxy S IV (i9505)_i9505 19 | Samsung Galaxy Nexus (GSM)_maguro 20 | Nexus 4 (e960)_e960 21 | Nexus 7 (2012 version)_grouper 22 | Samsung Galaxy Note II (N7100)_N7100 23 | Samsung Galaxy Note II AT&T (i317)_i317 24 | Samsung Galaxy Note III (hltetmo)_hltetmo 25 | Samsung Galaxy Note III (N9002)_N9002 26 | Xperia Go (st27i)_st27i 27 | Xperia Z1 Compact_xperiaZ1 -------------------------------------------------------------------------------- /src/flashablezipcreator/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/Thumbs.db -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/ChangeLogBeta: -------------------------------------------------------------------------------- 1 | 2 | v4.0 b2 3 | -Mod: added Titanium Backup generated zip (Apps only) support 4 | -fixed: folders with spaces in path not working (Now you can keep whatever folder/filename you want) 5 | -added support for devices on which universal-update-binary was not working (place update-binary from any working Rom in root directory of tool if universal-update-binary doesn't work for you) 6 | -fixed group shown multiple times in aroma installer for multiple projects 7 | -removed the inbuilt aroma themes (you don't care about aroma themes, do you?) 8 | -Improved OTA updates for tool 9 | -added check for updates on start up option in preferences so that you can know about the new features -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/ChangeLogStable: -------------------------------------------------------------------------------- 1 | 2 | v4.1 3 | -Custom Group 4 | --Push any file/folder to any location with your custom permission 5 | -Delete Group 6 | --Delete file/folder from any location 7 | -Addon.d Support 8 | --Flash the zip once and you won't need to flash it again while flashing nightlies 9 | --It will backup only those files that you choose in Aroma installer 10 | --Now taking backup is in your control, you will get an option in tool as well as in recovery 11 | -Normal Flashable Zip 12 | --Flash all the files in one go without having to choose the same options every time in Aroma 13 | --Comes with Addon.d support 14 | -OTA updates 15 | --Improved OTA updates 16 | -UI 17 | --Revamped Preferences UI 18 | --Revamped Progress Bar (added circular bar) 19 | --Changed theme of the tool 20 | -Bug Fixes 21 | --Fixed Data apps not getting installed in some scenarios 22 | -Donate 23 | --Added Donate option for those who would like to buy me a coffee or appreciate my hard work after making this tool -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/ChangeLogTest: -------------------------------------------------------------------------------- 1 | 2 | v4.1 b1 test 3 3 | -Feature: Addon.d support 4 | -Feature: added Normal flashable zip 5 | -Many fixes in aroma 6 | -Fix: data apps not getting installed in some scenario 7 | -Revamped Progress bar 8 | -Revamped Preferences bar 9 | -Added back Check for Update Functionality 10 | 11 | v4.1 b1 test 2 12 | -Feature: Delete any file/folder 13 | 14 | v4.1 b1 test 1 15 | -Feature: Add Custom Groups -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/Control: -------------------------------------------------------------------------------- 1 | FTU:1: 2 | FBU:1: 3 | FSU:0: 4 | FCOS:1: 5 | FTP:0: -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/DownloadLatestBetaVersion: -------------------------------------------------------------------------------- 1 | https://forum.xda-developers.com/devdb/project/dl/?id=23740&task=get -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/DownloadLatestStableVersion: -------------------------------------------------------------------------------- 1 | https://goo.gl/PX6eV7 -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/DownloadLatestTestVersion: -------------------------------------------------------------------------------- 1 | https://goo.gl/tzPD1c -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/LatestBetaVersion: -------------------------------------------------------------------------------- 1 | 4.1 beta1 -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/LatestStableVersion: -------------------------------------------------------------------------------- 1 | 4.1 -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/LatestTestVersion: -------------------------------------------------------------------------------- 1 | 4.1 beta1 test3 -------------------------------------------------------------------------------- /src/flashablezipcreator/Update/UpcomingFeatures: -------------------------------------------------------------------------------- 1 | 2 | Sorted in no particular order 3 | -Custom Group (60% done) 4 | -Mods support (Request for a specific Mod in thread) 5 | -Copy files to sdcard support 6 | -Support for more file partitions 7 | -Addon.d support 8 | -Changing dpi 9 | -Delete system apps -------------------------------------------------------------------------------- /src/flashablezipcreator/UserInterface/ImportZip.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.UserInterface; 7 | 8 | /** 9 | * 10 | * @author Nikhil 11 | */ 12 | public class ImportZip extends javax.swing.JFrame { 13 | public ImportZip(){ 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/flashablezipcreator/UserInterface/PHTextField.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package flashablezipcreator.UserInterface; 7 | 8 | /** 9 | * 10 | * @author Nikhil 11 | */ 12 | import java.awt.*; 13 | 14 | import javax.swing.*; 15 | import javax.swing.text.Document; 16 | 17 | @SuppressWarnings("serial") 18 | public class PHTextField extends JTextField { 19 | 20 | // public static void main(final String[] args) { 21 | // final PHTextField tf = new PHTextField(""); 22 | // tf.setColumns(20); 23 | // tf.setPlaceholder("All your base are belong to us!"); 24 | // final Font f = tf.getFont(); 25 | // tf.setFont(new Font(f.getName(), f.getStyle(), 30)); 26 | // JOptionPane.showMessageDialog(null, tf); 27 | // } 28 | 29 | private String placeholder; 30 | 31 | public PHTextField() { 32 | } 33 | 34 | public PHTextField( 35 | final Document pDoc, 36 | final String pText, 37 | final int pColumns) 38 | { 39 | super(pDoc, pText, pColumns); 40 | } 41 | 42 | public PHTextField(final int pColumns) { 43 | super(pColumns); 44 | } 45 | 46 | public PHTextField(final String pText) { 47 | super(""); 48 | this.setPlaceholder(pText); 49 | } 50 | 51 | public PHTextField(final String pText, final int pColumns) { 52 | super(pText, pColumns); 53 | } 54 | 55 | public String getPlaceholder() { 56 | return placeholder; 57 | } 58 | 59 | @Override 60 | protected void paintComponent(final Graphics pG) { 61 | super.paintComponent(pG); 62 | 63 | if (placeholder.length() == 0 || getText().length() > 0) { 64 | return; 65 | } 66 | 67 | final Graphics2D g = (Graphics2D) pG; 68 | g.setRenderingHint( 69 | RenderingHints.KEY_ANTIALIASING, 70 | RenderingHints.VALUE_ANTIALIAS_ON); 71 | g.setColor(new java.awt.Color(153, 153, 153)); 72 | g.drawString(placeholder, getInsets().left, pG.getFontMetrics() 73 | .getMaxAscent() + getInsets().top); 74 | } 75 | 76 | public final void setPlaceholder(final String s) { 77 | placeholder = s; 78 | final Font f = this.getFont(); 79 | this.setFont(new Font(f.getName(), f.getStyle(), 20)); 80 | } 81 | 82 | } 83 | -------------------------------------------------------------------------------- /src/flashablezipcreator/res/1412847978411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/1412847978411.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/Actions-document-edit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/Actions-document-edit-icon.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/Documents-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/Documents-icon.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/Thumbs.db -------------------------------------------------------------------------------- /src/flashablezipcreator/res/WinRAR-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/WinRAR-icon.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/Winrar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/Winrar.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/alarm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/apk-file-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/apk-file-format.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/apk.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/apk_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/apk_big.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/bootanimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/bootanimation.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/bootanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/bootanimations.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/bootgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/bootgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/bootsubgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/bootsubgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/dark_folder_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/dark_folder_music.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/data.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/datagroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/datagroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/dll.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/file.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/folder.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/folder_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/folder_root.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/folderopened_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/folderopened_yellow.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/font.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/fontfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/fontfile.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/fonts.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/fontsfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/fontsfile.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/fontsgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/fontsgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/fontsubgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/fontsubgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/kernalsubgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/kernalsubgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/kernel.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/kernelgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/kernelgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/kernels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/kernels.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/logo.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/logo2.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/logo3.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/logo4.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/music.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/musicfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/musicfile.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/musicgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/musicgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/notification.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/project.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/project1.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/project2.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/projects.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/prop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/prop-icon.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/ringtone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/ringtone.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/root.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/rootNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/rootNode.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/rsz_11412847978411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/rsz_11412847978411.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/rsz_1rsz_11412847978411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/rsz_1rsz_11412847978411.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/system.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/systemgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/systemgroup.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/text.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/theme-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/theme-group.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/theme-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/theme-project.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/theme.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/themes.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/tree_diagramm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/tree_diagramm.png -------------------------------------------------------------------------------- /src/flashablezipcreator/res/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmenghani/AFZC/1002a9c5bae01faaaf9df0ced8a7364e594b066c/src/flashablezipcreator/res/ui.png --------------------------------------------------------------------------------