Quantcast
Channel: xda-developers - Galaxy Note GT-N7000 Android Development
Viewing all 232 articles
Browse latest View live

[DEV][MODDING] CRT, Airview, 4-way reboot, ink effect, phone hack, SMS hack...etc

$
0
0
Hello buddies..
From the concept SHARING IS CARING, I am going to share with you how to hack your GT-N7000 system apks, so everyone can use this thread as a reference for how to mod their apks.
You have to keep in mind that there are different modding hacks that until this time I couldn't figure out how it is done. So please let me know if you have any modding that I didn't mentioned :D..
So let's start..!!

Needed tools:
1) APK-Multi tool. You can use my repacked one (Nov 2012) from here.
2) Backsmali/Smali program from here
3) Notepad++ program from here
4) WinRAR or 7-zip archiver
5) Willing of learning and some patience and cold nerves!!

Quote:

  • I am not going to teach you how to use these programs because I am assuming that you already know how to use them!!.
  • You must deodex your apk before proceeding.
  • Don't forget to install framework-res and twframework-res dependacies by APK-Multi tool before doing any modding!!
  • Also don't forget to fix permissions to rw-r--r-- whenever you push your file to system partition..!!

Airview enabling
 

1. Just add this file to /system/etc/permissions in your phone.
2. Fix permission to rw-r--r-- and reboot


CRT TV effect
 

Quote:

Remember to set compression level to 0 in APK-Multi tool before proceeding in these steps
  1. Decompile framework-res.apk using APK-Multi tool.
  2. Edit the file \res\values\bools.xml
  3. Change value of
    Code:

    <bool name=”config_animateScreenLights”>true</bool>
    to false
  4. Compile framework-res.apk and push it to your phone.


Change default home screen wallpaper and default lock screen wallpaper

 

Quote:

Remember to set compression level to 0 in APK-Multi tool before proceeding in these steps
1. Decompile framework-res.apk using APK-Multi tool
2. Go to \res\drawable-xhdpi folder and change the following pics to what you want:
  • default_wallpaper (Home screen wallpaper)
  • keyguard_default_wallpaper (Lock screen wallpaper)
3. Make sure to rename your wallpaper to the exact name as the one that you will change
4. Compile framework-res.apk and push it to your phone.

Here are some pics taken from SGN2: download


4-way Reboot Menu
 

1. We will need Backsmali/Smali program for this.
2. Download the following resources files (GlobalActions$99$1.smali, GlobalActions$99$2.smali, GlobalActions$99.smali)
3. Put the android.policy.jar in baksmali folder.
4. Follow its procedure to baksmali android.policy.jar, if done you will have classout folder.
5. Open classout folder and go to \com\android\internal\policy\impl and paste the three resource files; (GlobalActions$99$1.smali, GlobalActions$99$2.smali and GlobalActions$99) there.
6. With notepad++ open the GlobalActions.smali. (Note: Don't confuse it with GlobalAction$Action.smali)
7. In GlobalActions.smali, change GlobalActions$5 to GlobalActions$99 on both lines, and save it.
>>The Code should look like this:<<
Code:

new-instance v0, Lcom/android/internal/policy/impl/GlobalActions$99;

const v1, 0x108064b

const v2, 0x1040169

invoke-direct {v0, p0, v1, v2}, Lcom/android/internal/policy/impl/GlobalActions$99;-><init>(Lcom/android/internal/policy/impl/GlobalActions;II)V

iput-object v0, p0, Lcom/android/internal/policy/impl/GlobalActions;->mRestart:Lcom/android/internal/policy/impl/GlobalActions$SinglePressAction;

8. Now Open GlobalActions$SinglePressAction.smali with Notepad++. Just between line ".end annotation" and "# instance fields" place your cursor and hit enter 2 times to make room (i.e leave 2 lines empty above "# instance fields" and 2 lines bellow ".end annotation") to paste THIS code (Blue one only)
Code:

.end annotation


# static fields
.field protected static rebootMode:I

.field protected static final rebootOptions:[Ljava/lang/String;



# instance fields

9. Still in GlobalActions$SinglePressAction.smali look for the code "direct methods". Place your curser directly behind "direct methods" and hit enter to bring your curser down to the next line. Then paste THIS code (Blue one only):
Code:

# direct methods
.method static constructor <clinit>()V
    .registers 3

    const/4 v0, 0x4

    new-array v0, v0, [Ljava/lang/String;

    const/4 v1, 0x0

    const-string v2, "Reboot"

    aput-object v2, v0, v1

    const/4 v1, 0x1

    const-string v2, "Hot Reboot"

    aput-object v2, v0, v1

    const/4 v1, 0x2

    const-string v2, "Download"

    aput-object v2, v0, v1

    const/4 v1, 0x3

    const-string v2, "Recovery"

    aput-object v2, v0, v1

    sput-object v0, Lcom/android/internal/policy/impl/GlobalActions$SinglePressAction;->rebootOptions:[Ljava/lang/String;

    return-void
.end method

.method protected constructor <init>(II)V

10. Recompile (smali) your jar. You will get "classes.dex" and with 7zip, open the archive of the original Android Policy.jar. Then drag and drop the classes.dex you just compiled into the jar and push it to your phone.

Additional
If you want to change "Choose Reboot Method" text on top of that menu then:
- Open GlobalActions$99.smali.
- Go to following code and made your change (N.B: if you delete this entire code, you will disable head title of "Choose Reboot Method")
Code:

const-string v2, "Choose Reboot Method"

    invoke-virtual {v1, v2}, Landroid/app/AlertDialog$Builder;->setTitle(Ljava/lang/CharSequence;)Landroid/app/AlertDialog$Builder;

    move-result-object v1



Ink effect enabling
 

This is handy one :crying:
To do this you will need to play with 2 files (android.policy.jar and SecSettings.apk) and lib folder.
Please download ink effect resources from here.

A. android.policy.jar file:
1. Copy the contents of “to android.policy.jar” folder.
2. Decompile android.policy.jar by backsmali/smali program.
3. Go to classout\com\android\internal\policy\impl\sec\ folder and paste the content of “to android.policy.jar” folder there and accept overwriting.
4. Now compile (smali), the result will be class.dex file. Open the original android.policy.jar by WinRAR and drag drop class.dex file inside android.policy.jar file

Now push the new modified android.policy.jar to system\framework in your phone

B. SecSettings.apk file:
Decompile SecSettings.apk by APK-Multi tool
I. Image resource
Copy all images in “to res.drawable-xhdpi” folder to res\drawable-xhdpi

II. Adding lines to strings.xml resources
1. Go to res\values and open strings.xml by notepad++
2. Go to the end of strings.xml file and just before </resources> line add new strings for ink color that are missing; here we will add 3 lines for the 3 missing colors, so we will just add the following lines:
Code:

    <string name="ink_effect_color_none">None</string>
    <string name="ink_effect_color_pink">Pink</string>
    <string name="ink_effect_color_lightblue">Light Blue</string>

3. Now save your file.

Quote:

NOW you need to recompile your SecSettings.apk!! This is important to generate new id in public.xml files automatically!!
NOW decompile the new SecSettings.apk (be alert not to decompile the old one, it will not include the new changes!!)
You can delete the old SecSettings.apk from project folder to not cause confusion.

III. InkeffectPreview.smali
1. Copy the files InkeffectPreview.smali
2. Go to smali\com\android\settings and pate it there and accept changes.
Now this is the tricky part..!!
3. Open it and go to the following section:
Code:

    :array_14
    .array-data 0x4
        0xb7t 0x3t 0x2t 0x7ft
        0xb9t 0x3t 0x2t 0x7ft
        0xcet 0x1t 0x2t 0x7ft
        0xcat 0x1t 0x2t 0x7ft
        0xc6t 0x1t 0x2t 0x7ft
        0xcct 0x1t 0x2t 0x7ft
        0xd0t 0x1t 0x2t 0x7ft
        0xc8t 0x1t 0x2t 0x7ft
        0xb5t 0x3t 0x2t 0x7ft
    .end array-data

    :array_2a
    .array-data 0x4
        0xb8t 0x3t 0x2t 0x7ft
        0xbat 0x3t 0x2t 0x7ft
        0xcft 0x1t 0x2t 0x7ft
        0xcbt 0x1t 0x2t 0x7ft
        0xc7t 0x1t 0x2t 0x7ft
        0xcdt 0x1t 0x2t 0x7ft
        0xd1t 0x1t 0x2t 0x7ft
        0xc9t 0x1t 0x2t 0x7ft
        0xb6t 0x3t 0x2t 0x7ft
    .end array-data

4. You can see here several numbers... these are [ink_ nameofcolor] ids for array_14 and [ink_ nameofcolor _h] ids for array_0a in public.xml.
5. So you have to open public.xml file from res\values folder
6. Search for colors ids you added… for start search for “ink_none” for array_14 section and “ink_none_h” for array_0a section.
We will start with “ink_none”
The line will be something like this:
Code:

<public type="drawable" name="ink_none" id="0x7f0203b7" />
And if you noticed the array_14 section in InkeffectPreview.smali the first line will represent the ink_none in public.xml file. So we have to convert public.xml ids to array_14, SO PLEASE match to colors here:
Code:

<public type="drawable" name="ink_none" id="0x7f0203b7" />
to in array_14 section:
Code:

0xb7t 0x3t 0x2t 0x7ft
Yes that’s it!! Do the same for “ink_none_h” id in array_0a section.
Code:

<public type="drawable" name="ink_none_h" id="0x7f0203b8" />
to in array_0a section:
Code:

0xb8t 0x3t 0x2t 0x7ft
7. Now we have finished editing InkeffectPreview.smali for the two none color ids (ink_none & ink_none_h)
8. Do the same for the rest of colors (the orders of array_14 & array_0a will represent the order of ink colors in your settings menu later on, so it must be in exact order)

IV. LockScreenSettings.smali
1. Copy the files LockScreenSettings.smali
2. Go to smali\com\android\settings and pate it there and accept changes.
3. Open it and go to the following section:
Code:

    :array_10
    .array-data 0x4
        0x09t 0xft 0x9t 0x7ft
        0x0at 0xft 0x9t 0x7ft
        0x4ft 0xdt 0x9t 0x7ft
        0x50t 0xdt 0x9t 0x7ft
        0x52t 0xdt 0x9t 0x7ft
        0x53t 0xdt 0x9t 0x7ft
        0x54t 0xdt 0x9t 0x7ft
        0x51t 0xdt 0x9t 0x7ft
        0x0bt 0xft 0x9t 0x7ft
    .end array-data

4. You can see here several numbers... these are [ink_effect_color_nameofcolor] ids in public.xml
5. The first line will represent the “ink_effect_color_none” text in public.xml file. So we have to convert public.xml ids to array_10, SO PLEASE match to colors here:
Code:

<public type="string" name="ink_effect_color_none" id="0x7f090f09" />
to in array_10:
Code:

0x09t 0xft 0x9t 0x7ft
6. Now we finish editing LockScreenSettings.smali for the none color ids (ink_effect_color_none) this will represent the text color name in settings menu later on, so make color orders as same as order in InkeffectPreview.smali or you will have wrong color to wrong text color name in settings menu!!
7. Do the same for the rest of colors.

NOW we finally finish editing SecSettings.apk. Recompile the finished project and push it to your phone.


C. lib folder
Just copy the content of “to lib folder” to lib folder in system\lib in your phone.

Quote:

Black and Red color got removed from CircleUnlockRippleRenderer files. Pink and Brown are added instead.
If you want to add new colors, you have to modify renderer files. Arrays are there, with 3 dimension vector indicating RGB (Float,Float,Float). But since it's real hard to get float data since smali doesn't understand what the "float" is, so I suggest you using Eclipse to write float as java, compile app, decompile app to get float in smali. (thanks to jarari2 for providing this info)


Integrating application in settings menu
 

This really handy one.. so take care!!:confused:
In this tutorial, we will add USB-Mode program to Settings menu as an example

On your PC
1) Decompile SecSettings.apk.
2) Decompile the program that you want to add to settings menu (USB-Mode)
3) Go to \res\drawable-xhdpi folder and add icon for your program that you want to add (you can take it from decompiled wanted program (USBMode folder).



4) Go to \res\values folder and open strings.xml by NotePad++ and add these lines for your program
Code:

    <string name="gloryromaddons">GloryROM Addons</string>
    <string name="usbswitcher_text">USB mode switcher</string>

Here change “gloryromaddons” with any thing you want to show as a header in the Settings menu. “usbswitcher_text” is your wanted program
5) Go to \res\xml folder and open settings_headers.xml by NotePad++ and add these lines (the place you put these lines will be the place where added program will be displayed in Settings menu)
Code:

<header android:title="@string/gloryromaddons" />
    <header android:icon="@drawable/usbswitcher" android:title="@string/usbswitcher_text">
        <intent android:targetPackage="in.zatta.USB_switch" android:action="android.intent.action.MAIN" android:targetClass="in.zatta.USB_switch.USB_switcherActivity" />
    </header>

The first line reflect the header title in settings menu (So gloryromaddons will be seen as “GloryROM Addons” in the phone, see strings.xml that we edited and you will figure it out!!)

The 2nd line is for added program:
  • android:icon=@drawable/name of icon you put in drawable-xhdpi folder (here we put usbswitcher as the icon name inside drawable-xhdpi)
  • android:title=@string/name of string put for added program in strings.xml (here we put usbswitcher_text as in strings.xml)

The 3rd line is the functionality and is the most difficult one:
  • android:targetPackage=package of wanted program inside its own AndroidManifest.xml (here it is “in.zatta.USB_switch”)
  • android:action=first action of wanted program inside its own AndroidManifest.xml (here it is “android.intent.action.MAIN”)


  • androidtargetClass= android:targetPackage.Action (we have android:targetPackage from previous step but we need also .Action how to get it??) This is the tricky one so do the following:
On your phone:
install the program you want to add (USB mode switcher) and ADW launcher from Google play and make ADW launcher as your phone launcher. Find a blank area on your homescreen(s), long press, then select custom shortcut --> pick your activity --> activities --> browse down until you find USB switcher app and expand with the arrow on the left of USB switcher, you will see several actions (some may have only one). The first one in the list is usually its opening class; it is in between the ( )'s. In this example it is .USB_switcherActivity



Go back to your PC:
So now androidtargetClass= android:targetPackage.Action will be:
androidtargetClass= in.zatta.USB_switch.USB_switcherActivity

6) Now compile SecSettings and push it to your phone.

Additional step:
If you want to hide this app from applications drawer do the followings:
1) Decompile your desired app (here USB-Mode.apk)
2) Gto AndroidManifest.xml file and open it by NotePad++
3) Delete this line :
Code:

<category android:name="android.intent.category.LAUNCHER" />
4) Compile your app as non system apk and sign it then push it to your phone


Call record enabling
 

1. Put the SecPhone.apk in baksmali folder.
2. Follow its procedure to baksmali SecPhone.apk, if done you will have classout folder.
3. Open classout folder and go to \com\android\phone\PhoneFeature.smali, open it by NotePad++ and search for line makeFeatureForUsa()V and put these lines (Blue color text only) before "return-void" line:
Code:

    invoke-static {}, Lcom/android/phone/PhoneFeature;->makeFeatureForUsa()V

    .line 899
    sget-object v0, Lcom/android/phone/PhoneFeature;->mFeatureList:Ljava/util/HashMap;

    const-string v2, "voice_call_recording"

    const/4 v4, 0x1

    invoke-static {v4}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;

    move-result-object v3

    invoke-virtual {v0, v2, v3}, Ljava/util/HashMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;

    return-void

4. Save the file and recompile (smali) your SecPhone.apk. You will get a "classes.dex" file. With WinRAR, open the the original SecPhone.apk. Then drag and drop the classes.dex you just compiled into the SecPhone.apk. Push the SecPhone.apk to your phone.


Disabling ascending ringtone
 

1. Put the SecPhone.apk in baksmali folder.
2. Follow its procedure to baksmali SecPhone.apk, if done you will have classout folder.
3. Open classout folder and go to \com\android\phone\Ringer$1.smali. Search for setStreamVolume. There should be two results. Delete the first one (the whole line).
Code:

    .line 394
    iget-object v1, p0, Lcom/android/phone/Ringer$1;->this$0:Lcom/android/phone/Ringer;

    iget-object v1, v1, Lcom/android/phone/Ringer;->mAudioManager:Landroid/media/AudioManager;

  invoke-virtual {v1, v3, v5, v4}, Landroid/media/AudioManager;->setStreamVolume(III)V

Now search for nop (usually at the bottom of the file!!), copy it and hit enter twice and paste again (see code bellow, the blue one). "leave one line space in between each line":
Code:

    goto/16 :goto_b

    .line 717
    nop

    nop

    :pswitch_data_1ca
    .packed-switch 0x1

4. Save Ringer$1.smali
5. Recompile (smali) your SecPhone.apk. You will get a "classes.dex" file. With WinRAR, open the the original SecPhone.apk. Then drag and drop the classes.dex you just compiled into the SecPhone.apk. Push the SecPhone.apk to your phone.


Smart Rotation enabling
 

1- Decompile SecSettings.apk and go to smali/com/android/settings/DisplaySettings.smali
2- Open this smali file with a NotePad++ and look for these lines and delete them all:
Code:

    invoke-virtual {p0}, Lcom/android/settings/DisplaySettings;->getPreferenceScreen()Landroid/preference/PreferenceScreen;
   
    move-result-object v12
   
    iget-object v13, p0, Lcom/android/settings/DisplaySettings;->mSmartRotation:Landroid/preference/CheckBoxPreference;
   
    invoke-virtual {v12, v13}, Landroid/preference/PreferenceScreen;->removePreference(Landroid/preference/Preference;)Z

3. Recompile and push to your phone.


4 Lockscreen shortcuts enabling
 

1- Decompile SecSettings.apk and go to smali/com/android/settings/lockscreenshortcut/LockScreenShortcutSettings.smali
2- Open this file with notpad++ and change the following line:
Code:

# direct methods
.method static constructor <clinit>()V
    .locals 2

    .prologue
    const/4 v1, 0x0

    .line 79
    const/4 v0, 0x4

    sput v0, Lcom/android/settings/lockscreenshortcut/LockScreenShortcutSettings;->MAX_SHORTCUT_ICON:I

to:
Code:

# direct methods
.method static constructor <clinit>()V
    .locals 2

    .prologue
    const/4 v1, 0x0

    .line 79
    const/4 v0, 0x3

    sput v0, Lcom/android/settings/lockscreenshortcut/LockScreenShortcutSettings;->MAX_SHORTCUT_ICON:I

3- Save file and recompile and push to your phone.


SMS hacks: 200 contact recipients and disable auto converting to MMS, displaying sent Time instead of the received time
 

Decompile SecMMS.apk file by APK-Multi tool

I. Increase Contacts adding for the message:
In /res/xml/mms_config.xml change the following values:
Code:

<int name="recipientLimit">10</int>
to:
Code:

<int name="recipientLimit">200</int>
II. Change the AutoConverting:
still in mms_config.xml file, change the following values:
Code:

<int name="recipientLimit">10</int>
to:
Code:

<int name="recipientLimit">200</int>
III. Display sent tme instead of the received time:
1. Go to /smali/com/android/mms/transaction/SMSReceiverService.smali, search for “currentTimeMillis" and change the following values:
Code:

invoke-static {}, Ljava/lang/System;->currentTimeMillis()J
to:
Code:

invoke-virtual {p1}, Landroid/telephony/SmsMessage;->getTimestampMillis()J
2. Search again for next “currentTimeMillis" and change the following values:
Code:

invoke-static {}, Ljava/lang/System;->currentTimeMillis()J
to:
Code:

invoke-virtual {v0}, Landroid/telephony/gsm/CbMessage;->getTimestampMillis()J
3. Save changes and compile.
Quote:

If it doesn't work, clear the cache, the Dalvik cache, and also clear data for Messaging under Settings->Applications->Manage Applications (it won't delete your messages).


Unlimited Multiwindow apps
 

For this one, we need to play with 2 files (flashbarservice.apk and services.jar)

A. Flashbarservice.apk:
1. Decompile the flashbarservice.apk with APK-Multi tool.
2. Go to \smali\com\sec\android\app\FlashBar Service\FlashBarInfo.smali.
3. Open the file FlashBarInfo.smali using notepad++.
4. search for .method public generateFlashBarList()V and change the following code from:
Code:

const-string v8, "android.intent.category.MULTIWINDOW_LAUNCHER"
to:
Code:

const-string v8, "android.intent.category.LAUNCHER"
5. Save and recompile and push to your phone.

B. services.jar:
1. Decompile services.jar by Backsmali/smali program.
2. Go to classout\smali\com\android\server\am\Multi WindowManagerService.smali
3. Open the file using notepad++ and search for following .method public isSupportApp(Ljava/lang/String)Z. Change the code from:
Code:

.method public isSupportApp(Ljava/lang/String;)Z
    .locals 1

    iget-object v0, p0, Lcom/android/server/am/MultiWindowManagerService;->mSupportAppList:Ljava/util/ArrayList;

    invoke-virtual {v0, p1}, Ljava/util/ArrayList;->contains(Ljava/lang/Object;)Z

to (the green to blue lines):
Code:

.method public isSupportApp(Ljava/lang/String;)Z
    .registers 2

    .prologue
    const/4 v0, 0x1

    return p0
.end method

4. Save file and recompile (Smali), You will get a "classes.dex" file. With WinRAR, open the the original service.jar. Then drag and drop the classes.dex you just compiled into the service.jar. Then push it to your phone.


Battery theming
 

First download my battery icon packs from here and use it as a resource (of course you can create your own!!).
1. Decompile SystemUI.apk with APK-Multi tool.
2. In Battery icon pack folder choose your desired battery theme and copy all png icons ONLY.
3. Go to \res\drawable-xhdpi folder and paste your icons there.
4. Now go back to Battery icon pack folder and in your desired battery theme folder, copy the two xml files (stat_sys_battery.xml and stat_sys_battery_charge.xml).
5. Go to \res\drawable folder and paste them there and accept changes.
Quote:

These xml files are encoded with a code that make battery discharging and charging animation; so if you got enough png icons, you can create your own lines in these xml files for better animation effects
6. Recompile and push it to your phone.


These are all what I know from reading here and there :cool:
So if you find this thread useful, I just want you to pray for me and nothing else :angel:
and if you find another apk modding tutorials, please let me know (SHARING IS CARING DUDES!! :D)

and that is it.. and please stay safe..
Peace :)

[ROM][JB][XXLSC][TW]......GalactusNOTE...v1 [11.12.12]

$
0
0
Hi Everyone.

Here is my ROM which i created for myself but thought id share it.

XXLSC

Features:
Philz 3.73
Deodexed and zipaligned
AIRVIEW working - Gallery/Videos/Snote
Lockscreen shortcuts
INK Effect
5x6 App Draw
Build.Prop Tweaks
Mulitiview for all apps
Playstation Store
Smart Rotation
Smart Stay
Working S-Voice
4 Way Reboot
Modified Framework
Custom Bootanimation
More that i forget..............

Some apps have been removed (Samsung Bloatware)
Gmail
Email
Exchange
(Most of the Removed stuff can be downloaded if needed from app store)


Installation Method:
Download Rom and save to SD Card/Phone
Ensure your on a safe Kernel
Reboot into Recovery
Wipe.Wipe.Wipe
Flash Rom

Credits:
Eybee - for PM Help
Robbie Hood - for PM help + INK Effect & much More
TheRING - PM Help
Philz - For Awesome Safe Kernels
anyone else who i forgot im sorry.........PM me add ill add you :)

Ive Tested this ROM alot as ived been using it as a daily driver for weeks now.
i havent come across any bugs.................if you find any, let me know and ill add to bug List


Bug List:
Nothing yet

Some Apps have been SymLinked to Preload so be aware if flashing any Mods not created by me.

DOWNLOAD: http://d-h.st/Y2F

I Take no Resposibility for a broken Device..............

[ROM][CM10.1][4.2.1] Cyanogenmod 10.1 Unofficial Nightlies

$
0
0
With Entropy's permission I'll be building and publishing unofficial nightlies while he is away or until Jenkins starts pushing the official ones.

You should know that these Roms are experimental and not for everyone. Flash them only if you feel you know your way round.


Quote:

Originally Posted by Entropy512 (Post 35333460)
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*
* Submitting bug reports on nightly builds is the leading
* cause of male impotence.


Quote:

Originally Posted by Entropy512 (Post 35333460)
- There are bugs and we know them all. Don't try to report bugs or complain about. We'll blacklist you.
- No, we don't accept feature request. We've enough work to do with fixing bugs.
- Don't ask for changelogs!
- Never ask for new builds!
- Use it or leave it!
- Don't create a ROM based upon this! Creating a ROM on a buggy and unstable base is a stupid idea!
- kkthxbye


- UI: Apps like NHK are broken
- Audio: bugs, missing features
- Camera: Recording partially broken
- FM Radio: unsupported
- TV Out: unsupported, not likely to ever work (there is small hope now but not much)
- Lots of missing and yet unimplemented features
- and a lot more


Quote:

Originally Posted by Entropy512 (Post 35333460)
First time installing CyanogenMod 10.1 to your Galaxy S II, or coming from another ROM:
- Make sure you're NOT RUNNING A KERNEL WITH THE MMC-SUPERBRICK-BUG. If you're unsure, flash this ClockworkMod-Recovery using Odin/Heimdall.
- Make sure you're running a proper working ClockworkMod-Recovery
- Copy GApps and CM10.1 ZIPs to your internal SDCard
- Boot into Recovery
- Flash CM10.1 zip from internal SDCard
- Flash GApps zip from internal SDCard
- DO A DATA WIPE / FACTORY RESET (otherwise your device will be stuck at boot)
- Reboot
- Don't restore system data using Titanium Backup!
- Restoring Apps + Data might cause problems and is not recommended, avoid it if possible!

Addendum: After you finish the flashing process and attempt to reboot your CWMR might ask you:

Root access possibly lost. Fix?

Accept, and accept

- yes - fix root (/system/bin/su)

And everything will be fine. This is probably due to the fact that the kernel is still missing some patches.



Quote:

Originally Posted by Entropy512 (Post 35333460)
Upgrading from earlier version of CyanogenMod 10.1:
- Copy CM10.1 ZIP to your internal SDCard
- Boot into Recovery
- Flash CM10.1 zip from internal SDCard
- Reboot


CM10.1 unofficial builds:

cm-10.1-20121213-chasmodo-n7000.zip


Gapps:

gapps-jb-20121212-signed.zip


Quote:

Originally Posted by Entropy512 (Post 35333460)
CyanogenMod is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.

All the source code for CyanogenMod is available in the CyanogenMod Github repo. And if you would like to contribute to CyanogenMod, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.

Quote:

Originally Posted by Entropy512 (Post 35333460)
If you want to donate a few bucks for the work we're doing in our freetime, goto teamhacksung website and hit the big donate button.
Thanks to all donators!

N7000BLS4TCE – Galaxy Note Android 4.1.2 Jelly Bean TEST firmware

$
0
0


So please be careful and if you do not know what you are doing stay away!
Some of the Enhancements in the new 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)
- Multi-View can also be disabled
- Ripple Effect on Lock Screen
- 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
- Direct Call, Smart Stay and Pop-up Play Features
- New Widgets From the Galaxy S III
- 2 Home screen modes
- New Notifications bar
- Google Now

This is a PRE-RELEASE version not official from KIES.
As this is a PRE-RELEASE firmware so expect some minor bugs.
Firmware Details:
Android Version: 4.1.2 – JZO54K (Jelly Bean)
PDA: N7000UBLS4
CSC: N7000UBLS1
MODEM: N7000TCELS1
Build Date: 30th November 2012
Region: South America
Country: Mexico
Download: N7000UBLS4_N7000TCELS1_TCE.zip

Flashing Instructions:
- Unzip the file
- Open Odin 3.04 (Get it from HERE)
- Restart phone in download mode (Home+power+vol down)
- Connect phone and wait until you get a yellow sign in Odin
- Add CODE_N7000UBLS4_619662_REV02_user_low_ship.tar.md5 to PDA
- MODEM_N7000UBLS1_REV_05_CL1228938.tar.md5 to PHONE
- Add CSC_TCE_N7000TCELS1_619662_REV02_user_low_ship.tar .md5 to CSC
- No need to use the Pit file
- Make sure re-partition NOT ticked
- Start flash, sit back and wait a few minutes.

Sourche: Sammobile.com

[ROM][4.1.2][XXLSC] "AmniX" Xperia Note GT-N7000 [Build-1][Online]

$
0
0
Welcome to My first Rom thread.
Hi EveryOne.. :)
This Is my Frist Rom Which i made By me only.
Hope u Guys like It.:)






Warning:I am Not responsible For Any Damage In Your Phone.:laugh:




AmniX Presents
The
Xperia NOTE GT-N7000

Screenshots:-


Want to see More Screenshots Click Me!

features:-
Based on Leatest Leaked Jellybean XXLSC
With Philz kernel v 3.75
Repacked all apps
Zipalign Deodexed
Xperia T home with all widgets.
Xperia Walkman player with visuliser n music Widget
Xperia themed Statusbar icons
Xperia Cosmic flow live wallpaper with floating touch movement with S-pen(Without touch movement when Spen is near)
Xperia Earth Live wallpaper
Xperia Notes
Xperia Album with Photo editor
Xperia TrackID (leatest)
Xperia Sound Engine with Clear voice From Xperia T System Dump
Xperia T bootanimation
Xperia Sound Library and audio Conf
Xperia Sony Ericcsion Logo Fonts
Xperia Keyboard with Swype Working
Awesme Beat included work with Walkman
Fully Rooted and Busy box Installed
Samsung Volume Hack
Samsung Bloadware Stuff Removed
Skip track For Skip track With volume Button
NoLED app For led like notification Read This
Free upto 600* mb RAM
semi transparent notification drawer background
Gmail 4.2 with swipe gesture
Notification panel
Page buddy
Sound mod choose option in settings, Thnx raZorXz for this help
Build Prop Tweaks For Fastest Performance and More stability
4 Way Reboot Options for XXLSC
init.d optimizations
Multiwindow Hack for unlimited apps
CRT OFF and fully working on
Added GMail 4.2
Added Solid Browser as file manager
Popup Browser with resize button
Smart rotation
Smart stay
Call with recording and extra volume
And more more And More...;)

*Depend on Running App, Device condition. tested on New flash device, using only 220 mb RAM


Download link:-
"AmniX"-Xperia Note GT-N7000(Build-1)
Md5Sum-abddd3eda5569a8f4e7fbed192e88501

Mirror will be available after some time. ;)

Instructions:-
Copy the zip File to sdcard(Internal Or external),
Restart in CWM recovery,
Wipe data/factory reset,
wipe cache,
wipe davlik cache,
format system (In mount and storage)
Install Zip,
Let it install
Enjoy. :)


Instructions For Stock ICS And unrooted Users
Well you Guys Just Do One thing.
Flash This With Odin And Go to Recovery ANd Follow The Instructions As Normal.


Instructions after Installation:-
It takes 10 Minutes to boot.(Xperia Stuffs is too heavy)
After boot Let Your Note rest For 3 Minutes.
Complete The Setup
Let Xperia Launcher work
Open Super SU
Install Binary
Open Root Explorer
Go to Data/app
Install SemcAlbum.apk (Placed in data/app folder) Otherwise SemcAlbul Will give u fc.
Then Go to Setting/display/Font style/change to storopia(More Xperia Experience) Didn't replace Stock font Coz some Guys want it.
Not Come Back to home,
Press menu ANd go to launcher setting,
Go to genrel tab and change icon pack to Xperia T(More Xperia Experience)
All Done.
Enjoy..:)


Thanks And Credit:-
Philz for His Kernel,
ra3al for His Xperia Launcher and widgets
madmack for his NOled App
kemtehani for his Awesome Beat
idareyoutoclickthis for his Xperia Keyboard
ThilinaC for His Walkman Player
majdinj for his skip track mod
Robbie Hood for his Ink Effect and more mods
Sony for his Beautiful UI..;)
If I forgot Someone Then Plz forgive Me and PM me. I will Add as soon as possible..:)


Donations:-
Now i Don't need donation. When i Think That my Work Is Donation WORTHY Then I will Add a tab to donation Option. Just Hit Thanks If u like my work N just Enjoy With Xperia UI.. :):)

Attached Thumbnails
Click image for larger version

Name:	Screenshot_2012-12-16-19-20-14.jpg
Views:	N/A
Size:	25.4 KB
ID:	1570027   Click image for larger version

Name:	Screenshot_2012-12-16-19-21-33.jpg
Views:	N/A
Size:	33.2 KB
ID:	1570028   Click image for larger version

Name:	Screenshot_2012-12-16-19-22-16.jpg
Views:	N/A
Size:	38.7 KB
ID:	1570029   Click image for larger version

Name:	Screenshot_2012-12-16-19-25-17.jpg
Views:	N/A
Size:	31.1 KB
ID:	1570030   Click image for larger version

Name:	Screenshot_2012-12-16-19-26-03.jpg
Views:	N/A
Size:	34.4 KB
ID:	1570037  

Click image for larger version

Name:	Screenshot_2012-12-16-19-32-19.jpg
Views:	N/A
Size:	22.0 KB
ID:	1570042   Click image for larger version

Name:	Screenshot_2012-12-16-19-34-45.jpg
Views:	N/A
Size:	26.8 KB
ID:	1570043  

**[ROM][CM10.1][4.2.1] Asylum CM10.1 - Slim and Fast 4.2.1 Rom Reborn**

$
0
0
After Asylum ICS and JB, here comes the latest 4.2.1 CM10.1 iteration of this small, fast, blacked-out and smooth Rom. This Asylum edition has only 116Mb - it's 43Mbs lighter than the official CM10.1.











What does Asylum CM10 has to offer?

Unnecessary apps are chucked out, thus reducing the Rom size to 116 Mb only.
Everything is blacked out, no official CM10 grey.
Superuser is replaced by SuperSU.
Safe CM kernel and recovery with eMMC_CAP_ERASE disabled.
Performance tweaks
UI tweaks
Ad blocking hosts
Default DPI set to 240
Good battery life
Speed and smoothness
CM9-10 theming compatibility


How often will the Rom be updated?

There'll be a new version as soon as there is at least 6-7 CM10.1 new merges, or if there's only one crucial change.
It could be daily, or every few days.


How do I flash it?

You must be on a safe kernel and recovery. If you are not sure, check this thread out to see which ones are safe!


If coming from previous Asylum CM10.1 or official CM10.1:

1. boot into recovery
2. wipe cache and dalvik
3. flash the Rom
4. reboob



If coming from any other safe kernel except Philz:

1. Copy GApps and Asylum CM10.1 Zips to your internal SDCard
2. Boot into Recovery
3. Flash Asylum CM10.1 zip from internal SDCard
4. Flash GApps zip from internal SDCard
5. DO A DATA WIPE / FACTORY RESET (otherwise your device will be stuck at boot)
6. Flash CWM-SuperSU-v0.99.zip (download link below) to avoid root issues
7. Reboob
8. Don't restore system stuff or apps + data using Titanium, it will cause issues



If coming from a Rom containing PhilZ kernel (TW based JB leaks and ICS TW Roms):

1. flash a CM10 kernel
2. stay in CWMR, go to advanced/reboot recovery
3. follow all the steps from #3 above ^^







Removed apps. You have to extract those you need, paste or push them to /system/app,
fix permissions so they are the same as the other apps in the folder and reboob. It is NOT a flashable zip.



What is not working:

Whatever doesn't work in official CM10.1



Special thanks goes to:

CM team and Team Hacksung, obviously.
Entropy for sticking with us through thick and thin, a million thanks for that.
Anti for letting me resurrect his legacy, providing Asylumizer and valuable insights beyond the call of duty
Utacak™ for being there in the moments of dire compiling need
Milady for being ever so nice to me and everybody
Alcoholic Anonymous, born 1973 ad, for testing and all the roflness
Gugelhupf for testing and all the lollary
Sasha for being there at all times
Toxic for the beautiful bootanimation
Asylum community for being such wonderful wackos and making this forum an incredibly enjoyable place (especially ze Chermans)



Donations and thanks are always welcome, but not obligatory.:)

[ROM][CUST][AOSP][4.1.1]★★★★★BlackCNA Resurrection V1.0★★★★★[AROMA][OTA][20-12-12]

$
0
0
★★★★★ Welcome to BlackCNA Resurrection ★★★★★




================================================== =========

This is a continuation of the famous BlackCNA ROM here: http://forum.xda-developers.com/show....php?t=1883877

================================================== =========

Credits and Thanks:
Codenamedroid
CyanogenMod
AOKP
Team Eos
Konikub
g.lewarne (kernel)

================================================== =========

Team:
wesamothman
Firasusman
M3dD0g: Thank you for the great sources and ROM. You are awesome.
Imilka
MrDsl
CrazyKiddo
Cuba462: Thanks for your valuable testing mate.

================================================== =========

ROM features and customizations will follow below:

- Based off of Clean Android 4.1.1 Rev4 (JRO03L)
- File Manager Included
- T-mobile Theme Manager (tmobile, CyanogenMod, xoomdev)
- T9 Dialer/Landscape/Dialpad Settings (CyanogenMod)
- Trebuchet Custom Launcher (CyanogenMod)
- Ability to set custom ringtone delay (in phone settings - Netboy)
- Framework: added support for caller name display (kenshin)
- Framework: added HSPA+ support (shows H+ icon on status bar when connected to hspa+ - Bajee11)
- Framework: ability to set custom carrier label (Netboy)
- Browser: option open tab in incognito mode (Arham Jamal)
- Browser: option to close all other tabs (Arham Jamal)
- Browser: unhid the user agent settings
- DeskClock: added stopwatch and countdown timer (Jorge Ruesga)
- DeskClock: added settings to do nothing/snooze/dismiss and alarm by flipping the device (maurodec)
- DeskClock: you can set an alarm to switch your profile (jorge ruesga)
- Email: added meeting time to email invitation tab (erezak)
- Keyboard: ability to use the volume buttons to move the cursor (romanbb)
- Bluetooth: AVRCP 1.3 (Trey Briggs)
- Settings: ADB over Network (enable TCP/IP debugging over Network interfaces (WiFi, Usb networks)
- Settings: Added option to disable volume adjustment sound (Settings -> Sound - StevenHarper)
- Settings: Option to change the devices hostname
- Settings: Hardware info in about phone (romanbb)
- Custom Camera App: (CyanogenMod)
- Continuos focus
- Iso Support
- Support for red eye reduction
- Ability to use the power button to take pictures
- Customizable Messaging App:
- Added the ability to display a pop-up QuickMessage when an Sms message is received (DvTonder)
- Added call sender and quick reply notification actions (DvTonder)
- Added Emoji patch from CM MMS app (Robert Burns)
- SMS Templates (rciovati)
- Custom Vibrations (mssmison)
- Timestamp Options (aravance)
- Customizable Phone App (CM)
- Advanced Phone settings (optional vib on outgoing or incoming call or every 45 seconds)
- Customizable Power Menu (codenamedroid)
- Reboot Menu
- Profile Switcher
- Screenshot
- Airplane Mode
- Navigation bar toggle
- Silent toggle
- Customizable Status Bar: (Miui, CyanogenMod, romanbb, sethyx, kejar, syaoran12 ,romanbb, Stevespear426, Kyle Teague, Whitehawkx)
- Battery Icon style
- Battery Icon in notification bar
- Miui style battery bar
- Clock style
- Customizable Clock Color
- Clock Am/Pm style
- Clock Day of the Week
- Customizable Signal Text
- Customizable WiFi Signal Text
- Ability to slide your finger across the status bar to control brightness
- Notification counter
- Customizable Notification bar:
- Notification bar Power Widget (Cvcps, DvTonder – CyanogenMod)
- Notification bar Toogles (AOKP - romanbb)
- Customizable Navigation Bar: (Zaphod-Beeblebrox, KhasMek, romanbb, akellar)
- Ability to enable/disable the navigation bar (enable toggle in power menu settings)
- Customizable navigation button actions
- Custom navigation bar ring targets (Team Eos, modified by Codenamedroid)
- Customizable navigation bar color (Team Eos, modified by Codenamedroid)
- Customizable navigation button and button glow color
- Menu button visibility and location
- Number of navigation buttons
- Order of navigation buttons
- Navigation bar size
- Navigation bar transparency
- Customizable Lockscreen:
- Up to eight configurable lockscreen targets (Codenamedroid)
- Added optional centered lockscreen layout (Codenamedroid)
- Optional centered lockscreen clock
- Option to disable vibration on the lockscreen (StevenHarper)
- Customizable number of lockscreen targets (CyanogenMod)
- Configurable lockscreen wallpaper (Danesh M)
- Option to always show lockscreen battery (Blunden)
- Add weather to the lockscreen (DvTonder, Danesh M, Marius Volkhart, Rick C, Aokp)
- Add calendar reminders to the lockscreen (David Morgan)
- Lockscreen before secure unlock (Danesh M)
- Ability to unlock with menu (CyanogenMod)
- Quick pin unlock (unlock with pin/password without pressing ok – CyanogenMod)
- Customizable Sound Settings:
- Customizable volume panel (Stevespear426)
- Configurable ascending ringtone (Danny Baumann)
- Safe headset volume (CyanogenMod)
- Volume rocker music controls (CyanogenMod)
- Ability to customize action taken when connecting a headset (syaoran12)
- Face down actions (syaoran12)
- Customizable Display Settings: (CyanogenMod)
- Customizable Rotation Modes
- Volume wake (tap either the up or down volume key to wake your phone from sleep)
- Volume music controls (long press volume buttons to skip tracks)
- Custom Profiles (CyanogenMod)
- Assign different profiles to change the behavior of your phone to your liking
- Blocking Mode (CyanogenMod)
- The ability to set when notification sounds, haptic feedback, vibration and notification light will function[/color]
- Performance Settings:
- Start-up tweaks (kejar, Jrummy)
- Processor Speed (xoomdev)
- Voltage controls (xoomdev)
- Kernel controls (kejar, Jrummy)
- Developer Options:
- Propmodder (Jdkoreclipse)
- Spare Parts
- Development app
- Testing Settings
- Theme changes:

- Kernel:
- Latest ANIDROID

Extras:
- SuperSU
- Busybox
- Bash
- Nano

================================================== =========

Changelog:

BlackCNA Resurrection V1.0:

- Built from latest samsung Note sources (for kernel)
- Multiboot InitramFS for all rom types (in kernel)
- OC/UV version and a Standard frequencies/voltages version
- Full root
- Noop scheduler default
- Tweaked OnDemand governor default
- Lots of IO tweaks
- Lots of kernel scheduler tweaks
- Adjusted all cpu voltage tables (OC kernel only)
- Realtime cpu temperature, board temperature readouts and VoltGroup information in settings>about>kernel version
- Optimised VM memory setting
- Optimised Global block readahead
- CIFS support with UTF8
- Voltages and frequencies now in userspace for Voltage Coltrol app
- Changed GAPPs
- Modified the framework-res.apk for better performance.
- Removed un-needed code from default launcher.
- Added transparent app drawer code for stock launcher.
- Other things too besides better RAM optimization.
- Increased free memory
- Fixed AOSP user selectable vibration intensity
- build.prop tweaks for better-faster-smoother scrolling.
- settings.apk tweaks.
- mms.apk:
* No AutoConverting messages to MMS after 4 SMS. Conversion will happen after 200 SMS
* SMS recipients is 200 instead of 20.
* Emoji Support; can be enabled in settings.
* Option in settings to display Sent Time instead of Received time. Sent time is in the sense that if you turn off your phone, messages you get whilst it's off will have the right time.
- And other things I don't remember, but in general, for the better.


Previous BlackCNA Changelog:

BlackCNA v2.1

updated with latest CM10 sources
added force tablet mode UI and dpi change (Settings -> Interface -> Gerneral UI)
added alternate signal layout (Settings -> Interface -> Status bar)
add alow mock sms to developer settings
increased themeability of the statusbar
added the advanced calulator features from cm
updated Gapps (hope google search is fixed)

BlackCNA v2.0 "AROMA birth"

Complete clean compiled build for n7000 !!!
no port anymore
added AROMA installer (to much you will see)
updated AOSP base to 4.1.1_r6 (JRO03R)
seperated the ability to center the lock screen widgets and the lock screen targets widget
better performing wifi connection
wifi will no longer avoid poor connections if not connected to a mobile network
HTML 5 video user experience and stability fixes and network optimizations
better text rendering
enabled fdatasync for SQLite
added theme, smiley, emoji, strip unicode and date support for Mms Quick Message
added sms over bluetooth (i.e. ability to read sms via car stereo)
added feature to configure wifi idle timeout (Entropy512)
added the ability to have up to 5 customizable ring targets (Steve Spear)
lockscreen widgets can now be on the right, centered, or on the left (FaultException)
added timer snapshot support to the camera (Jonathan Steadman)
added burst mode to the camera (Jared Caliendo - up to 20 pictures at a time)
added jpeg quality settings to the camera (Jared Caliendo)
added settings for enabling and disabling WebGL in the browser
added AOKP lockscreen weather icons
added option for preloading media in the browser
better multilanguage support
moved ring targets feature into the navigation bar settings
re-organized all phone settings
power widget no longer shows data options if they arent supported
added landscape layout for the color picker
fixed weird black line about Mms text feild
fixed small down arrow when keyboard is up and phone is in landscape
fixed wi-max power widget toggle
fixed export-to-storage function in contacts
bluetooth audio streaming should be fixed across all music apps and hardware
fixed tethering issue that was occurring on some devices
reverted to previous CPU Settings while preserving the new voltage settings
automatic lock screen weather refresh will no longer cause freezes
and more i forget...

BlackCNA V1.2 "DarkNess"

Added new keyboard
Revised systemui
Added more Note 2 smoothness ;)
USB Mass Storage enabled thx neobuddy89
Bluetooth fixed (I hope so report back please)
Added new Dialer (S3 themed) thx tunsd
Added new BlackCNA Gapps (too much u will see) thx tunsd
Fixed Google Now
Added latest CM10 Camera
Revised framework
Added Apex Launcher
Some cosmetic changes
New wallpaper
and things i forget...

BIG THX TO THE COMMUNITY FOR SUPPORTING US!!!

BlackCNA V1.1

Fixed Software Keyboard
Added SIM PIN feature in Settings

BlackCNA V1

Initial Release based on Codename Android 3.5.0

================================================== =========

Suggested Kernels:

STANDARD Kernel (no OC): http://hecubus.com/xda/kernel/HydraC...ORE_v7_STD.zip
OC/UV kernel (with overclock / undervolt): http://hecubus.com/xda/kernel/HydraC...CORE_v7_OC.zip
The best kernel: Maxfu Kernel: http://forum.xda-developers.com/show....php?t=2053084

================================================== =========

Installation:

1- Full wipe is recommended: factory reset, wipe cahce, wipe dalvik, format system and preload.
2- Flash the ROM and follow AROMA instructions.
3- Strongly suggest to not choose a third party launcher, go with default stock launcher, smoother and better for performance.
4) Reboot.
5) Look up at the best kernel and try it.

================================================== =========

Download:

ROM Link being uploaded. Quit slow for now; coming up very soon.

Show me the love with thanks :)

[ROM][MIUIv4/TW-XLS2 Leak]VengeanceNote TW 2 - BETA - MIUI 2.12.21 - with Multiwindow

$
0
0
Welcome to Miuiv4 based on the XLS2 Leak ;)

This Rom is a port from Miuiv4 for the Note2 .

This is a Beta, and still have some bugs!

SmartStay, Multiwindow, Airview, Popup Browser/ Video is full working ;)

Thanks@ Phil for the Kernel
Thanks@ eybee for Testing

Known Issues:
- After Boot Phone will FC two times, after it works without a problem
- Samsung Camera will FC (Flash Light cause the FC) any other Camera App will work.Video Recording works with Samsung Camera app.
- Samsung Keyboard works only at startup wizard
- Some Twitter apps like Falcon doesn't work.
- Snote doesn't work
- Some Stylus features doesn't work, cause the GT-N7000 doesn't support it.
- maybe more ..

You found a bug? Please don't forget a Log!
You found a fix? Share it :P
Don't Post bugs if another one Post it before.
Don't Post bugs which are known.
Don't ask for eta
Don't ask how to Flash
Don't ask where the Google Store is or how to flash Gapps
The Rom doesn't Boot, or all is FC ? Only post this with a Log.
Don't ask how to make a Log.
If you doesn't accept this, don't flash it.
This is a Beta rom, only Flash if you know what you do!
If this Thread will be full of bugs without Logs, questions which I told you to not ask I will stop posting updates.

Questions:

Will you update this Rom to the latest 4.1.2 leak?
- yeah, when Miui update the note2 rom to 4.1.2

Will there be weekly updates?
- maybe

Will ever update Full rom with multilang ?
- no, later you will find small updates on updateme, which only update the needed files.Multilang, Control Panel will you find then on UpdateMe too. But from the full ROM you can directly update to latest update. Will monthly add a updated full rom.

Will you add more TW stuff like Tw launcher?
- later on UpdateMe



Multilang with Control Panel & Volume skip is added. Gapps aren't.

Http://roms.gerrett84.de/miui/vetw2/...BETA-12_21.zip

Gesendet von meinem GT-N7000 mit Tapatalk 2

Attached Thumbnails
Click image for larger version

Name:	uploadfromtaptalk1356231909589.jpg
Views:	N/A
Size:	81.6 KB
ID:	1585079   Click image for larger version

Name:	uploadfromtaptalk1356231924405.jpg
Views:	N/A
Size:	54.9 KB
ID:	1585080   Click image for larger version

Name:	uploadfromtaptalk1356231938057.jpg
Views:	N/A
Size:	46.4 KB
ID:	1585081   Click image for larger version

Name:	uploadfromtaptalk1356231949892.jpg
Views:	N/A
Size:	73.9 KB
ID:	1585082   Click image for larger version

Name:	uploadfromtaptalk1356231974474.jpg
Views:	N/A
Size:	42.1 KB
ID:	1585085  


[b] [dev][how to]aosp lockscreen whit toggle [/b]

$
0
0
Hi xda peoples
I ported this mods from concept showed by dictact74 & Mirko_DDD, so major credits go to their.....
There are two ways to make this mod.
Improve a new method or by use a old unused method.
Here we going to create a new method, if a lot of people will be interested about this thread, I'll post the other method


YOU CAN DOWNLOAD HERE A FLASHABLE FILE:

http://forum.xda-developers.com/show....php?t=2047010


Android.policy.jar

Let's start with Android.policy.jar

smali/com/android/internal/policy/imp/LockPatternKeyguardView

Find and replace the whole method,so we'll improve the aosp lockcreen:



Code:

.method createLockScreen()Landroid/view/View;
    .locals 6

    .prologue
    .line 1268
const/4 v0, 0x0

iget-object v5, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mContext:Landroid/content/Context;   

    invoke-virtual {v5}, Landroid/content/Context;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v5   

    const-string v4, "darboc_aosp_lock" 

    invoke-static {v5, v4, v0}, Landroid/provider/Settings$System;->getInt(Landroid/content/ContentResolver;Ljava/lang/String;I)I

    move-result v5   

    if-nez v5, :cond_dar
    .line 1044 

    new-instance v0, Lcom/android/internal/policy/impl/sec/CircleLockScreen;

    iget-object v1, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mContext:Landroid/content/Context;

    iget-object v2, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mConfiguration:Landroid/content/res/Configuration;

    iget-object v3, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mLockPatternUtils:Lcom/android/internal/widget/LockPatternUtils;

    iget-object v4, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mUpdateMonitor:Lcom/android/internal/policy/impl/KeyguardUpdateMonitor;

    iget-object v5, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mKeyguardScreenCallback:Lcom/android/internal/policy/impl/KeyguardScreenCallback;

    invoke-direct/range {v0 .. v5}, Lcom/android/internal/policy/impl/sec/CircleLockScreen;->(Landroid/content/Context;Landroid/content/res/Configuration;Lcom/android/internal/widget/LockPatternUtils;Lcom/android/internal/policy/impl/KeyguardUpdateMonitor;Lcom/android/internal/policy/impl/KeyguardScreenCallback;)V

    .line 1274
    .local v0, lockView:Landroid/view/View;
:goto_0
    invoke-direct {p0, v0}, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->initializeTransportControlView(Landroid/view/View;)V

    .line 1275
    return-object v0

:cond_dar

new-instance v0, Lcom/android/internal/policy/impl/LockScreen;

    iget-object v1, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mContext:Landroid/content/Context;

    iget-object v2, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mConfiguration:Landroid/content/res/Configuration;

    iget-object v3, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mLockPatternUtils:Lcom/android/internal/widget/LockPatternUtils;

    iget-object v4, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mUpdateMonitor:Lcom/android/internal/policy/impl/KeyguardUpdateMonitor;

    iget-object v5, p0, Lcom/android/internal/policy/impl/LockPatternKeyguardView;->mKeyguardScreenCallback:Lcom/android/internal/policy/impl/KeyguardScreenCallback;

    invoke-direct/range {v0 .. v5}, Lcom/android/internal/policy/impl/LockScreen;->(Landroid/content/Context;Landroid/content/res/Configuration;Lcom/android/internal/widget/LockPatternUtils;Lcom/android/internal/policy/impl/KeyguardUpdateMonitor;Lcom/android/internal/policy/impl/KeyguardScreenCallback;)V

    .line 1274
goto :goto_0
.end method


Save and exit

Recompile and push to /system/app



SecSettings:

Open
smali/com/android/settings/LockScreenSettings

we going to improve the checkbox.......

add BLU lines
canc RED lines




Code:

  .method private updateState()V
    .locals 9

    .prologue
    const/4 v5, 0x1

    const/4 v6, 0x0

    .line 263
iget-object v7, p0, Lcom/android/settings/LockScreenSettings;->mAospLock:Landroid/preference/CheckBoxPreference;

    invoke-virtual {p0}, Lcom/android/settings/LockScreenSettings;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v4

    const-string v8, "darboc_aosp_lock"

    invoke-static {v4, v8, v6}, Landroid/provider/Settings$System;->getInt(Landroid/content/ContentResolver;Ljava/lang/String;I)I

    move-result v4

    if-eqz v4, :cond_7

    move v4, v5

    invoke-virtual {v7, v4}, Landroid/preference/CheckBoxPreference;->setChecked(Z)V

    .line 265
    invoke-virtual {p0}, Lcom/android/settings/LockScreenSettings;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v4

    iget-object v7, p0, Lcom/android/settings/LockScreenSettings;->mClock:Landroid/preference/CheckBoxPreference;

    invoke-virtual {p0}, Lcom/android/settings/LockScreenSettings;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v4


    const-string v8, "show_clock"


Find and replace


Code:

iget-object v9, p0, Lcom/android/settings/LockScreenSettings;->mClock:Landroid/preference/CheckBoxPreference;

    const/4 v10, 0x0

    invoke-virtual {v9, v10}, Landroid/preference/CheckBoxPreference;->setPersistent(Z)V

const-string v9, "darboc_aosp_lock"

    invoke-virtual {p0, v9}, Lcom/android/settings/LockScreenSettings;->findPreference(Ljava/lang/CharSequence;)Landroid/preference/Preference;

    move-result-object v9

    check-cast v9, Landroid/preference/CheckBoxPreference;

    iput-object v9, p0, Lcom/android/settings/LockScreenSettings;->mAospLock:Landroid/preference/CheckBoxPreference;

    .line 159
    iget-object v9, p0, Lcom/android/settings/LockScreenSettings;->mAospLock:Landroid/preference/CheckBoxPreference;

    const/4 v10, 0x0

    invoke-virtual {v9, v10}, Landroid/preference/CheckBoxPreference;->setPersistent(Z)V


  .line 161
    const-string v9, "weather"

    invoke-virtual {p0, v9}, Lcom/android/settings/LockScreenSettings;->findPreference(Ljava/lang/CharSequence;)Landroid/preference/Preference;



Find and add the condition

Code:

iget-object v4, p0, Lcom/android/settings/LockScreenSettings;->mSayCommand:Landroid/preference/CheckBoxPreference;

    invoke-virtual {p2, v4}, Ljava/lang/Object;->equals(Ljava/lang/Object;)Z

    move-result v4

    if-eqz v4, :cond_bbb

    .line 338
    invoke-virtual {p0}, Lcom/android/settings/LockScreenSettings;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v4

    const-string v5, "wake_up_lock_screen"

    iget-object v6, p0, Lcom/android/settings/LockScreenSettings;->mSayCommand:Landroid/preference/CheckBoxPreference;



Find and add the new condition method


Code:

invoke-static {v4, v5, v2}, Landroid/provider/Settings$System;->putInt(Landroid/content/ContentResolver;Ljava/lang/String;I)Z

    goto/16 :goto_1

    :cond_a
    move v2, v3

    goto :goto_5
:cond_bbb
iget-object v4, p0, Lcom/android/settings/LockScreenSettings;->mAospLock:Landroid/preference/CheckBoxPreference;

    invoke-virtual {p2, v4}, Ljava/lang/Object;->equals(Ljava/lang/Object;)Z

    move-result v4

    if-eqz v4, :cond_0

    .line 313
    invoke-virtual {p0}, Lcom/android/settings/LockScreenSettings;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v4

    const-string v5, "darboc_aosp_lock"

    iget-object v6, p0, Lcom/android/settings/LockScreenSettings;->mAospLock:Landroid/preference/CheckBoxPreference;

    invoke-virtual {v6}, Landroid/preference/CheckBoxPreference;->isChecked()Z

    move-result v6

    if-eqz v6, :cond_c

    :goto_6
    invoke-static {v4, v5, v2}, Landroid/provider/Settings$System;->putInt(Landroid/content/ContentResolver;Ljava/lang/String;I)Z

    .line 314
    invoke-direct {p0}, Lcom/android/settings/LockScreenSettings;->updateState()V

    .line 340
    invoke-super {p0, p1, p2}, Lcom/android/settings/SettingsPreferenceFragment;->onPreferenceTreeClick(Landroid/preference/PreferenceScreen;Landroid/preference/Preference;)Z

    move-result v2

    return v2

    :cond_c
    move v2, v3

    .line 313
    goto :goto_6

 
    .line 337

.end method

.method public onResume()V
    .locals 0

    .prologue
    .line 257
    invoke-super {p0}, Lcom/android/settings/SettingsPreferenceFragment;->onResume()V

Save and exit


Now we'll iprove the xml part that show the checkbox and call the mali part
Go to res/values/strings.xml

Add the following lines somewhere in this file:




Code:

<string name="enable_aosp_lock">AOSP lockscreen</string>
    <string name="enable_aosp_lock_text">Enable AOSP lockscreen</string>



Save and exit




Go to res/xml/Lockscreen_Settings.xml

Add the following lines where you like that checkbox would be showed



Code:

<CheckBoxPreference android:title="@string/enable_aosp_lock" android:key="darboc_aosp_lock" android:summary="@string/enable_aosp_lock_text" />





Recompile and push to /system/app

Reboot

Now will find your new toggle in lockscreen options

Enjoy :D


MERRY X-MAS AND HAPPY MODS NEW YEAR

[ROM][JB][4.1.2]ANGRY v3 [RevengeDeveloperTeam]

$
0
0

Components of the TEAM:

- GigilinE : i'm primary chef and teamleader of the team (raiden prrrr)

- Raden : a good guy really was a great shoulder for the realization of this project is in fact the second Team Chef :), really made impressive progress since I've known has done nothing but improve. THX PAOLO!

- Ottone: hehe thank you dear with the absence of my NOTE we were able to go ahead :) say that you are a ARTIST! THANK YOU VERY MUCH!

- Martinhel : How many swear words I should tell you? oops I meant xD words, however, is to admit that when you follow me (from my first rom in Android) you now I have passed all the colors xD (you are big) THANKS TO YOU!

- Aegis: Aegis Dear let me tell you that this development has been continued thanks to you so do not deny the obvious xD THANK YOU!

- Vingar: dear Vingar (traitor now you have note 2 ahahhah ), thanks to you all! you are the animator and say what we always think (only we can understand ... xD) ahahhah THANK YOU! P.S. Greetings from Rosy hahaha


The Maya had already planned!
The beginning of a new era ...
THE TRUE PROPHECY HAS COME TRUE!


AngrY v3

REMEMBER THAT THIS ROM AND ONLY! NO ONE HAS EVER MADE A ROM WITH THREE DENSITY BASED ON STOCK!

PLEASE NOTE THAT EVEN CHANGING THE DENSITY WIDGETS ARE DISPLAYED TO PERFECTION, THEY HAVE BEEN ADAPTED DENSITY FOR OFFERS FROM ROM!


Features v3

- OPPORTUNITY TO MOVE FROM ONE DENSITY ANOTHER THROUGH THE SETTINGS!

- Base XXLSC

- Installation with AROMA (5 language IT - EN - ES - FR - DE)

- Multiwindows for all app

- Multiwindows with multi istance

- INK effects

- Airview (gallery and video)

- Rotation intelligent

- Standby intelligent

- 4Away (in 5 language IT - EN - ES - FR - DE)

- Fonts JB

- System with more free space (apk in preload)

- Driver AwesomeBEATS

- Adobe Flash Player

- Keyboard Samsung with SWIPE

- Links in lockscreen

- News in lockscreen

- Call rec ON

- Tweaks in build.prop

- Bootanimation RevengeDevTeam

- Disabilitated ascending ringtone

- Disable sms to mms conversion and the possibility of sending 200 people

- Svoice working in lookscreen

- Application in AROMA :

Adobe Flash Player
Apollo
Xplore Trial
Flipboard
Play Books
PressReader
Apex Launcher Trial
Video Player Google
Google Music
Gmail
AdAway
Zinio
Talk Back
Google Maps
Music Hub
Google Plus
Google Talk
All Share Play
Street View
YouTube
RolleTube
Titanium Backup Trial
Polaris Office
VideoHub
Driver Beats
Learning
ChatOn
PaperAtist
Currents
Samsung Apps
Days
Swype
DropBox
Google Now
GroupCast
YhaooNews
ImageEditor
Keyboard Google
Kobo

Important Information about of the ROM

JUST INSTALLED THE ROM DO THESE STEPS AND VERY IMPORTANT:

1 after the first boot of the rom super user initiated
2 open the store and play up to date superuser
3 reboot the phone
4 open super user
5 reopen the store and play superuser updated again
6 DONE!

Clicked mode on the settings EXPECT THAT ALL WRITTEN DISAPPEAR BEFORE YOU CLICK ON THE BUTTON "Change density."

Once clicked the method chosen will take place some operations that will automatically delete the data of tw because when switcha between modes it goes to FC of TouchWiz, ??so to solve this problem we determined the deletion of data .
Then again at the time of the switch if you have the tw launcher as lose desktop settings.


If after the change of density widgets are cut, remove and insert them :)

Installation Instructions:

Installing the Kernel Abiss or a kernel safe

Make wipe data, wipe system and wipe cache

Load the pack ROM in install to zip

Chose options in AROMA :)

MD5 : 21D18C931CCF2834AFBECE061E734B7B

DOWNLOAD ANGRY V3

DOWNLOAD ANGRY V3

Help us with the development by making a donation!

Credit:
THX ThaiDai for Dump

THX aquarius for ota update

THX Robbie for Ink Mod

THX Philz for his Safe Kernel

THX majdinj for 4away

THX majdinj links in loockscreen

THX raj_ch2002

if I forgot someone contact me in private

[MOD]Bootanimation4U - Add custom bootanimation to any rom

[XXLSC][Jelly Bean Leak] Deodexed & Rooted

$
0
0
Hi XDA Crew,

I got the XXLSC running!

Quote:

Credits to:

@ThaiDai for XXLSC Leak

@Phil3759 for his kernel

@mithun46 for being a good friend :)


@REVERSiN for Mods


[NEW] Download :Here [GOOGLE DRIVE] :victory:

MD5 : 65467B8E97662FE02F0FC2C4F9BE6F74

[NEW] AirView Fix : Here Go left in the corner to File and then Download.

Move with any Root Explorer com.sec.feature.hovering_ui.xml to /system/etc/permissions .. Reboot and you're done! :)

Download Mods for LSC : Here
[WORKS ONLY ON DEODEXED FILESYSTEM!!] Contains: Shortcuts for lockscreen, Smartrotation, 4-Way-Reboot-Menu, Call recording,etc] Big thanks to @REVERSiN!






---------------------------------

° Stock

° Deodexed by me :p

° Rooted

° PhilZ Kernel

° Apex Launcher added! (Free Version)



Everything works in this Rom! But no Lockscreen Shortcuts.

This is flashable via CWM!

A Rom Cooker can use this Rom for cooking! :good:

And please reply if it works, or not.



How 2 Flash :

Load .zip on your SD/EXT Card
Restart in CWM
Be sure you're on SAFE KERNEL, then you can wipe
Full wipe : /system /preload /cache / Wipe Data-Factory reset /
Flash the ROM
Wait some minute until your phone boot!


I'm not responsible for bricked/dead Galaxy Note's ;)




[ROM][4.2.1][12/29] StuNNeR 2.0.0 - Team Passion - The Resurrection

$
0
0
Code:

#include
/*
 * I am not responsible for bricked devices, dead SD cards, thermonuclear
 * war, or the current economic crisis caused by you following these directions.
 * YOU are choosing to make these modificiations, and if you point your finger at
 * me for messing up your device, I will laugh at you.
 */



Stunner 2.0.0 - preview



Let's go back to History....

Stunner ROM was one of ICS based AOKP ROMs with CM source.
So.. Stunner 2 is based on same logic 4.2.1 JB based with CM source and Team Passion's tweaks... :cool:
Our Chimera ROM is 4.1.2 and is one of the smoothest JB ROM around.

AOKP haven't officially released any builds. They are making experimental builds and so are we!
Do not comment on stability, performance and smoothness before trying.. :fingers-crossed:

ROM Features:

General UI
Custom Carrier Label
Custom Notification Background
Notification Count
WiFi Network Name in Expanded Statusbar
Kill-All-Button in Recents
Recents RAM Bar
Hold back to kill
IME Switcher
Lefty Mode
Customizable LCD Density
Menu UI Overflow (3-dot Menu Button)

Lockscreen
Quick Pin unlock
Menu Unlock
Custom Lockscreen Wallpaper
Custom Lockscreen Text Color
Lockscreen Battery Percentage
Volume Wake
Volume Music Controls
Lockscreen Targets (3-8)
Lockscreen Weather
Lockscreen Calendar
Lockscreen Rotation

Power Menu
Screenshot
Airplane Toggle
Navigation Bar Toggle

Navigation Bar
Button Quantity
Custom Bar Color
Custom Bar Glow Color
Navigation Ring Targets (1-5 targets)
Custom Height
Custom width
Navigation Button Transparency

Battery
Battery Icon Style (Icon only, Text only, Icon+Text, Icon+Centered Text, CircleMOD, Hide)
Show Battery Icon in Notifications
Battery Bar (Location, Style, Color and Thickness)

Clock
Clock Style (Right, Center, Hide)
Custom AM/PM Style
Custom Day of the Week
Notification Clock (Short and Longpress actions)
Notificaiton Date (Short and Longpress actions)
Clock Color

Toggles
Custom Toggles (Auto-Rotate, BT, GPS, WIFI, Airplane Mode, Vibrate, Silent, SYNC, DATA, 2G, Tether, USB Tether, Torch)
Toggle Style (Text or Icons) - Not yet implemented
Auto Hide Toggles
Custom Toggle Text & Indication Color
Custom Toggle background & Indication Alpha
Brightness Control location

Signal
Signal-WiFi Text Style (Bars, Text, dBm)
Signal-WiFi Color
Alternate GB Style Signal
Hide Signal Bars

Sound
Volume Panel
Less Frequent Notification
Headphones Plugin Action
A2DP Connection Action
Phone Call Silence (Flip Phone to Silence Calls)
Face Down Actions (Vibrate or Silent Mode)

Weather - Not yet implemented
Status Bar Weather Style (Text or Panel)
Weather Panel Hide Options

Vibrations
Create Own Custom Vibrations

Performance
Kernel Tweaks
Daily Reboot Schedule


Installation Method:

If you are coming from any other ROM especially other than JB AOSP Roms, we recommend full wipe:
  • Make sure to run CM9/10 or an AOSP-based ROM : FLASHING/WIPING FROM STOCK ICS OR ROMS BASED ON STOCK ICS WILL RESULT IN A BRICK! - You're warned!
  • Wipe Data
  • Wipe Cache Partition
  • Mounts and Storage > Format System

Steps to be followed by all users:
  • Download latest ROM build & Google Apps (from below links) on your SDCARD
  • Reboot in Recovery - Make sure you are on CM9/CM10/AOSP-based ROM's recovery
  • Mounts and Storage > Format System
  • Flash Stunner2 (Download link below)
  • Flash Gapps (Download link below)
  • Reboot, ain't that simple?

Download Links:

This is PREVIEW ROM. You may not find all features.
AOKP sources under construction. So patiently wait for them.
You may flash this ROM and report issues but kindly bear with us till AOKP completes porting features to 4.2.1.


Stunner 2.0.0 -
http://BillionUploads.com/meadfju3sz8q (Mirrors Welcome)
Dropbox Mirror - https://dl.dropbox.com/u/23375832/Te...nner-2.0.0.zip
FTP mirror on second page.

Google Apps:
http://BillionUploads.com/roz57ygtju1z (Full latest gapps with 4.2 goodies specially compiled for Galaxy Note!!)
http://goo.im/gapps (Standard gapps)

Caution:
  • We have working EXT4 script which will cause auto reboot on first time you run ROM.
  • Set 268 dpi for better experience. Any graphic related burst, if you see, will be fixed soon.


Special Thanks:
Nelson
CyanogenMod Team for their continuous effort in betterment. We hope you resolve your issue soon.
AOKP, CNA and ParanoidAndroid for their customizations. Hats off!
Chasmodo for keeping community in spirit!

If you may wish to donate to Team Passion:

Screenshots later!

**[4.1.2][CM10][Hybrid] Utacka's ParanoidAndroid 2.56 Nightlies**

$
0
0
A word about how this thread came about:

Our highly respected developer Utacka got fed up with 4.2.1 ETA inquiries, feature requests and questions posted by those with no inclination to read or search anything, not even the OP.
We need to let Utacka have some respite from those in order to not lose him altogether.

So, I'll be compiling Utacka's ParanoidAndroid nightlies for him and Utacka will be releasing a weekly build for the time being.

Downloads here are and will always be untouched Utacka PA builds compiled from his source at Github. Nothing added, nothing subtracted, nothing modified.
Roms here and Roms in the original Utacka ParanoidAndroid thread are identical, you can download and flash any of them, and you'll be getting the same Utacka PA experience.

Let us begin.


Quote:

Originally Posted by Utacka (Post 31166144)


Android 4.1.2
ParanoidAndroid 2.56
Source compiled
You can follow the PA-JB Progress for Galaxy Nexus in this thread: http://forum.xda-developers.com/show....php?t=1619582
Follow Paranoid Android officially on:

Facebook : https://www.facebook.com/paranoidgoogle
Twitter : https://twitter.com/paranoid_team
G+ : http://goo.gl/e3tKJ

Quote:

Originally Posted by Utacka (Post 31166144)
Prologue
This is NOT a port.

This is the FIRST PA ROM that is built from source for GT-N7000 and I'm providing these builds on a nightly basis when there is changes from CM or PA.

Quote:

Originally Posted by Utacka (Post 31166144)



How to install Utacka ParanoidAndroid Rom.

It doesn't matter which Rom you are coming from, all that matters is the kernel you are on.

If you are running any CM-based kernel (CM9, CM10 or CM10.1)
If you are running any Gingerbread kernel
If you are running Hydracore or HydracoreNirvana
If you are on Franco ICS kernel newer than v3
If you are on Speedmod ICS kernel newer than v3


Code:

1. download ParanoidAndroid Rom and Gapps
2. place them on your SD card
3. reboot into recovery
4. wipe data/factory reset
5. wipe cache and dalvik
6. flash the Rom
7. flash Gapps
8. reboot

If you are on any PhilZ kernel

Code:

1. download any CM10 kernel from Kernel Repository
2. download ParanoidAndroid Rom and Gapps
3. place all three files on your SD card
4. reboot into recovery
5. flash the CM10 kernel first
6. stay in recovery, go to advanced/reboot recovery
7. wipe data/factory reset
5. wipe cache and dalvik
6. flash the Rom
7. flash Gapps
8. reboot

Kernel Repository is here.



If you are running a kernel not mentioned above, go here and read extra carefully before doing anything.



If you are already on any previous Utacka ParanoidAndroid 2.56 build

Code:

1. download the new build and Gapps
2. put it onto your SD card
3. reboot into recovery
4. wipe cache and dalvik
5. flash the Rom
6. flash Gapps
7. reboot





DOWNLOADS





A final word: please consider donating Utacka for all the tremendous work he has done and is still doing to make all our Notes faster, smoother and better looking.

Do not, I repeat, do not donate to me. What you are enjoying here is Utacka's work, not mine. I just deliver his craftsmanship to you, that's all.

[KERNEL]HydraCoreNirvana[TWICS-CM9-CM10-MIUI-AOSP]

$
0
0
  1. Critical Remind:
    • Flashing this kernel will make your phone Lose Warranty. So please Fully Get Understand of what you are doing. I have no responsibility of any of your lose by flashing this.
    • Before you download and flash, to farthest avoid bootloop or bricking your phone, please make sure you have read and understand sections from 4 to end.
    • Please be wisely use the "search this thread" at the top right corner, if you can not see it, click Attachment 1577487 there. New-asked-but-already-answered questions will be ignored and maybe disliked or even scoffed by other members.
    • I will never talk about ETAs (Estimated Time of Arrival). So please save your keyboard or touchscreen.
    • Please forgive me if I did not answer your question, even you asked before some one I answered. Please informe with message if you need me to answer it. Although I can not guarantee I will answer questions promptly, the carefulness of the answers is guaranteed. If the answer is important to you, please bookmark it cause I may edit the answer post with update instead of posting another one.
    • And if anyone don't like any part of my word. Please send me a message instead of posting here. All words above are my begging for the nattiness of this thread. I won't open another thread of discussion, cause I saw the discussion theads were mostly useless. Holding one thread is easier.
  2. Thanks to:
    g.lewarne, chandler929, Formhault, androidindian, noteandfound, chasmodo, teamhacksung, samsung, cyanogenmod team, ......,
    and a lot of names to add.
  3. Brief:
    First, I would like to thank the people I mentioned and not mentioned in section 2. Notably g.lewarne, you are always the owner of HydraCore. Thank you for your great work. Galaxy Note now became a legend with your masterpiece.
    Secondly, I would like to thank all people who gave me support, encourage and advise. Under your help, HydraCore has became a really universal and almost perfect kernel.
    In this new thread, the legendary Universal Kernel has a new name -- HydraCoreNirvana. I think the word Nirvana can tell the story of HydraCore. With the new name, the kernel steped onto a new stage -- bootable on JB leaks. It is not fully functional, but it is a good beginning.
    I have to say that I am not a dev. And I am another Child's Slave who use lavatory time as off hours. I really don’t know how far I can go on this. So please, forgive me if someday I got stuck and be absent like Gavin.
    ......more to add......
  4. Technical Description:
    • Safety: mem_cap_erase disabled, so this is a safe kernel
    • ROM Support:
      • ICS (4.0.X):
        • TouchWiz Based: TouchWiz, MIUI
        • AOSP Based: CM9, AOKP, some PA......, and maybe other untested roms.
      • JB (4.1.X):
        • TouchWiz Based: experimental support for TouchWiz JB Leak
        • AOSP Based: CM 10, SlimBean, AOKP, maybe some PA, ..., CM 10.1 not supported yet, ......, and maybe other untested roms.
    • Recovery: CWM 6.0.1.2 from the legacy
    • Root privilege: ADB and SuperSU, thanks to chainfire for SuperSU
    • Usage:
      1. Place the ZIP in the TF card.
      2. Root the phone: If you and if you are sure that you have a safe kernel with CWM jume to next. If you phone is unrooted, Flash the TAR version in Odin to get Root and CWM.
      3. Now you may meet bootloop, Press UP + HOME + POWER until you see the CWM interface. (the phone will never boot to the system with a stock rom flashed a TAR version)
      4. Flash the ZIP in CWM.
      5. Enjoy
      6. Please don't ask me how to use CWM. If you don't know, don't flash any kernel.
  5. Download with Changelog:
    1. Instructions:
      • These are SourceForge folders, so open in a browser. The corresponding source is included in the same folder.
      • Not all releases will be kept in this post, find the old ones in the repository. I will keep all files as long as possible. (It seems SourceForge don't delete old files.)
      • Little trick: maybe you can try middle-click the links, a new tab maybe opened.
    2. n3.JBT:
      1. Download: https://sourceforge.net/projects/max...raCore/n3.JBT/
      2. Changelog:
        • Experimental fix for bootloop on JB 4.2.x roms such as CM10.1. CM10.1 can boot with com.android.phone stopped. So it is Experimental.
        • Experimental fix for root exploit on Exynos Chips.
        • Minor: Changed the name of the Kernel to HydraCoreNirvana. I think the word Nirvana can tell the story of HydraCore.
        • Minor: Changed the version header to n which stand for Nirvana. n3 means the third kernel released in the new thread.
        • Minor: Added JBT which means JB Test to version.
    3. Sixth compilation (new version n2.JBT):
      1. Download: https://sourceforge.net/projects/max.../6th_v7.6.JBT/
      2. Changelog:
        • Experimental TouchWiz JB support implemented
        • Rewrote mbs folder structure in initramFS for TouchWiz JB support
    4. Fifth compilation (new version n1):
      1. Download: https://sourceforge.net/projects/max...re/5th_v7.6.2/
      2. Changelog:
        • Rebuilt from Gavin's v7 source
        • Tri-Step GPU frequencies with better governor. STD is like conservative while OC is like ondemand. Feel the difference with the forth compilation. Thanks to Teamhacksung.
        • Removed Mixed Voltage Table to find the reason of instability.
        • Removed Minfree Optimization to find the reason of instability.
        • SuperSU not updated to find the reason of instability.
        • Camera Fixed.
        • MIUI GPS Fixed.
    5. Repository:
      • Instruction: You can find all downloads and source here.
      • If you go to the parent folders, you can find more. I also have my own rom stored on SourceForge. It is based on Hong Kong ZSXXX releases. If you met problem with it, you can also post here.
      • Download: https://sourceforge.net/projects/max...xFu_HydraCore/
  6. Known Issue:
    • Vibration Strength not alterable on AOSP roms. I am still working on this, maybe compile two different modules will solve the problem.
    • Camera Service not work on TouchWiz JB Leaks. The service is not working so both stock camera and 3rd party camera app won't work.
    • HOME button not work on TouchWiz JB Leak XXLSC.
    • CM10.1 JB has "com.android.phone stopped" problem.
    • An empty symlink /d to disabled debugfs found, didn't see any problem with this.
  7. Q&A Collection:
    • How to flash: like I said if you don't know how to flash, then don't flash. Or you can read section 4.
    • Can I flash on ...?: Please get to know you rom type, AOSP or TouchWiz based, then please read section 4.
    • Bootloop/Freeze/..., help!: please be concrete, I can not answer questions simple like this.
    • Bootloop:
      • Please check your rom type see whether your rom is supported.
      • Another reason is the unsuppored modules. Look in to /system/lib/modules if it exist. And delete dhd.ko, j4fs.ko, scsi_wait_scan.ko and Si4709_driver.ko if they exist. Deleting dhd.ko may also fix WIFI problem.
    • Freeze: Usually happens in OC versions. Try to change to STD first.
    • Files are crrupted: From 12:00 19.Dec.2012, UTC+08:00, all files uploaded are provided with MD5SUM and double checked with SourceForge. So if the file doesn't work, try to download again.
    • May not boot on CM 10.1 (4.2.1)
    • ...adding...and...collecting...

Attached Images
 

[ROM][AOSP][JB][4.2.1][JOP40D] SuperNexus 2.0 - N7000 - BUILD 1 [01-01-13]

$
0
0

The main idea behind SuperNexus is to provide Vanilla Android experience, just like on Google's Nexus devices, to non-nexus devices. SuperNexus is entirely built from Google's AOSP Source. A lot of improvements and optimizations have been done to the Google's Source Code to have the best possible Vanilla Android Experience. SuperNexus is very light too as there are no 3rd party apps (ZERO Bloatware).

Big thanks to TeamHacksung (Donate To Them) as I'm using their Device Tree and SoC related patches in my SuperNexus ROM. Thanks to CyanogenMod Team (CM), CodeAurora and TeamKang (AOKP) as many features are cherry-picked from their source code.

System Details:
  • Android 4.2.1 Jelly Bean (JOP40D - Android-4.2.1_r1)
  • Latest CM Kernel
  • All Jelly Bean Features and Apps (Nothing excluded from AOSP)
  • No Visual Changes!
  • Stock Jelly Bean Look and Feel
  • This will turn your Samsung Galaxy Note into a Nexus 4 :p

ROM Features:
  • Fully Deodexed
  • Zipaligned APKs
  • Rooted (Super SU)
  • BusyBox Installed
  • No 3rd Party App
  • ZERO Bloatware
  • Android Source Code vastly improved and optimized (i.e. Bionic, Dalvik, Webkit, Framework, libcore, SQlite etc)
  • Official Jelly Bean Bootanimation (From Official Galaxy Nexus Android 4.2.1 Factory Image)
  • Init.d Support
  • UserInit Support
  • Bash & Nano Support
  • Native SIP/VOIP Support
  • HSPA+ Support
  • OpenVPN Support
  • EXT4 File System Optimizations
  • Galaxy Note Device Settings As An App
  • Large APN & SPN List
  • Framework Features:
    -Extended Power Menu (Reboot, Recovery, Download & Screenshot Options)
    -Improved Scrolling Cache
    -Tweaked Animation Values Of Progress Spinners (Silky Smooth Loading Spinners)
    -Enabled Rotation Lock Tile in Quick Settings for Phones (Previously was only enabled on Tablets)
  • Camera Features:-
    -Burst Shot (Up to 20 Images at once)
    -ISO Mode
    -Touch Focus Duration
    -Power Shutter (Click Power Button To Capture Image/Video)
    -Color Effects
    -Shutter Timer
    -Zero-Shutter Lag (On Specific devices)
  • Browser Features:-
    -Increased Maximum Tab limit from 16 to 64
    -Incognito Tab Option (When long pressed on an URL)
    -Option To Close All Tabs With One-Click
    -Allowed Any Type Of File To Be Downloaded
  • Phone Features:-
    -T9 Dialer Support
    -Landscape Dialer Support
    -Transparency To Incall Screen
    -Noise Suppression
  • Miscellaneous Features:
    -Allowed Installation Of Apps From Unknown Sources By Default
    -Allowed Any Type Of File To Be Sent/Received Via Bluetooth
    -Disabled Data Roaming By Default
    -Removed Google's Software Updates Option from Settings
    -Enabled Gesture Input By default
    -Hardware Information of the device (Settings>About Device>Hardware Information)

Officially Supported Devices:
Known Issues
  • Found one? Report it.

Screenshots: (From Galaxy S III)


Requirements:
  • Clockworkmod Recovery (CWM)

Note:
  • Philz kernel and recovery causes some kind of issues with AOSP ROM installations, please use CF-Root, Siyah, CM or Dorimanx kernel before flashing SuperNexus.


Instructions:
  • Copy Google Apps and SuperNexus ROM to your internal SD Card
  • Enter Recovery
  • Do a Wipe/Factory Reset (Necessary if coming from a different a ROM)
  • Flash SuperNexus ROM
  • Flash Google Apps
  • Reboot your device!
  • Voila! :D

Downloads

Latest Build:
Google Apps:

Source Code:
  • SuperNexus Source @ Github (I'm willing to add support for other devices so if you are a developer and willing to add support for your device(s), PM me)
  • CM Kernel Source @ Github

Changelog:
Code:

SuperNexus 2.0 BUILD 1 (01-01-13):
  • Initial release


Credits:
  • Google
  • CyanogenMod Team
  • Teamhacksung
  • Codeworkx
  • Xplodwild
  • Nebkat
  • Espenfjo
  • Pawtip
  • Chainfire
  • Thanks to all those who donated or thanked

Follow Me On Twitter:


Donate:
If you like my work please consider a donation as it will help me keep this development alive and expand it to newer/other devices.

[ROM][XXLSC]SlimWizz:Touchwiz stripped to the bones.yeh just 196mb :)

$
0
0
Not for weak hearted people !!!

Purpose: to address obesity issue at least in SGN ROMs :p
Procedure: Touchwiz was stripped to the bones. apks, libs, obbs or ttfs, almost nothing removable was spared.:cowboy:
Result: Touchwiz transformed to SlimWizz :D. With Responsive, minimal and stock interface. All necessary features (for me ;)) were retained in 196mb and still managed to boot :D

Brief: Rom is based on XXLSC rom @240DPI by Raj. ROM is for users who like to build up their own ROMs with a working minimal base. This rom is solely for educational purpose. Please do not flash this rom if you are not fully aware of side center and bottom effect of ROM flashing. :cool:
I will not be responsible for any direct or indirect damages/loss to your phone, body, job or other surrounding of yours. You are already warned. If you are still you are not scared then you may download it from here.

What is added.
1. AOSP email, calendar, deskclock and calculator to replace stock apks
2. AntTek Explorer to replace stock explorer
3. Apollo music player to replace stock music player (retained Gallery and video due to airview feature:))
4. Snote replaced with colornote (no nonsense notes :D), you can also go for NotesMobile Note taking app
5. I suggest, you may install UCCW if looking for some good screen widgets. (I use multiwallpaper)


Issues: I will look for, as i keep polishing it.

Request: Please do not waste a post in case you just want to say thanks. I will be more happy if you press Thanks button ;)

Support: Since working full time to make living and being father of 8year old, i am not able to spend much time online. But whenever possible, i will make sure to connect.:highfive:
Note: I will keep on updating OP. so keep on visiting here ..:)
Regards

[ROM][JB 4.2.1][AOKP/CM10] ReVolt JB N7000 [NIGHTLIES][OTA]

$
0
0



What is This ??
This is a thread Specifically targeting ReVolt JB ROM's Nightlies for their Support, Releasing and Discussion. I created this thread for users to find and help in finding the bugs in Nightlies to be able to reach better builds.


Anything Else should I know ??
Yeah, ReVolt ROM is known to have Aroma in it's builds .... Well in Nightlies, there won't be AROMA to facilitate the uploading of the ROM for me :) and to give us the option to have the SAME EXACT build !!


Finally
I have some rules for the Nightlies, First, These builds aren't meant for people looking for Stable builds, Never change kernel that comes with it unless I asked for it, The builds will be released when I see that a Nightly is needed ..


Why ReVolt ROM ?
ReVolt ROM is based on AOKP Source with Cherrypicks from CM. ReVolt ROM offers you smoothness, Stability. I will not say for Example that It's the Best ROM(Because Every Developer can Say whatever he wants about his ROM), You try it and let me know what you think ...

Please Don't Forget to donate if you like my Work ! :) Donate Here



If coming from a Samsung Stock ROM:

1-Read this article on How to root your Samsung Galaxy Note N7000
2-Wipe Data
3-Wipe Cache
4-Wipe Dalvik-Cache
5-Format /system
6-Flash ROM
7-Wipe Cache / Dalvik-Cache
8-Enjoy ReVolt ROM !!


If Coming from another Custom ROM:

1-Wipe Data
2-Wipe Cache
3-Wipe Dalvik-Cache
4-Format /system
5-Flash ROM
6-Wipe Cache / Dalvik-Cache
7-Enjoy ReVolt ROM !!


If Upgrading from an older ReVolt Nightly:

1-Wipe Cache
2-Wipe Dalvik-Cache
3-Flash ROM
4-Wipe Cache / Dalvik-Cache
5-Flash GApps
6-Enjoy ReVolt ROM !!




ReVolt JB Nightlies

Download Latest Nightly from Goo.IM


Nothing to see here yet !


1-XDA Developers
2-bajee11 (Aroma Installation Files)
3-AOKP Team
4-CM Team
5-Cyberboob (Logo / Wallpapers / Signatures / ReVolt ROM Thread Organization)
6-BigDenn (Bootanimation)
7-TheWierd (Download Center / Support)
8-ReVolt ROM Supporters & Loyal Users ;)
9-Andre Oo (For Beta Testing the WHOLE Thing !!)




1-Laurencito
2-schtiven
3-adityawagle
4-fgoyti
5-adityawagle
6-Bishal Pantha
7-More (NO TIME TO ADD !!) THANKS TO ALL DONATORS !!




Review by Zedomax @GalaxyS2Root.com:



Review by galelo11 @YouTube: | | | | Review by MrSindo86 @YouTube:



Review by hypnobabes @YouTube:




Screenshots
4.2.1 ones coming soon ! Note ones coming too !!




Signatures




Social Networks
Facebook Page
Follow me On Twitter

[ROM][JB 4.1.2][XXLSC] VIETNAM - by Phan Thanh Tuan ( The first Live Video Thumbnail)

$
0
0







In addition mod:
4 way reboot
popup brose can resize
Svoice wake up in lockscreen
FIx voice memo in snote, (every ROM xxlsc have this bug, if you choice micro on snote wiget or use voice memo in snote snote will crash, it's the 1st rom fix it)


And Special first mod live video thumbnail + airview working for galaxy note in xda:




* live video will slow display if you video more lenght,and time to show depend on how much video you have in video player,
it's was tesst and use full in mp4 , mhd, but some mkv HD , flv ins't work
and more... Please enjoy that !!

1 bug : browse in vietnamese can't search but don;t worry i was fixed for english version, i will update it.



How to install:


Load *.zip on your SD/EXT Card
Restart in CWM
Be sure you’re on SAFE KERNEL, then you can wipe
Full wipe /data/factory reset /cache and dalvik
Format /data /system and /preload
Flash the ROM
Enjoy !!

Link download:
Here: Reupload 1 link

MD 5 : 56AC36C3 - D5885E55 - 3C46A0DB - DDC1A372

For more information and original post please visit :
http://www.tinhte.vn/threads/1763891/

Thanks you for read and use that rom ^^!!
have nice day !!

[2 Rom 1 Thread][CM10.1][PA]"AmniX"-Xperia Note GT-N7000[Editions][Online]

$
0
0
Welcome Again To Xperia Note GT-N7000
By AmniX




Warning:-I am Not responsible For Any Damage In Your Phone.:laugh:
Caution:- AnyOne Is Not permittied to Use any Part of My Rom to make it use in your Rom Or Mod WithOut My Permission, Respect The World of Developers


AmniX Presents
Xperia NOTE GT-N7000

-:.CYANOGENMOD-10.1 Edition.:-

For Other Edition, Keep Scrolling.;)


-:.Screenshots.:-


More Screenshots Here.
-:.Featuers.:-
Based On Leatest Official CM10.1 Nighgly Bulid
Official CM10.1 Kernel
Fully themed to Xperia UI
All Cm10.1 featuers
AmniX Xperia Theme Included Modified By Me
Xperia Walkman player with visuliser n music Widget
Xperia themed Statusbar icons, battery icon
Xperia Notes
Xperia Album with Photo editor
Xperia Sound Engine with Clear voice+
Updated Sound Libraries and bin files
Xperia Sony Ericcsion Logo Fonts added
Xperia Keyboard with Swype Working
Xperia Note GT-N7000 bootanimation added
Xperia torch application
Xperia Timer Widget
Bravia Engine 2 enabled
Facebook Inside Xperia Fully Working
Walkman search Plugins added and all working
PlayStation Certified
Playstation Mobile Included
Fully Rooted and Busy box Installed
Using SuperSU instead of SuperUser
Samsung Volume Hack
Skip track(Fully Working)
semi transparent notification drawer background
Build Prop Tweaks For Fastest Performance and More stability
init.d optimizations
CRT OFF and fully working on
Calculator++ added
CacheMate Added (For remove cache in one touch)
Navigation Bar Enabled
Android 4.2 Gallery and Camera Included
Email Exchange Included
DSP manager
Lockscreen vibration option
Phone: Advance Phone Settings (Vibrate on Answer, Every 45 Seconds, On Hangup and On Call Waiting)
Phone: Noise Suppression
Option to control cursor in text fields using volume keys
Home button call answer (Accessibility Option)
Variable size pattern lockscreen
Root Explorer Included
Look Like Xperia Z)Note In market Yet) ;):D
And Much More..

-:.Downloads.:-

cm10.1_AmniX_Xperia_Note_GT-N7000.zip
Md5sum=6b2fd9074ffba9cc69f54b55c04e98ea

For Modified Gapps Go to Addons POST

-:.Instructions.:-

Copy the zip File to sdcard(Internal Or external),
Restart in CWM recovery, (If On Another Kernel First Flash Any CM10.1 kernel, Find them here)
Wipe data/factory reset,
wipe cache,
wipe davlik cache,
format system (In mount and storage)
Install Zip,
Let it install
Enjoy..


-:.Instructions After Installation.:-

Only Flash AmniX Modified Gapps (Xperia Framework attached; See Addon Post)
Let Your Xperia Note Boot up
When Booted, Complete the Setup,
After Complete, Be Fast, Go To Setings/Themes/<here>
(You have to be fast Otherwise You may Get SystemUI fc error and then Bootloop So Be fast)
Change theme to AmniX,
Reboot(Highly Recommanded), Now You are Done.
For Advice I will recommend you not to touch DSP Manager, audio_conf. Is Set as stock Sony Sound Libraries, If u change U will Miss the Bass and Sounds Which U Only Can Get In any Xperia Device, But I bring It to Our Note.
Enjoy..


-:.Thanks And Credit.:-

CyanogenMod Team,
Sony,
ra3al,
idareyoutoclickthis,
ThilinaC
If I forgot Someone Then Plz forgive Me and PM me. I will Add as soon as possible


-:.Donations.:-

Want to Donate me? Just Hit the Thanks Button And I will Recive Your Donation..:cowboy::cool:


If You Want to Support Me then Add This In Your SignPic
HTML Code:

[IMG]http://forum.xda-developers.com/picture.php?albumid=8757&pictureid=31730[/IMG]

Attached Thumbnails
Click image for larger version

Name:	Screenshot_2013-01-15-09-44-09.jpg
Views:	N/A
Size:	25.9 KB
ID:	1646453   Click image for larger version

Name:	Screenshot_2013-01-15-09-45-00.jpg
Views:	N/A
Size:	31.0 KB
ID:	1646454   Click image for larger version

Name:	Screenshot_2013-01-15-09-45-15.jpg
Views:	N/A
Size:	24.2 KB
ID:	1646455   Click image for larger version

Name:	Screenshot_2013-01-15-09-46-32.jpg
Views:	N/A
Size:	30.9 KB
ID:	1646456   Click image for larger version

Name:	Screenshot_2013-01-15-09-47-26.jpg
Views:	N/A
Size:	10.5 KB
ID:	1646458  

Click image for larger version

Name:	Screenshot_2013-01-15-09-48-16.jpg
Views:	N/A
Size:	21.1 KB
ID:	1646459   Click image for larger version

Name:	Screenshot_2013-01-15-09-48-25.jpg
Views:	N/A
Size:	31.8 KB
ID:	1646460   Click image for larger version

Name:	Screenshot_2013-01-15-09-48-55.jpg
Views:	N/A
Size:	24.2 KB
ID:	1646461   Click image for larger version

Name:	Screenshot_2013-01-15-09-49-21.jpg
Views:	N/A
Size:	18.4 KB
ID:	1646463   Click image for larger version

Name:	Screenshot_2013-01-15-09-49-30.jpg
Views:	N/A
Size:	28.1 KB
ID:	1646464  

Click image for larger version

Name:	Screenshot_2013-01-15-09-49-50.jpg
Views:	N/A
Size:	18.7 KB
ID:	1646465   Click image for larger version

Name:	Screenshot_2013-01-15-09-49-58.jpg
Views:	N/A
Size:	20.6 KB
ID:	1646466  
Viewing all 232 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>