Showing posts with label METHOD. Show all posts
Showing posts with label METHOD. Show all posts

Sunday, 11 October 2015

New Method For OD2 Unlock + Domestic GSM



Not My app so i can't provide you with the link but Google is your best friend (Only tested on L720) Its kinda of long as well
1st you need to be rooted and then you need to downgrade to MDC modem.
2nd Install GTv3.1.5.apk (idone app) ,Then install GTUpdate2_v3.1.8.apk and run it, SuperSU will ask to grant it, click Grant, click Update and reboot device.

3rd After reboot run the app and Click {SIM UICC Unlock} Reboot again and insert sim card (T-mobile,AT&T ETC.......)
4th go to Settings menu, Mobile networks, Network mode, Select GSM/UMTS. (I know still no service)

5th Go to phone> dial *#0011# > Press menu>back>menu>key input> "Q" >menu>key input>"0000" wait a few second
Then go to UMTS >DEBUG SCREEN >PHONE CONTROL >NETWORK CONTROL >GCF >Select the top option [1] GSM/(E)GPRS/WCDMA GCF ON.
It will say "success".
Reboot via the phone’s power menu after.
Finally you should have service on any us carrier and internationally



[GUIDE] [Easiest Method] Root Your Galaxy Grand GT-I9082 Without PC And Install CWM



Easiest Method

STEP:1
Download Kingroot v3.3.1.apk From the Attachment Below.

STEP:2
Now Open The App And Wait then Click On Root Now (Written In Chinese)

STEP:3
Wait For 3-5 Minutes

STEP:4
Done, You Have Successfully Rooted Your Device.

If You Want To Replace Kinguser With SuperSu Then,View This Thread
http://forum.xda-developers.com/gala...guser-t3222761


How To Install CWM (ClockWorkMod) Custom Recovery

STEP:1
Download TWRP Manager (Team Win Recovery Project) From Playstore

STEP:2
Now Open TWRP And Select Device Name And Below Select "Recovery Version To Install.

STEP:3
Select "2.8.6.0 twrp-2.8.6.0-i9082.img

STEP:4
Then, Select Install Recovery

STEP:5
It Will Downloaded And Install Automatically

STEP:6
Now Download CWM From Below Attachment And Put It In Your External SD Card

STEP:7
Now Go In Recovery By Holding Power+Volume Up+ Home Button Together

STEP:8
Now Flash The Zip File

STEP:9
Now Reboot Your Phone

Congrats, You Have Successfully Installed CWM

Note: Make A Nandroid Backup Or Full ROM Backup Before Modifying Your System







[GUIDE] [Easy Method 100% Working) Replace Kinguser Or Kingroot With SuperSU



Personal Experience

I Rooted My Samsung Galaxy Grand Via Kingroot v.3.3.1.apk but the problem is that Sometimes Kinguser Doesn't Grant Permission to the Apps, Also Very Irritating
Many Apps Requires SuperSu Support.So I had Done this Method


Method :
Note : Custom Recovery Must Be Installed (CWM or TWRP)
Before Proceeding This Method

1)Open Kinguser App
2)Go In Kinguser Settings And Remove Root Permission
3)Use Any File Manager And Create A Zip File e.g.SuperSu.apk to SuperSu.zip And. Put It In Your External SD Card
3)Now Go Into In Recovery By Vol Up+Home+Power Key
4)Now Flash The Zip File (Install zip from Sd Card And Select From SdCard1 SuperSu.zip) It Show An Error Because It Is User Created Zip
5)Before Flashing It Shows Your Phone Is Not Rooted "Root Now"
6)Select Yes
7)Now Reboot Your Phone
8)Install SuperSU.apk Normally
9)Open SuperSU And Install Su Binary Normally
10)Go In SuperSu Settings And Install SuperSU in System
11)Reboot Your Device
12)Congrats,You have Replaced Kinguser With SuperSU

Download The Latest Version Of SuperSU.apk

Hit,Thanks If This Method Works For You



Saturday, 10 October 2015

Can this method restore my Wifi connection?



I'm now using my GN as a back up, no sim card, only using wifi for some of the apps on there, and some games. Recently also testing it to be a car dash display/HUD display with OBDII scanner. However, after one day's test, it lost bluetooth and wifi connection. I can change the settings but nothing happens, and Wifi can't find any network now. (the 1st day it happened, it can still see home network, but now it can't)
I still have some information stored there so I don't want to do full re-install, or wipe data.
Can I just re-flash the same rom right now and keep all the data (app login/ game save etc...) It's on CM11 snapshot now.:confused:



finally need to root, preferred method?



i believe it's finally come time for me to root my beloved SM-N9005. i've recently moved from France to the UK and it appears as if i need to unlock my phone (RegionLockAway?), and i want to dump the Orange-branded version of Lollipop (..XXUGBOF1).

is CF-Auto-Root for the Samsung Galaxy Note 3 still the method of choice?

i'm on Linux so i'm guessing that Odin on VMWare is also still the way forward, correct?

comments/suggestions welcome.

thx.



Friday, 9 October 2015

How to hook a method from third party jar?



Hello:
It seems to be an obvious question, but I can't find the answer through google.
I am developing a app using unity3d, the package name is "com.unityproject.coolapp", but I need to use some third party plugin to fullfill some function, say, the package name of the third party plugin(a jar) is com.thirdparty, and the method I want to use is in com.thirdparty.internet.view package, and class name is MagicView, the method name is openAView(String url), something like that.
I successfully inspected the com.unityproject.coolapp, when it's lunching. but I never catch "com.thirdparty" fire. and I try to hook openAView method, I see the log shows no such function err.
here is my code:
if(lpparam.packageName.equals("com.unityproject.co olapp")){
XposedBridge.log("!!!!!!!cool app loaded!!!!!!!");
findAndHookMethod("com.thirdparty.internet.view", lpparam.classLoader, "openAView", String.class, new XC_MethodHook() {
@override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
XposedBridge.log("!!!!!!!open a view hooked!!!!!!!");
}
});
}
I am new to xposed, some help please? Thank you very much.