LightBlog

dimanche 17 avril 2016

Lg v10 5.1.1 and stumproot

Can i root my device using the stumproot apk? Ive tried unlocking my bootloader and habe failed every time so any advice would be appreciated

Sent from my LG-H901 using XDA-Developers mobile app


from xda-developers http://ift.tt/1SjG6uF
via IFTTT

No signal after "stock" rom flash

I have a SM-N9200, which is a China (inc. Hongkong) variety. In order to get Google Play, which is not available in the Chinese version, I flashed the Hong Kong version. But I have no cell signal after flash. Both roms (Chinese Mainland and Hong Kong) are designed for the same model, it should work. Does anyone have any ideas on this? Thanks in advance.


from xda-developers http://ift.tt/1SmLbFL
via IFTTT

Help with a LG G Pad 7.0

So I'm very new to the whole rooting process and ran into some issues with my Verizon LG G Pad 7.0.

I was trying to root my tablet and put Cyanogenmod 13 on it so it can be like stock Android.

Rooted it with RootKing and tried to flash the recovery with TWRP and ever since I tried that, in the upper right-hand corner when attempting anything system level like that, it says Error: boot certification verify.

The tablet functions but it won't do a factory data reset or wipe the cash or anything like that.

I've tried the LG Mobile Support Tool and the Verizon Wireless Software Upgrade Assistant too to repair the device but it keep failing.

Any help would be much appreciated.


from xda-developers http://ift.tt/1SjG6eb
via IFTTT

[UNOFFICIAL][ROM][6.0.1] TESLA OS V3.7 for YU YUNIQUE

Code:

* 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 this guide before following 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.



Downloads
  1. Build
  2. GAPPS

What Works?
  • Booting!
  • Display
  • Touchscreen
  • Wi-Fi
  • Bluetooth
  • Storage
  • Camera
  • Brightness
  • Audio
  • RIL
  • FIxed headset bug

What Doesn't Work?
  • You tell

Installation
  • Boot into Recovery TWRP-3.0.0-0
  • Go to twrp> then wipe> then advance wipe>
  • Then click on data and click on change file partition > ext4
  • Then click on cache >change file partition > ext4
  • Then wipe dalvik cache,cache,data,system
  • Then flash rom then gaaps arm 6.0
  • Done

Contributors
FireLord, ashwin007 , amalappunni ,
chaubeyprateek1,
[USER=32192]@DC07[/USER]
Source Code: http://ift.tt/1pym9pO

Note
  • 1. If I forgot to add someone in credits please PM me.
  • 2. Changing file system from f2fs to ext4 will wipe your internal storage too.

ROM OS Version: 6.0.x Marshmallow
ROM Kernel: Linux 3.10.x
ROM Firmware Required: TWRP-3.0.0
Based On: CyanogenMod

Version Information
Status:
Stable


from xda-developers http://ift.tt/1SmLdgJ
via IFTTT

[ROM][6.0.1] NAMELESS n-3.0 for YU YUNIQUE

Code:

* 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 this guide before following 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.



Downloads
  1. Build
  2. GAPPS

What Works?
  • Booting!
  • Display
  • Touchscreen
  • Wi-Fi
  • Bluetooth
  • Storage
  • Camera
  • Brightness
  • Audio
  • RIL
  • FIxed headset bug

What Doesn't Work?
  • You tell

Installation
  • Boot into Recovery TWRP-3.0.0-0
  • Go to twrp> then wipe> then advance wipe>
  • Then click on data and click on change file partition > ext4
  • Then click on cache >change file partition > ext4
  • Then wipe dalvik cache,cache,data,system
  • Then flash rom then gaaps arm 6.0
  • Done

Contributors
FireLord, ashwin007 , amalappunni ,
chaubeyprateek1,
[USER=32192]@DC07[/USER]
Source Code: http://ift.tt/1pym9pO

Note
  • 1. If I forgot to add someone in credits please PM me.
  • 2. Changing file system from f2fs to ext4 will wipe your internal storage too.
  • 3. No FMRadio

ROM OS Version: 6.0.x Marshmallow
ROM Kernel: Linux 3.10.x
ROM Firmware Required: TWRP-3.0.0
Based On: CyanogenMod

Version Information
Status:
Stable


from xda-developers http://ift.tt/1SjG2ew
via IFTTT

Root errorr

root failed using kingoroot using pc flashed with boot.tar.md5 using odin3 as u suggested why the rooting is failing any possible solutions to root my device my device SAMSUNG GT-I9060I GALAXY GRAND NEO PLUS I EVEN TURNED ON USB DEBUGGING MODE AND CONNECTED DEVICE USING SAMSUNG KIES 3


from xda-developers http://ift.tt/1SmLctl
via IFTTT

[GUIDE][GB]How to add jellybean like WiFi-BT switch in title bar

Add jellybean like Wi-Fi & Bluetooth ON/OFF switch in title_bar.

This is a cool guide to add Wi-Fi or Bluetooth switch in titlebar as you can see in jellybean.
This mod work will on any gingerbread running phone.

Things you need:-

Quote:

  • Apktool/Apk-Multitool
  • Notepad++
  • Basic knowledge about compiling & decompiling.
  • Basic knowledge about xml editing & modding.
  • Settings.apk from your rom

Lets start:-

Step-1
First of all decompile your settings.apk

Step-2
Now download this
and extract it.
Open & copy the "res" and paste it in your decompiled "settings" folder

Step-3
Now goto settings/res/xml and open wifi_settings.xml
Here you will see a line like that:
Code:

<CheckBoxPreference android:persistent="false" android:title="@string/wifi_quick_toggle_title" android:key="enable_wifi" android:summary="@string/wifi_quick_toggle_summary" />
Step-4
Add this android:layout="@layout/sachin_wifi_switch" Now it will look like this:
Code:

<CheckBoxPreference android:persistent="false" android:layout="@layout/sachin_wifi_switch" android:title="@string/wifi_quick_toggle_title" android:key="enable_wifi" android:summary="@string/wifi_quick_toggle_summary" />
now save and close it.

Step-5
Now open bluetooth_settings.xml
and find this:
Code:

<CheckBoxPreference android:title="@string/bluetooth" android:key="bt_checkbox" android:summary="@string/bluetooth_quick_toggle_summary" />
Step-6
Here add this android:layout="@layout/sachin_bt_switch"
and now it will look like this:
Code:

<CheckBoxPreference android:layout="@layout/sachin_bt_switch" android:title="@string/bluetooth" android:key="bt_checkbox" android:summary="@string/bluetooth_quick_toggle_summary" />
save and close it.

Step-7
Now open AndroidManifest.xml in "Settings" folder.
Here find this:
Code:

<activity android:label="@string/wifi_settings" android:icon="@drawable/mainmenu_icon_wifi_settings" android:name=".wifi.WifiSettings" android:clearTaskOnLaunch="true" android:configChanges="keyboardHidden|orientation">
Step-8
After "activity" add this android:theme="@android:style/Theme.NoTitleBar"
like this:
Code:

<activity android:theme="@android:style/Theme.NoTitleBar" android:label="@string/wifi_settings" android:icon="@drawable/mainmenu_icon_wifi_settings" android:name=".wifi.WifiSettings" android:clearTaskOnLaunch="true" android:configChanges="keyboardHidden|orientation">
now find this:
Code:

<activity android:label="@string/bluetooth_settings_title" android:icon="@drawable/mainmenu_icon_bluetooth_settings" android:name=".bluetooth.BluetoothSettings" android:clearTaskOnLaunch="true" android:configChanges="keyboardHidden|orientation">
similarly do here, add android:theme="@android:style/Theme.NoTitleBar" after "activity".
like this:
Code:

<activity android:theme="@android:style/Theme.NoTitleBar" android:label="@string/bluetooth_settings_title" android:icon="@drawable/mainmenu_icon_bluetooth_settings" android:name=".bluetooth.BluetoothSettings" android:clearTaskOnLaunch="true" android:configChanges="keyboardHidden|orientation">
save and close it.

and you are done with modding.

Now compile & Sign the new Settings.apk
and push it to system/app and change the permission to rw-r-r

Enjoy! Press THANKS if you like it


HIT HARD
HIT OFTEN

#Roman Empire


Regards:- Sachin Kumar53


from xda-developers http://ift.tt/1SjG1XM
via IFTTT