3Minit Projects

Here is a list of all my current projects. If you have any suggestions or queries, please don`t hesitate to contact me via email or in the forum.

Unable to load image

3Minit Battery App

This app is the ultimate battery customization tool, It allows you to view and choose from over 1100 battery types and counting.  Simply select your favorite battery type and with a click you can download and set it straight to your Statusbar and even save the battery to storage for later use.


Please note this needs a small modification to SystemUI.apk to work. Please see the Guides section on how to do this.

Learn more
Download
Unable to load image

3Minit Rebooter

This app is a must have for all Android modding enthusiast! Along with its customizable widgets, it will allow you to quickly reboot into various modes and even flash a zip right from your homescreen.  You need to be Rooted and have the latest BusyBox for this to work correctly.

Learn more
Download
Unable to load image

3Minit QuickLaunch

This mod will add a customizable panel of quickly accessible apps to your Dropdown notification bar. It can be placed in any location for convinience and apps can easily be removed, or rearranged, to suit your needs.


Please note this needs a small modification to SystemUI.apk to work. Please see the Guides section on how to do this.

Learn more
Download
Unable to load image

3Minit Android Studio (BETA)

This app allows you to easily do many tasks required for android modding and rom development. This is still in BETA mode, so bugs are expected. If you find one, please report it in the Forum

  • Easy to use GUI
  • Deodex apks
  • Build (compile) apks
  • Framework tag support
  • Easily swap between apktool versions
  • Use custom aapt version
  • Save output logs
  • Auto sign apk
  • Settings
  • More to come
Learn more
Download
Unable to load image

3Minit Deodexer Mac (BETA)

This app allows you to easily and rapidly deodex your apk and jar files. It's multi thread enabled and will use all available threads for increased speeds. This is still in BETA mode, so bugs are expected. If you find one, please report it in the Forum

Learn more
Download

3Minit Team Projects

Here is a list of all the 3Minit team projects. If you have any suggestions or queries please don`t hesitate to contact them by email or in the forum.

Unable to load image

3Minit CM11 Theme By pas2001

This is a theme for use with CM11 roms with the latest Theme chooser. It is designed for XXHDPI resoulutions if you use on a lower resolution device it may show improper icon sizes. Plese reboot after applying for perfect results.

  • Framework
  • Calculator
  • Camera
  • Contacts
  • Clock
  • Dialar
  • Keyboard
  • Keygaurd
  • Package Installer
  • Settings
  • SystemUI
  • Playstore
  • Launcher
  • Calendar
  • Gallery3D
  • Hangouts
  • Theme Chooser
  • Wallpaper
  • Bootanimation
  • MMS
Learn more
Download
Unable to load image

3Minit CM12 Theme By pas2001

This is a theme for use with CM12 roms with the latest Theme chooser. It is designed for XXHDPI resoulutions if you use on a lower resolution device it may show improper icon sizes. Plese reboot after applying for perfect results.

  • Framework
  • Calculator
  • Camera
  • Contacts
  • Clock
  • Dialar
  • Keyboard
  • Keygaurd
  • Package Installer
  • Settings
  • SystemUI
  • Playstore
  • Launcher
  • Calendar
  • Gallery3D
  • Hangouts
  • Theme Chooser
  • Wallpaper
  • Bootanimation
  • MMS
Learn more
Download
Unable to load image

Wiima NBC theme CM11 By wii360

You will need Cm11 with the latest theme engine to use this theme. Themed apps include:

  • Framework
  • Calculator
  • Camera
  • Contacts
  • Clock
  • Dialar
  • Keyboard
  • Keygaurd
  • Package Installer
  • Settings
  • SystemUI
  • Playstore
  • Launcher
  • Calendar
  • Gallery3D
  • Hangouts
  • Theme Chooser
  • Wallpaper
  • Bootanimation
Learn more
Download
Unable to load image

Dark And Blue Theme CM12 By wii360

You will need Cm12 with the latest theme engine to use this theme. Themed apps include:

  • Framework
  • Calculator
  • Camera
  • Contacts
  • Clock
  • Dialar
  • Keyboard
  • Keygaurd
  • Package Installer
  • Settings
  • SystemUI
  • Playstore
  • Launcher
  • Calendar
  • Gallery3D
  • Hangouts
  • Theme Chooser
  • Wallpaper
  • Bootanimation
Learn more
Download

Downloads


3Minit Battery

File MD5 Download
3Minit Battery App (Paid) c09dff5d7ed75049fc611a791c2849b2 v3.1
3Minit Battery App (Free) 22d41f437c816250e3bea6841b593482 v3.1
Smali files and MinitBatteryResources.apk a74cfe73b78bd215e6ae0b27cf4b208a v3.1

3Minit Rebooter

File MD5 Download
3Minit Rebooter App c5a96bfc8d772fa55db6bb8a9f7d9476 v1.0

3Minit QuickLaunch

File MD5 Download
3Minit QuickLaunch App c5a96bfc8d772fa55db6bb8a9f7d9476 v1.1
Smali files for apktool 1.5.x bc0afe23017cb58420c0422dac1f0836 v1.1
Smali files for apktool 2.x.x 0b061b0f12f237f791b9d5439d5be93d v1.1

3Minit Android Studio

File MD5 Download
3Minit Android Studio (Windows)(Mac) 8C36DB509B704D8DACE83D9E33C86807 v0.1

3Minit Deodexer

File MD5 Download
3Minit Deodexer (Mac OSX 10.9) d2a4fe9a81734f1c58513ebcdff13fd9 v0.1

Guides


3Minit Battery

  1. Install the 3MinitBatteryResources.apk

  2. Decompile SystemUI.apk then once complete navigate to: res/layout/status_bar.xml (for some older Samsung devices: tw_status_bar.xml) or system_icons.xml for Android 5.x

  3. Search for the line that contains:
    android:id="@id/battery

    find:
    android:layout_width="wrap_content"
    and
    android:layout_height="wrap_content"

    and change them to:
    android:layout_width="0.0dip"
    and
    android:layout_height="0.0dip"

    then directly under this line add:
    <com.android.systemui.statusbar.policy.MinitBattery android:layout_width="wrap_content" android:layout_height="wrap_content" />
    EXAMPLE:
    <ImageView android:id="@id/battery" android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_marginBottom="@dimen/battery_margin_bottom" android:layout_marginStart="7.0dip" />
    <com.android.systemui.statusbar.policy.MinitBattery android:layout_width="wrap_content" android:layout_height="wrap_content" />
  4. Download the Smali files and place them in smali/com/android/systemui/statusbar/policy folder. Make sure to download the files to match your apktool version, or you'll get recompile errors.

3Minit QuickLaunch

  1. Decompile the SystemUI.apk and navigate to smali/com/android/systemui/statusbar/policy

  2. Download the QuickLaunch Smali files (make sure you get the files to match your apktool version or you will get errors) unzip them and place the folder into the location above.

  3. Navigate to res/layout and open status_bar_expanded.xml look for this line:
    <LinearLayout android:orientation="vertical" android:id="@id/scrollCart" android:layout_width="fill_parent" android:layout_height="wrap_content">
    (Note this is based on TW stock files. You may have to mess with the location in your file to find correct placemant)

  4. Directly below that line add:
    <HorizontalScrollView android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="wrap_content">
                <com.android.systemui.statusbar.policy.quicklaunch.QuickLaunchContainer android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" />
    </HorizontalScrollView>
  5. Recompile and push to your device. It's done!
  6. Install either the paid or free app and enjoy.

Contact Me



Can't read the image? click here to refresh