Install, Update Official Android 4.1.2 JellyBean on Galaxy Note N7000 [XXLSZ]
February 20, 2013
The official Android 4.1.2 Jelly bean has arrive for the Original Galaxy Note N7000. Galaxy Note was Samsung’s first phablet, and also industry’s phablet to catch mass market. Original Galaxy Note reached 10million sales within few months of launch. The crown was later passed to Galaxy Note II.
Note II came with several new set of features like Multi-View (multiwindow), SmartRotate, etc. Good news is that all of these features (minus AirView) are now available on Note 1 N7000 with the Jelly Bean 4.1.2 update.
Some of the Enhancements in the new Android 4.1.2 Jelly Bean Update:
- Android 4.1.2 – Build JZO54K
- Buttery Smooth Performance & Great Stability (Thanks to Project Butter)
- Multi-View (Multi Windows Multitasking, same as in Note II)
- Page Buddy
- Notification Panel can now be customized
- New Additions in Notification Panel
- Smart Rotation (Screen Display adjusts to your angle of sightings)
- Continues Input in Samsung Keyboard (Like Swipe or Android 4.2 Keyboard)
- Samsung’s Cloud services
- Features like Direct Call, Smart Stay and Pop-up Play
- New Widgets From the Galaxy S III
- 2 Home screen modes
- New Notifications bar
- Google Now
How to Update Galaxy Note N7000 to Android 4.1.2 Jelly Bean
What you need:
- Windows PC
- Drivers Download
- Odin software
- Micro-USB cable
- Jelly Bean Firmware N7000 XXLSZ firmware, Radio XXLSO (Official firmware)
Step 1. Unzip the ffile above to extract N7000XXLSZ_N7000OXALSZ_HOME.tar, this will be used in next steps.
Step 2: Enable USB debugging mode: Settings -> Applications -> Development -> USB debugging. When done, switchoff your phone.
Step 3: Put your Galaxy Note into “download mode” using the following key-combinations:
Press and hold VolumeDown + Home + Power simultaneously. In a moment you’ll see an icon on display that indicates phone has entered download mode.
Step 4: Open ODIN and connect your Note I to PC via Micro-usb cable.
Step 5: Within a matter of seconds, ODIN will detect your Note N7000 connected. In case it doesn’t detect, reconnect via usb.
Troubleshooting: If it still fails, install the driver you downloaded above and restart from Step 4.
Step 6: Click the PDA button, then browse and select N7000XXLSZ_N7000OXALSZ_HOME.tar. When ready, click “Start”. ODIN will flash and update your Firmware to Android 4.1.2 Jelly Bean.
Phone will boot into your newly installed Android 4.1.2 Jelly Bean. Enjoy!
Follow us on Google+, Twitter, Facebook for latest in Android mods, news.
Add Custom Toggles to Android 4.2 QuickSettings
December 4, 2012
Android 4.2 JellyBean brought lots of goodies to the plate. One of them was the most awaited QuickToggles / QuickSettings that let you quickly change power toggles, settings right from the Notifications bar.
If you’re a programmer/developer, ROM maker/developer, you can learn how you can add your custom Toggles to QuickSettings on Android 4.2 Jellybean.
The guide explains step-by-step how to mod your favorite ROMs and add your own Toggles to QuickSettings.
How to Add your Own Custom Toggles to Android 4.2 QuickSettings
All you need is access to Android 4.2 Jellybean Open source codebase, and start some hacking. You can also start by decompiling the SystemUI as follows:
time make -j8 SystemUI
SystemUI source code for AOKP, CM 10.1
Step 1.
Navigate to src/com/android/systemui/statusbar/phone/QuickSettings.java, and you will see two options to create a Toggle:
1. addSystemTiles:380 – Static tiles with useful information.
2. addTemporaryTiles:571 – This type of tile will get removed without activity, for example, the alarm quick setting is a temp tile.
Lets talk about the first option in a bit of detail.
// CpuInfo tile
QuickSettingsTileView cpuInfoTile = (QuickSettingsTileView)
inflater.inflate(R.layout.quick_settings_tile, parent, false);
cpuInfoTile.setContent(R.layout.quick_settings_tile_cpuinfo, inflater);
cpuInfoTile.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startSettingsActivity(Intent.ACTION_POWER_USAGE_SUMMARY);
}
});
mModel.addCpuInfoTile(cpuInfoTile, new QuickSettingsModel.RefreshCallback() {
@Override
public void refreshView(QuickSettingsTileView view, State state) {
ImageView iv = (ImageView) view.findViewById(R.id.cpuinfo_image);
TextView tva = (TextView) view.findViewById(R.id.cpuinfoa_textview);
TextView tvb = (TextView) view.findViewById(R.id.cpuinfob_textview);
Drawable d = mContext.getResources().getDrawable(R.drawable.ic_settings_performance);
String GOV = fileReadOneLine(GOV_FILE);
String FREQ = fileReadOneLine(SCALE_CUR_FILE);
iv.setImageDrawable(d);
tva.setText(GOV);
tvb.setText(FREQ);
view.setContentDescription(
mContext.getString(R.string.accessibility_quick_settings_cpuinfo, GOV));
}
});
parent.addView(cpuInfoTile);
Step 2.
The second part is updating the Toggle with a Widget view. You can view other definitions in here to update various states.
src/com/android/systemui/statusbar/phone/QuickSettingsModel.java:174
private QuickSettingsTileView mCpuInfoTile;
private RefreshCallback mCpuInfoCallback;
private State mCpuInfoState = new State();
The layout definition resides in res/layout/quick_settings_tile_cpuinfo.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright ... -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/cpuinfo_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingBottom="10dp"/>
<TextView
style="@style/TextAppearance.QuickSettings.TileView"
android:id="@+id/cpuinfoa_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="#287AA9"
android:gravity="center"/>
<TextView
style="@style/TextAppearance.QuickSettings.TileView"
android:id="@+id/cpuinfob_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="#287AA9"
android:gravity="center"/>
</LinearLayout>
Set contentDescription in res/values/strings.xml
<string name="accessibility_quick_settings_cpuinfo">CpuInfo <xliff:g id="meminfo" example="CpuInfo">%s</xliff:g>.</string>
That would create a basic Widget in your Toggles. You can always shape it to your needs, but this guide should give you a basic idea for getting started.
Related: How to Compile ROMs
Follow us on Google+, Twitter, Facebook for latest in Android.
OneClick Root Nexus 10 on Windows, OSX, Linux
November 21, 2012
Nexus 10 kicks some solid ass, with state of the art 300ppi display on a large 10″ screen. Thats way higher than anything we had ever seen on screen of such a size.
To unleash the full potential of the device, one must Root it. Although there are several ways to root Nexus 10, One-Click root for the Nexus 10 works on Windows, Linux and Mac OSX.
The OneClick root method uses Superboot, the same tool that roots wide variety of devices including Nexus 7, HTC One X, etc.
Superboot pushes a custom boot.img file onto the device that automatically installs su binaries and the Superuser APK upon the first boot.
What you need:
- Superboot r4 for Nexus 10.
- Android debugging enabled in Settings. Checkout How to enable developer options in JB 4.2
Phase I:
Unlock Nexus 10 Boot Loader
Before Rooting Nexus 10, you must unlock the Bootloader.
Step 1. Download and install Android SDK.
Step 2. Turn off device and boot into Bootloader mode by holding on to hold volume-up, volume-down and power buttons.
Step 3. Connect your device to your PC via USB and wait till any drivers are installed, which should happen automatically.
Step 4. Now go to command prompt / terminal interface on your computer and type following command:
fastboot oem unlock
Once this is done, your phone will show a screen that will prompt you regarding unlocking bootloader. Read through the instructions carefully and confirm by pressing volume up button followed by the power button.
Voila! You will now have Bootloader Unlocked.
Phase II:
How to Root Nexus 10
Step 1. Turn off your NExus 10, and then lets get into Bootloader mode by pressing volume down and volume up keys pressed, hold down the power button and connect Nexus 10 to your Computer.
For Windows
Run ‘superboot-windows.bat’ file.
For Mac OS X
In terminal, execute following command in the extracted folder:
chmod +x superboot-mac.sh
./superboot-mac.sh
For Linux (Ubuntu, Solaris, Unix etc)
In terminal, execute following command in the extracted folder:
chmod +x superboot-linux.sh
./superboot-linux.sh
After executing, reboot the device and it should be Rooted! The Superuser app should be available in launcher for future SU authorizations.
Enjoy your Rooted Nexus 10!
Enable Developer options, USB debugging on Android 4.2 Jellybean
November 15, 2012
Android 4.2 JellyBean MR1 is now available to devices like Galaxy Nexus, Nexus 7 and Nexus 4, Nexus 10. Hopefully, Google will open source it to the community, and we will see a wide adoption of Android 4.2 among ROMs like Cyanogenmod, ParanoidAndroid, etc.
If you’re a developer, you probably had hard time figuring out what happened to the “Developer Options” in Settings. Google has decided to hide this option by default and focus more on the user, perhaps. Since most users would never understand what it is about, it better off hidden, under the hood.
How to Enable Developer Options, USB Debugging on Android 4.2 JellyBean
Step 1. Go to settings > about
Step 2. Repeatedly click the Build version item, and within a matter of seconds you’ll see a Toast that claims, “You’re now a developer”.
Step 3. You should now see “Developer Options” in the settings list as second last item.
You can now enable USB debugging under Developer options.
Follow us on Google+, Twitter, Facebook for latest in Android.
Install Android 4.2 JellyBean Camera, Gallery APK
November 1, 2012
JellyBean 4.2 MR1 is announced with super tasty features. Android 4.2 would ship with number devices like Nexus 4, Nexus 7 and Nexus 10 and OTA for Galaxy Nexus.
Among the fancy new features is the New Camera with brand new clean interface and Panoramic Spherical photos.
However, if you can’t wait for Android 4.2 JellyBean, there is a good news for you. You can get all the 4.2 Gallery and Camera features on Android 4.1.
Android 4.2 JellyBean Camera, Gallery APK
Pre-requisites : Rooted Android 4.1 or better with CWM recovery.
Step 1. Download Flashable Zip
Step 2. Copy to sdcard and reboot into recovery.
Step 3. Flash Zip by browsing to the location where you kept the ZIP.
Step 4. Reboot.
Note: You must not try to unzip & install APK. Stick with what is mentioned above.

What works:
1. Panorama.
2. Photosphere. (requires gyroscope?)
3. Photo editing.
4. Sphereview.
5. All ordinary camera/video functions.
6. Should* work on ALL phones.
Troubleshooting: For gallery to not FC when rendering Sphere shots, change your system language to English (United States). This will also make Sphereview work!
Follow us on Google+, Twitter, Facebook for latest in Android.
Install Official Android 4.1.1 JellyBean on Galaxy Note [Stock, Odexed, Rooted]
October 26, 2012
Official Android 4.1.1 JellyBean for Galaxy Note 1 has been leaked to the interwebs and the ROM is super fast and stable. If you love the Touchwiz and samsung’s stock feel, this ROM is what you need.
The ROM is XXLS2 Stock Samsung Galaxy Note. It packs latest Galaxy Note apps from Galaxy Note 2 including the new gallery and S-Pen features.
ROM has very minor hiccups, which are absolutely fine to live with.
How To Install Offical, Stock Android 4.1.1 Jelly Bean on Galaxy Note
Step 1. Download ROM and save to a place in your Windows PC.
Step 2. Make sure you are on a rooted ICS-ROM or JB-ROM with CWM recovery and brickfree kernel installed. IF you’re not already, then you need to Root your Galaxy Note and install CWM recovery. You can install ICS on Galaxy Note or find a guide for Rooting on XDA.
Step 3. Copy the downloaded ROM on your Note’s SDCARD.
Step 4. Boot into recovery from your ROM OR Power off then hold Power + Volume Up + Home key. Leave the Power Key after you see Galaxy Note N7000 screen. You should now enter the Custom recovery menu.
Step 5. Wipe/Factory data reset your phone (yes this will remove all your data in phone memory)
Step 6. choose Flash Zip from Sdcard, and browse to the location where you copied the JellyBean ROM.
Step 7. On Reboot, you will boot into Stock Jelly bean. Now open Super SU-app and you might have to update SU-bin (app will do that for you if necessary!)
Voila! Enjoy the Stock JellyBean Android 4.1.1 on Galaxy Note.
Update: Troubleshooting:
- Fix Root issue with moving apps to SD here
- Fix SMS app here
Known issues:
1. bug in Samsung Keyboard (AZERTY only!) with m + n key
2. FaceUnlock not working
thread xda
Follow us on Google+, Twitter, Facebook for latest in Android.
Make, Enable Phone calls on Galaxy Tab 10.1 3G P7500
September 12, 2012
Galaxy Tab 2 can do phone calls, and several people use this 7″ device as a Phone. It looks ridiculous, but it is selling well especially in Asian markets.
Now with a hack, you can Make and receive calls using Galaxy TAB 10.1 3G version. Of course you need to be rooted in order to do this and would need an earpiece for Phone calling.
How to Make Phone calls from Galaxy TAB 10.1 3G P7500
Prerequisites:
- Samsung Galaxy Tab 10.1 3G [GT-P7500].
- You Must have Unlocked Recovery Mode. For Flashing .zip
- Any ROM based on Stock ICS 4.0.4 OR Jellybean CyanogenMod10 Or ICS CyanogenMod9 OR AOKP OR Stock ICS 4.0.4 Deodex OR Odex.
Supported ROMs
If you’re not on one of the supported ROMs listed above, try any of these ROMs:
- [Deodexed]Stock ICS rom XXLQ8 & Stock ICS rom XWLP5 - Get it Here
- [Official] Stock ICS rom XXLQ8 & Stock ICS rom XWLP5.
- [ROM][ICS] JellyBeanRom ICS - Get it Here
- [ROM][JB][CM10] Android 4.1.1 – CM10 Preview - Get it Here
- [ROM][GT-P7500] CyanogenMod 9 Nightlies Galaxy Tab 10.1 3G (P4) - Get it Here
Step 1. Reboot to Recovery Mode, Create a nandroid backup (just to be sure)
Step 2. Install File CWM_I9103XXLQ3_Modem.zip from here.
Step 3. Install File Voice Call Enable. this file varies by your ROM:
Download the Voice Call Enable Zip from here corresponding to each of the following ROMs
- [Stock] ICS 4.0.4 ROM Build 1.zip
- [CM10] JB 4.1.1 ROM Build 1.zip
- [CM9] ICS 4.0.4 ROM Build 1.zip
- [AOKP] ICS 4.0.4 ROM Build 1.zip
Step 4. Wipe Cache & Dalvik Cache.
Step 5. Reboot the Galaxy Tab 10.1 and yp=ou would now have a Phone app to make voice calls from the cell network.
Have fun making calls from Galaxy Tab 10.1 3G
Follow us on Google+, Twitter, Facebook for latest in Android mods, news.






