ads

Affichage des articles dont le libellé est Yuphoria. Afficher tous les articles
Affichage des articles dont le libellé est Yuphoria. Afficher tous les articles

vendredi 2 octobre 2015

[GUIDE] [How To] Change IMEI number and WiFi MAC Address in Yuphoria



Requirements:
1. Rooted Yuphoria phone
2. Xposed Framework (How to Install Xposed Framework)

Steps:

1. Install the app: Phone ID IMEI Changer

2. Open Xposed Installer, select 'Modules' and activate the module and reboot the phone.

3. Open the Phone ID Changer app and change the IMEI number & MAC Address as required.

Note:
Using this method, the IMEI number and MAC address is not permanently changed.
If Xposed is disabled or if app is uninstalled, the original IMEI is restored.



[GUIDE] [How To] Install Xposed in Yuphoria



Requirements:
1. Rooted Yuphoria phone
2. Flashed with any custom recovery like TWRP or CWM (I haven't tried using CWM)

Steps:

1. Download Xposed Framework ZIP file from here: Xposed for Lollipop [Android 5.0/5.1] (See attachments there)

Important Note:

For CM12 or any Lollipop 5.0 based ROM, download the file named xposed-vXX-sdk21-arm64.zip from there

For CM12.1 or any Lollipop 5.1 based ROM, download the file named xposed-vXX-sdk22-arm64.zip from there
(XX represents the current version)

2. Place it in Internal Storage of phone and boot into custom recovery.

3. Now flash the zip file and reboot the phone..
(The device will take around 5 minutes to boot up since the dalvik cache is formatted during flashing)

4. Download and Install the app XposedInstaller_3.0_xxxxxX.apk from: Xposed for Lollipop

That's it!! Xposed Framework is Installed in your phone.
You can now start using your favorite Xposed modules (apps).

Hit the Thanks button if it worked :)



mercredi 30 septembre 2015

[question] [new user] [yuphoria]



I am having a problem with my yuphoria regarding wifi i.e.,my phone is not recieving proper signals :crying:
I called at the service centre and they sent me a mail which said that it is a software and you need to flash the stock rom again! So is anyone facing this similar problem ! I have the indian version!
Is there any way to get out of this problem!:confused:
[Do not qoute the OP]



lundi 28 septembre 2015

[HOW TO] Enable USB Mass Storage Mode in Yuphoria to mount SD Card into Computer



Requirements:
1. Rooted Yuphoria phone with any ROM (this MAY work in other Yu phones.)
2. Terminal Emulator app
3. SE Linux Mode Changer app

One-Time Initial Steps:

1. Open SE Linux Mode Changer app and set it to 'Permissive' mode.
(This is required for write operations in SD card to work, else SD Card will be mounted as read-only).
2. Download the script file: ums
and copy & paste it in /system/bin folder.

Steps to Enable UMS:

1. Connect phone to Computer or TV or DVD or whatever.
2. Open Terminal Emulator app and Enter the following:

Code:


su
ums


That's it! Mass Storage Mode will be enabled.
Hit the Thanks Button if it worked :)



dimanche 27 septembre 2015

usb on the go otg on yuphoria [Test]



Hello friend
Today I am gonna tell u how to get otg support on yuphoria
But you have to check and tell me whether it is showing pendrive in otg or not.
Things u need
YU Yuphoria of course.
Root
Twrp I will tell u how to flash twrp if not done.
USB otg cable
And pendrive
So let's start
First go into settings->advanced settings->check advanced reboot.
Now press the power button select reboot->recovery
Now ur phone will boot into recovery go to install zip from sdcard .
While in sdcard select the location click on storage and you will see three options
1.Internal
2.external
3.usb otg.
Thats it guys
Please check and tell me if connecting otg shows pendrive or not.

a
b



jeudi 24 septembre 2015

[HOW TO] Spoof/Change Wi-Fi MAC Address & Hostname in Yuphoria (Root)



Requirements:
1. Rooted Yuphoria phone.
2. Terminal Emulator app.

Steps:
1. Turn Off Wi-Fi and Open Terminal Emulator app.
2. Enter 'su' and grant root access.
3. To change MAC address, Enter the following:

Code:


echo XX:XX:XX:XX:XX:XX > /sys/devices/soc.0/a000000.qcom,wcnss-wlan/wcnss_mac_addr

(Replace XX:XX:XX:XX:XX:XX with your desired MAC address like 12:34:56:78:9a:bc)

(You can even edit the file 'wcnss_mac_addr' present in /sys/devices/soc.0/a000000.qcom,wcnss-wlan/ if you don't like Terminal ;))

4. To change the hostname (device id shown in router), Enter the following:

Code:


setprop net.hostname ZZZZZ

(Replace ZZZZZ with any desired name)

5. Now Turn ON your WiFi :)
That's it!!

NOTE:
The MAC Address & Hostname restores to original values after reboot (or Power Off ;))

Alternatively, you can create a script like this:

Code:


#!/system/bin/sh
echo 12:34:56:78:9a:bc > /sys/devices/soc.0/a000000.qcom,wcnss-wlan/wcnss_mac_addr
setprop net.hostname Anonymous


and execute it (give su permission before executing)

I also made a flashable zip to make the job easy. Just flash it and open Terminal and for example, enter:

Code:


su
spoof 12:34:56:78:9a:bc Anonymous


Reply if you have any doubts/issues :)