31st August 2012, 03:28 PM
(Last edited by jobnik; 28th February 2013 at 03:46 PM .)
Senior Member -
OP
Thanks Meter
484
Posts: 124
Join Date: Mar 2010
Location: Tel-Aviv
DONATE TO ME
[MOD][Camera][JB v8 / ICS v6][27/02] Power and Volume buttons as a shutter and more..
Hi,
This is my first MOD
Latest update 27/02/2013 Based on Latest Official Note JB 4.1.2 XXLSZ firmware.
Volume and Power keys as a shutter (no burst shot with power key).
Volume keys as shutter in Camcorder as follows: Volume Up start recording, Volume Down stop recording.
Power key as shutter in Camcorder will just start recording.
Shutter sound will be off/on in all cases using Camera according to menu selection.
Notes :
Please test it and let me know if it works well and in which ROMs, I have nowhere to test it myself
It's only for Samsung Stock / Custom JB/ICS ROMs
To make it run on ODEXED JB ROMs, backup and remove the SamsungCamera.odex file from system/app (the script should do it automatically).
To make it run on ODEXED ICS ROMs, backup and remove the Camera.odex file from system/app (the script should do it automatically).
DO NOT install JB mod on ICS ROM and vice-versa! it simply won't work
JB SamsungCamera app
ICS Camera app
I've also modified Camera app for Galaxy S2, Galaxy S3 and Galaxy Note 2:
Galaxy S2 mod:
http://forum.xda-developers.com/show....php?t=1841988
Galaxy S3 mod:
http://forum.xda-developers.com/show....php?t=1883192
Galaxy Note 2 mod:
http://forum.xda-developers.com/show....php?t=1965801
What's inside?: "Unable to start camera while in a call" Alert Disabled
Camera "Low Battery" Alert Disabled
Camera Volume Up/Down as a shutter
Camera "Can't use flash on low battery" Alert Disabled
Camera focus sound Disabled
Camcorder "Can't use flash on low battery" Alert Disabled
Camcorder "Low Battery" Alert Disabled
Camcorder Better audio quality/video bitrateVideo Quality:
1080p: Normal - 17MBit / Fine - 24MBit / Superfine - 30MBit
720p: Normal - 9MBit / Fine - 13MBit / Superfine - 17MBit
Sound Quality:
192 kbit/s
48000 KHz
Camera Power button as a shutter (The Power menu will popup as well, but it will take a picture, just wait until it vibrates.)
Camera Self-shot Volume buttons as a shutter
Camera "Action shot" shooting mode Volume buttons as a shutter
Camera "Panorama" shooting mode Volume buttons as a shutter
Camera Enabled "Shutter Sound On/Off" item in Menu
Changes I've made in smali files are:
Code:
Camera MOD v6 by jobnik (Arthur):
---------------------------------
Files to be changed:
com\sec\android\app\camera\AbstractCameraActivity.smali
com\sec\android\app\camera\Camcorder.smali
com\sec\android\app\camera\Camera.smali
com\sec\android\app\camera\MediaRecorderProfile.smali
com\sec\android\app\camera\SelfShotView.smali
com\sec\android\app\camera\glwidget\TwGLActionMenu.smali
com\sec\android\app\camera\glwidget\TwGLPanoramaMenu.smali
com\sec\android\app\camera\resourcedata\CameraSettingsMenuResourceData.smali
1. "Unable to start camera while in a call" Alert Disabled
* FILE:
com\sec\android\app\camera\AbstractCameraActivity.smali
* METHOD:
.method public checkCameraStartCondition_Call()Z
* ADDED new line:
goto :goto_1b
* WHERE?:
const/4 v2, 0x0
goto :goto_1b
.line 1228
iput-boolean v2, p0, Lcom/sec/android/app/camera/AbstractCameraActivity;->mCheckCalling:Z
* EXPLANATION:
We are telling this method to return "false" where it jumps to :goto_1b
There you will see:
:goto_1b
return v2
As "v2" variable already set to "false" i.e: const/4 v2, 0x0
2. Camera "Low Battery" Alert Disabled
* FILE:
com\sec\android\app\camera\AbstractCameraActivity.smali
* METHOD:
.method protected handleLowBattery()V
* ADDED new line:
return-void
* WHERE?:
.prologue
.line 1569
return-void
const-string v1, "AbstractCameraActivity"
* EXPLANATION:
We are telling this method to return, exit, as it's just a "void" method
----------
* FILE:
com\sec\android\app\camera\Camera.smali
* METHOD:
.method private handleBatteryChanged(Landroid/content/Intent;)V
* REMOVED these lines:
invoke-virtual {p0}, Lcom/sec/android/app/camera/Camera;->handleLowBattery()V
invoke-direct {p0, v6}, Lcom/sec/android/app/camera/Camera;->handlePluggedLowBattery(Z)V
* WHERE?:
Just search and remove :)
* EXPLANATION:
To be sure not to call these methods.
3. Camera Volume Up/Down as a shutter
* FILE:
com\sec\android\app\camera\Camera.smali
* METHOD:
.method public onKeyDown(ILandroid/view/KeyEvent;)Z
* MODIFIED switch case:
.line 1487
:sswitch_data_204
.sparse-switch
0x4 -> :sswitch_38
0x17 -> :sswitch_90
0x18 -> :sswitch_90
0x19 -> :sswitch_90
0x1a -> :sswitch_38
0x1b -> :sswitch_90
0x42 -> :sswitch_90
0x50 -> :sswitch_3a
0x52 -> :sswitch_36
0x55 -> :sswitch_38
0x59 -> :sswitch_38
0x5a -> :sswitch_38
.end sparse-switch
* EXPLANATION:
0x18 is volume up, 0x19 is volume down
We are telling these switch cases to link to sswitch_90 and act the same as touch shutter button.
----------
* METHOD:
.method public onKeyUp(ILandroid/view/KeyEvent;)Z
* MODIFIED switch case:
.line 1690
nop
:sswitch_data_184
.sparse-switch
0x4 -> :sswitch_3d
0x17 -> :sswitch_cd
0x18 -> :sswitch_cd
0x19 -> :sswitch_cd
0x1a -> :sswitch_3d
0x1b -> :sswitch_cd
0x42 -> :sswitch_cd
0x50 -> :sswitch_146
0x52 -> :sswitch_96
.end sparse-switch
* EXPLANATION:
0x18 is volume up, 0x19 is volume down
We are telling these switch cases to link to sswitch_90 and act the same as touch shutter button.
4. Camera "Can't use flash on low battery" Alert Disabled
* FILE:
com\sec\android\app\camera\Camera.smali
* METHOD:
.method private handlePluggedLowBattery(Z)V
* ADDED new line:
return-void
* WHERE?:
.prologue
const/4 v3, 0x0
.line 4629
return-void
const-string v1, "Camera"
* EXPLANATION:
We are telling this method to return, exit, as it's just a "void" method
5. Camera focus sound Disabled
* FILE:
com\sec\android\app\camera\Camera.smali
* METHOD:
.method public playCameraSound(II)V
* ADDED new line:
return-void
* WHERE?:
.prologue
.line 3405
return-void
iget-object v0, p0, Lcom/sec/android/app/camera/Camera;->mSoundPool:Landroid/media/SoundPool;
* EXPLANATION:
We are telling this method to return, exit, as it's just a "void" method
6. Camcorder "Can't use flash on low battery" Alert Disabled
* FILE:
com\sec\android\app\camera\Camcorder.smali
* METHOD:
.method private handlePluggedLowBattery(Z)V
* ADDED new line:
return-void
* WHERE?:
.prologue
const/4 v4, 0x1
const/4 v3, 0x0
.line 2897
return-void
const-string v1, "Camcorder"
* EXPLANATION:
We are telling this method to return, exit, as it's just a "void" method
7. Camcorder "Low Battery" Alert Disabled
* FILE:
com\sec\android\app\camera\Camcorder.smali
* METHOD:
.method protected handleLowBattery()V
* ADDED new line:
return-void
* WHERE?:
.prologue
.line 2166
return-void
const-string v0, "Camcorder"
* EXPLANATION:
We are telling this method to return, exit, as it's just a "void" method
----------
* FILE:
com\sec\android\app\camera\Camcorder.smali
* METHOD:
.method private handleBatteryChanged(Landroid/content/Intent;)V
* REMOVED these lines:
invoke-virtual {p0}, Lcom/sec/android/app/camera/Camcorder;->handleLowBattery()V
invoke-direct {p0, v7}, Lcom/sec/android/app/camera/Camcorder;->handlePluggedLowBattery(Z)V
* WHERE?:
Just search and remove :)
* EXPLANATION:
To be sure not to call these methods.
8. Camcorder Better audio quality/video bitrate
FILE:
com\sec\android\app\camera\MediaRecorderProfile.smali
INFO FROM:
http://forum.xda-developers.com/showthread.php?t=1832472
VIDEO QUALITY:
1080p: Normal - 17MBit / Fine - 24MBit / Superfine - 30MBit
720p: Normal - 9MBit / Fine - 13MBit / Superfine - 17MBit
SOUND QUALITY:
192kbit/s
48000 khz
MODIFIED Arrays:
.line 66
:array_c4
.array-data 0x4
0x2t 0x0t 0x0t 0x0t
0x80t 0xc3t 0xc9t 0x1t
0x0t 0x36t 0x6et 0x1t
0x40t 0x66t 0x3t 0x1t
0x1et 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x0t 0xeet 0x2t 0x0t
0x2t 0x0t 0x0t 0x0t
0x80t 0xbbt 0x0t 0x0t
.end array-data
:array_dc
.array-data 0x4
0x2t 0x0t 0x0t 0x0t
0x40t 0x66t 0x3t 0x1t
0x40t 0x5dt 0xc6t 0x0t
0x40t 0x54t 0x89t 0x0t
0x1et 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x0t 0xeet 0x2t 0x0t
0x2t 0x0t 0x0t 0x0t
0x80t 0xbbt 0x0t 0x0t
.end array-data
:array_f4
.array-data 0x4
0x2t 0x0t 0x0t 0x0t
0xa8t 0xa0t 0x34t 0x0t
0x50t 0x3et 0x2bt 0x0t
0x90t 0x10t 0x23t 0x0t
0x1et 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x0t 0xeet 0x2t 0x0t
0x2t 0x0t 0x0t 0x0t
0x80t 0xbbt 0x0t 0x0t
.end array-data
:array_10c
.array-data 0x4
0x2t 0x0t 0x0t 0x0t
0x70t 0xf7t 0x2et 0x0t
0xa8t 0xf4t 0x26t 0x0t
0xb8t 0xcet 0x1et 0x0t
0x1et 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x0t 0xeet 0x2t 0x0t
0x2t 0x0t 0x0t 0x0t
0x80t 0xbbt 0x0t 0x0t
.end array-data
9. Camera Power button as a shutter
* FILE:
com\sec\android\app\camera\Camera.smali
* METHOD:
.method public onKeyUp(ILandroid/view/KeyEvent;)Z
* ADDED new line:
goto :cond_d2
* WHERE?:
.line 1727
:sswitch_cd
goto :cond_d2
if-eqz p2, :cond_d2
* EXPLANATION:
We are telling this switch case "_cd" to jump to "if" condition and start taking a picture.
----------
* MODIFIED switch case:
.line 1690
nop
:sswitch_data_184
.sparse-switch
0x4 -> :sswitch_3d
0x17 -> :sswitch_cd
0x18 -> :sswitch_cd
0x19 -> :sswitch_cd
0x1a -> :sswitch_cd
0x1b -> :sswitch_cd
0x42 -> :sswitch_cd
0x50 -> :sswitch_146
0x52 -> :sswitch_96
.end sparse-switch
* EXPLANATION:
0x1a is a power button.
We are telling this switch cases to link to sswitch_cd and act the same as touch shutter button.
10. Camera "Self-shot" Volume Up/Down as a shutter
* FILE:
com\sec\android\app\camera\SelfShotView.smali
* METHOD:
.method public onKeyDown(ILandroid/view/KeyEvent;)Z
* REMOVED these lines:
const/16 v0, 0x18
if-eq p1, v0, :cond_c
const/16 v0, 0x19
if-eq p1, v0, :cond_c
* WHERE?:
.prologue
.line 43
const/16 v0, 0x18
if-eq p1, v0, :cond_c
const/16 v0, 0x19
if-eq p1, v0, :cond_c
const/16 v0, 0x50
if-ne p1, v0, :cond_e
* EXPLANATION:
These are "if" conditions to check if volume keys up/down are pressed
----------
* FILE:
com\sec\android\app\camera\SelfShotView.smali
* METHOD:
.method public onKeyUp(ILandroid/view/KeyEvent;)Z
* REMOVED these lines:
const/16 v0, 0x18
if-eq p1, v0, :cond_c
const/16 v0, 0x19
if-eq p1, v0, :cond_c
* WHERE?:
.prologue
.line 53
const/16 v0, 0x18
if-eq p1, v0, :cond_c
const/16 v0, 0x19
if-eq p1, v0, :cond_c
const/16 v0, 0x50
if-ne p1, v0, :cond_e
* EXPLANATION:
These are "if" conditions to check if volume keys up/down are pressed
11. Camera "Action shot" shooting mode Volume Up/Down as a shutter
* FILE:
com\sec\android\app\camera\glwidget\TwGLActionMenu.smali
* METHOD:
.method public onKeyDown(ILandroid/view/KeyEvent;)Z
* ADDED new line:
goto :cond_c
* WHERE?:
.prologue
const/16 v2, 0x1b
const/4 v0, 0x1
.line 271
goto :cond_c
const/16 v1, 0x18
if-eq p1, v1, :cond_b
const/16 v1, 0x19
if-ne p1, v1, :cond_c
* EXPLANATION:
Jump below "if" conditions that check if volume keys up/down are pressed
----------
* FILE:
com\sec\android\app\camera\glwidget\TwGLActionMenu.smali
* METHOD:
.method public onKeyUp(ILandroid/view/KeyEvent;)Z
* ADDED new line:
goto :cond_c
* WHERE?:
.prologue
const/16 v2, 0x1b
const/4 v0, 0x1
.line 293
goto :cond_c
const/16 v1, 0x18
if-eq p1, v1, :cond_b
const/16 v1, 0x19
if-ne p1, v1, :cond_c
* EXPLANATION:
Jump below "if" conditions that check if volume keys up/down are pressed
12. Camera "Panorama" shooting mode Volume Up/Down as a shutter
* FILE:
com\sec\android\app\camera\glwidget\TwGLPanoramaMenu.smali
* METHOD:
.method public onKeyDown(ILandroid/view/KeyEvent;)Z
* ADDED new line:
goto :cond_c
* WHERE?:
.prologue
const/16 v2, 0x1b
const/4 v0, 0x1
.line 337
goto :cond_c
const/16 v1, 0x18
if-eq p1, v1, :cond_b
const/16 v1, 0x19
if-ne p1, v1, :cond_c
* EXPLANATION:
Jump below "if" conditions that check if volume keys up/down are pressed
----------
* FILE:
com\sec\android\app\camera\glwidget\TwGLPanoramaMenu.smali
* METHOD:
.method public onKeyUp(ILandroid/view/KeyEvent;)Z
* ADDED new line:
goto :cond_c
* WHERE?:
.prologue
const/16 v2, 0x1b
const/4 v0, 0x1
.line 361
goto :cond_c
const/16 v1, 0x18
if-eq p1, v1, :cond_b
const/16 v1, 0x19
if-ne p1, v1, :cond_c
* EXPLANATION:
Jump below "if" conditions that check if volume keys up/down are pressed
13. Camera Enabled "Shutter Sound On/Off" item in Menu
JB
--
* FILE:
com\sec\android\app\camera\resourcedata\CameraSettingsMenuResourceData.smali
* METHOD:
.method private initCommandIdList(Lcom/sec/android/app/camera/AbstractCameraActivity;)V
* REMOVED these lines:
invoke-static {}, Lcom/sec/android/app/CscFeature;->getInstance()Lcom/sec/android/app/CscFeature;
move-result-object v2
const-string v3, "CscFeature_Camera_ShutterSoundMenu"
invoke-virtual {v2, v3}, Lcom/sec/android/app/CscFeature;->getEnableStatus(Ljava/lang/String;)Z
move-result v2
if-eqz v2, :cond_f8
* WHERE?:
.line 80
iget-object v2, p0, Lcom/sec/android/app/camera/resourcedata/CameraSettingsMenuResourceData;->mCommandIdList:Ljava/util/ArrayList;
const/16 v3, 0x14
invoke-static {v3}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer;
move-result-object v3
invoke-virtual {v2, v3}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z
.line 82
:cond_e1
* EXPLANATION:
Remove "if" condition, below ":cond_e1", that check if "CscFeature_Camera_ShutterSoundMenu" is enabled in "system/csc/others.xml" or "system/csc/features.xml"
That way we permanently enable "Shutter Sound On/Off" menu item in menu array.
ICS
---
* FILE:
com\sec\android\app\camera\resourcedata\CameraSettingsMenuResourceData.smali
* METHOD:
.method private initCommandIdList(Lcom/sec/android/app/camera/AbstractCameraActivity;)V
* ADDED these lines:
iget-object v0, p0, Lcom/sec/android/app/camera/resourcedata/CameraSettingsMenuResourceData;->mCommandIdList:Ljava/util/ArrayList;
const/16 v1, 0x15
invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer;
move-result-object v1
invoke-virtual {v0, v1}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z
* WHERE?:
.line 67
iget-object v0, p0, Lcom/sec/android/app/camera/resourcedata/CameraSettingsMenuResourceData;->mCommandIdList:Ljava/util/ArrayList;
const/16 v1, 0x14
invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer;
move-result-object v1
invoke-virtual {v0, v1}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z
* EXPLANATION:
0x15 item is a "Shutter sound On/Off" and it's missing in ICS app.
That way we permanently enable "Shutter Sound On/Off" menu item in menu array.
Credits:
nguyenxuanhoa - Camera Volume Up/Down as a shutter
GizmoDroid - "Unable to start camera while in a call" Alert Disabled
zxz0O0 - Camcorder Better audio quality/video bitrate
xavierjohn22 - AutoAPKTool2.0.4a
Tungstwenty - Backup/Restore CWM script
*** Don't forget to give me Credit and link to this XDA thread if you're using my modifications or Camera.apk in your ROM ***
This mod found working fine on ROMs based for JB: LSZ/A , for ICS:LRT/Q/G/K/5:
LRK KingDroid ICS NoteMania v7.3/4
LRK RocketROM v10 ICS 4.0.4
* You're using this mod on your own risk. I'm not responsible for any damage of use or misuse of this fixed application Camera.apk
Liked it? Please make a donation
* Don't want to donate? Then at least hit Thanks button! (from hundred of downloads, only a few dozens say thanks).
Thank you!
Have fun!
The Following 101 Users Say Thank You to jobnik For This Useful Post: [ Click to Expand ]
92st (2nd September 2012),
abhinav quietly brilliant (25th January 2013),
Adhityairvan (31st August 2012),
Akbar Tan (30th December 2012),
alpha_tech (8th September 2012),
andydidacus (26th November 2012),
anonymous572 (16th September 2012),
Arobase40 (11th September 2012),
avantcs (12th September 2012),
Ayush770 (14th November 2012),
badge2033 (28th February 2013),
bigfau (12th September 2012),
Bonumy (4th October 2012),
brolee93 (8th September 2012),
bukote (31st March 2013),
D4rKlar (24th September 2012),
damastah (10th September 2012),
dangquybk (24th April 2013),
darkoctavius (14th September 2012),
darthvedor (1st September 2012),
djoni_gitara (1st September 2012),
dmourao (9th March 2013),
Dr.FANTASTIK-US (20th September 2012),
Dtravler (30th October 2012),
Elmar1801 (6th September 2012),
Emaaans (7th September 2012),
enrique1127 (4th November 2012),
este548 (27th March 2013),
FabreFaction (12th September 2012),
filou75 (16th September 2012),
firestonez (11th September 2012),
firinghead (10th January 2013),
Formhault (10th September 2012),
fosics (22nd September 2012),
goobieracing (13th October 2012),
goti(0) (5th October 2012),
gufrankureshi (20th January 2013),
hawkerpaul (24th September 2012),
hihipunkt (1st March 2013),
hi_ra (6th October 2012),
i3enz (1st March 2013),
iiiox (1st September 2012),
jac.ek (28th March 2013),
jacky169 (1st September 2012),
Jamal Ahmed (13th September 2012),
joey_oggie (29th December 2012),
Joey~ (18th January 2013),
Kcube989 (5th October 2012),
kennyboyismr47 (4th September 2012),
kimaro (22nd March 2013),
kornolio80 (3rd September 2012),
krishkamlesh (1st September 2012),
lakame (3rd September 2012),
lapolli (10th September 2012),
lightdelegate (13th September 2012),
lilien98 (23rd January 2013),
mazelost (16th September 2012),
mccmjoon76 (31st August 2012),
medusa954 (28th February 2013),
milsabords (11th September 2012),
mmaniack (23rd March 2013),
nameha (17th March 2013),
neverthemore (10th September 2012),
nickshertzer (2nd September 2012),
noteics (1st October 2012),
notemate (31st August 2012),
OBatRFan (10th September 2012),
parthpatels007 (12th September 2012),
psicolizzard (1st September 2012),
Pu|c3 (28th December 2012),
qwert2099 (1st September 2012),
raghavafitt (1st September 2012),
rakyim (1st September 2012),
Rivan_92 (7th November 2012),
Rodoo (26th February 2013),
rogconnect (13th September 2012),
routey (14th September 2012),
rraaka (4th September 2012),
runasimi (11th September 2012),
s204 (14th September 2012),
serkobe (30th December 2012),
Silenus21 (31st August 2012),
Sine. (29th November 2012),
sujaishukla (8th October 2012),
THAN2009 (21st September 2012),
TopOfNewYork (10th September 2012),
trevmar (7th September 2012),
tsachi (27th September 2012),
twospirits (10th September 2012),
txr33 (6th September 2012),
ubejd (10th September 2012),
unholygid (11th September 2012),
UpInTheAir (1st May 2013),
vessk0 (21st September 2012),
vovagershon (3rd October 2012),
vuidoi (21st September 2012),
warfareonly (23rd January 2013),
wjlung (29th September 2012),
xdaherle (Yesterday),
zkieal51 (25th November 2012),
zylor (4th September 2012)
31st August 2012, 04:46 PM
Senior Member
Thanks Meter
78
Posts: 296
Join Date: Jul 2012
Location: Bekasi
nice work man
gonna test now
The Following User Says Thank You to Adhityairvan For This Useful Post: [ Click to Expand ]
31st August 2012, 07:09 PM
Junior Member
Thanks Meter
0
Posts: 10
Join Date: May 2012
aokp(JB) not work it
31st August 2012, 07:17 PM
Senior Member -
OP
Thanks Meter
484
Posts: 124
Join Date: Mar 2010
Location: Tel-Aviv
DONATE TO ME
Quote:
Originally Posted by
notemate
aokp(JB) not work it
It's only for Samsung Stock / Custom ICS ROMs
The Following User Says Thank You to jobnik For This Useful Post: [ Click to Expand ]
31st August 2012, 11:25 PM
Junior Member
Thanks Meter
0
Posts: 15
Join Date: Jun 2012
Location: Grenoble
It doesn't work on ICS AOKP Build 40 unfortunately
1st September 2012, 04:02 AM
Junior Member
Thanks Meter
3
Posts: 28
Join Date: Oct 2011
Works fine in Kingdroid 7,4. Thx a lot
1st September 2012, 04:50 AM
Senior Member
Thanks Meter
8
Posts: 151
Join Date: Jun 2011
Location: Baku
And how can I revert back to stock in case of any problem?
1st September 2012, 10:22 AM
Junior Member
Thanks Meter
0
Posts: 10
Join Date: May 2012
Quote:
Originally Posted by
notemate
aokp(JB) not work it
kingdroid v.7.4 work it!!!good job!!
1st September 2012, 12:48 PM
Senior Member
Thanks Meter
9
Posts: 126
Join Date: Feb 2011
Location: Vadodara
Dear,
Great... It worked like charm on KingDroid v7.3....
Thanks a lot
Sent from my GT-N7000 using xda premium
| Th£ G®£@t G!@nt G@|@x¥ |\|0t€ |
1st September 2012, 02:11 PM
Junior Member
Thanks Meter
0
Posts: 13
Join Date: Jul 2012
Not working with stock ics 4.0.4 rom using custom kernel Notecore Hydracore V1.
Thread Tools
Search this Thread
Display Modes
Linear Mode
Most Thanked In This Thread
2 (quote)
There's a
media_profiles.xml … 2 It's based on Note JB
4.1.2 LSA firmware … 2 (quote)
If I've
understood correctly … 2 Please see the main
thread, I've fixed a … 2 (quote)
With your
fingers on a screen …