hello! i have galaxy s4 i9500 with magma rom v2.5.1. i have a problem. before the installion of the magma rom, i had ozcan rom 4.4.2 v6.3. i have backed up my call logs and meesages with"super backup" app. after the installation, i successfully restored the call logs. the restore of the messages was not succesful. instead of restoring correctly, the phone divided almost all of the conversations to a few distincit conversations each. that did nit happen before when i flashe other roms. what should i do? p.s. when i installed textra app, the order of the messages was fine, but i want to use the system app...
Hey guys, I rooted my Kindle Fire HD 7" (Tate) and installed a second boot loader and TWRP recovery. I installed CM11 but actually preferred the Amazon Fire OS. I tried to restore my backup from TWRP recovery, but I think it restored the boot partition badly. It now just flashes the Orange kindle fire logo, then reboots and does the same thing again and reboots etc. etc. Is there a way I can restore a Stock Fire Os Rom from my PC now or get into fastboot and re flash the boot loader (The files are in the downloads folder) Thanks!
I'm new to Android rooting and modding. my device says I do not have root access (When trying to install SuperSU I get errors). However I have TWRP installed on the phone. I would like to install cyanogenmod on the device. I have followed the tutorial on the oppo forums for rooting but SuperSU saying 'SuperSU's su binary is not present, this is a fatel ERROR!' I have also followed guides on how to unroot but no luck.
On my Nexus 5, im running stock kitkat until i flashed the paranoid android 5.0.2 after playing with it for some time , i decided to revert back to kitkat and ive made a nandroid backup before using TWRP the problem is i cant find my backup on TWRP recovery. i installed es file explorer and found out that my storage is not in the default format(?). It is in /sdcard/0 when usually it would be just /sdcard. how do i restore my backup/ make it visible in twrp restore. help is much appreciated :)
I want to restore my warranty, but I don't know my region where the phone came from and the cust number. I really would like to restore my warranty it is with locked bootloader, but I don't which .ftf to get
I keep on updating my phone with the latest rom almost every other day and also I use the CM privacy manager a lot to control access as well as to prevent wakes and autostart. But everytime i flash an update to my current ROM (i like to do a full wipe rather than dirty flash), I have to redo all the privacy settings. Is there a way these settings can be backed up and restored?
i need mtk andriod tool witch restore format i mean when we format any andriod phone its dead but any tool restore its again thanks & sorry if i wasted your time
is there anyway that I can recover a sms thread from a phone that I just restored to defaults? please it is very important I recover these. Yes I know I should of made sure they were backed up first :crying:. I have not used the phone since the restore apart from running a few windows based programs to recover, which did nothing
its a galaxy nexus running stock 4.1.2 rooted. please if you can help either post here of PM me. If anyone can help I don't mind paying abit for your time
I just got my blacklisted Kindle Fire HD 8.9 today and want to flash a custom ROM. I did the 7 with this a while back but forgot how I did it. I do have a fastboot cable. I tried that KFFirstAide64 but I never get it to root, I gave up on it on the 7 and succeeded with the KFHD System.img Restore Tool, can I do this with the 8.9 also?
I recently reverted back to stock and am now trying to restore one of my backups using Safestrap. I have 3 backups available in my TWRP folder on my SD card, but when I try to do a restore of the one I want I get the following error: "E: No partition selected for restore". How do I go about getting this backup installed? Thanks in advance for the help!
My HTC One has a defective USB port (charging works but connection to PC doesn't) Now I want to bring it in for repairs and for that purpose take it back to stock recovery and empty rom.
Since the USB port is busted I can't use ADB or anything like that so I'm looking for a (TWRP recovery) flashable file that let's me return to complete stock.
My phone is S-OFF and can stay that way for repairs in the Netherlands so just recovery and rom would be fantastic.
Hoping someone can point me in the right direction. Runnig CM12 and I'm jus having too many issues with critical components (battery life, phone, mobile data, bluetooth) a want to return to stock ROM but stay rooted so I can debloat and leave for future ROMS. When I first rooted I made a stock rooted TWRP backup but for some reason it fails to install and isn't listed under the restore option. What are my options to go back. Do I have to unroot, drop to 10b and then do the whole process all over again or am I missing something. thanks Darren
Here is my issue, will try to explain as much as I can:
So I got the phone only booting to the LG logo and no further. So I read a couple threads which were mentioning about the LG Flash tool that I could try to use to restore the device, that did not work. So I tried to do Fastboot to see if that would help in any way. After trying, I was able to get Fastboot using @Lelus method ,now I cant get back the S/W upgrade mode, trying everything i could think of and still no progress. Would really love to fix this device and appreciate any help I can get. :D
I'm looking for help in development, not general chitchat. If you don't know anything about coding or have anything new to add to this thread please do not post at all! Thanks for your cooperation!
Hello alltogether
I digged into the Lollipop code to look for a solution to restore the old Kitkat silent mode in Lollipop with Xposed.
- Don't allow volume changes to set ringer mode silent.
They introduced a new variable:
Code:
/** Allow volume changes to set ringer mode to silent? */ private static final boolean VOLUME_SETS_RINGER_MODE_SILENT = false;
There are only 3 results regarding this on Google, so I guess I'm the first to find it :D
My first attempt thus was to change this with Xposed. Unfortunately the variable is final and gets inclinded so you can't just hook and replace the ressource with Xposed. So I'm attempting to replace the methods in question.
Here is my current work-in-progress code. It does seem to work to some extent, after going to the vibrate mode another Vol- press does... something. Unfortunately it activates the priority mode (and breaks the interface a bit) rather than the silent mode.
public class TrueSilentMode implements IXposedHookLoadPackage { private static final String TAG = "TrueSilentMoe"; private static final boolean DEBUG = true; public int mPrevVolDirection;
//int result = XposedHelpers.getIntField(param.thisObject, "FLAG_ADJUST_VOLUME"); final int FLAG_ADJUST_VOLUME = 1; int result = FLAG_ADJUST_VOLUME; int FLAG_SHOW_SILENT_HINT = 1 << 7; //copied from android.media.Audiosystem
switch (ringerMode) { case RINGER_MODE_NORMAL: if (direction == AudioManager.ADJUST_LOWER) { if (mHasVibrator) { // "step" is the delta in internal index units corresponding to a // change of 1 in UI index units. // Because of rounding when rescaling from one stream index range to its alias // index range, we cannot simply test oldIndex == step: // (step <= oldIndex < 2 * step) is equivalent to: (old UI index == 1) if (step <= oldIndex && oldIndex < 2 * step) { ringerMode = RINGER_MODE_VIBRATE; } } else { // (oldIndex < step) is equivalent to (old UI index == 0) if ((oldIndex < step) && mPrevVolDirection != AudioManager.ADJUST_LOWER) { ringerMode = RINGER_MODE_SILENT; } } } break; case RINGER_MODE_VIBRATE: if (!mHasVibrator) { log("checkForRingerModeChange() current ringer mode is vibrate but no vibrator is present"); break; } if ((direction == AudioManager.ADJUST_LOWER)) { if (mPrevVolDirection != AudioManager.ADJUST_LOWER) { if (DEBUG) log("ringMode = RINGER_MODE_SILENT"); ringerMode = RINGER_MODE_SILENT; } } else if (direction == AudioManager.ADJUST_RAISE) { ringerMode = RINGER_MODE_NORMAL; } result &= ~FLAG_ADJUST_VOLUME; break; case RINGER_MODE_SILENT: if (direction == AudioManager.ADJUST_RAISE) { if (XposedHelpers.getBooleanField(param.thisObject, "PREVENT_VOLUME_ADJUSTMENT_IF_SILENT")) { result |= FLAG_SHOW_SILENT_HINT; //AudioManager.FLAG_SHOW_SILENT_HINT doesn't resolve for some reason } else { if (mHasVibrator) { ringerMode = RINGER_MODE_VIBRATE; } else { ringerMode = RINGER_MODE_NORMAL; } } } result &= ~FLAG_ADJUST_VOLUME; break; default: log("checkForRingerModeChange() wrong ringer mode: " + ringerMode); break; } XposedHelpers.callMethod(param.thisObject, "setRingerMode", ringerMode, false); mPrevVolDirection = direction;
return result; } });
} }
Now I'm wondering if there's a problem in my code - this is the first time I'm using Xposed, just studied the documentation a couple hours ago, so it is quite possible.
If not.. then my attempt does seem to be wrong. By now I've tried a couple other things like hooking the ZenModeHelper, messing with the vibration status and a couple others, but so far this didn't lead me anywhere.
The AudioManager code is quite complex, maybe I'm missing the needle in a haystackand someone can tell me a better place to archive what I'm intending?
Some additional information regarding silent mode:
No, the new "none" or "priority" modes are not substitutes. None: When you activate None you're alarms are turned off and your LED won't display anything. Priority: When you activate the priority mode without any priority interruptions you a) still won't have any LED notifications and b) totally loose on the real intention of the priority mode to actually let some notifications pass (like calls) - but not all.
There is a bug which you can use to actually activate the silent mode on the Nexus 5 (and possibly other devices): Bring your volume all the way down (= set it to vibrate only), then press VolUp once. Now reboot, voila you're in silent mode. Unfortunately you need to repear the reboot everytime you changed the notification volume. And funny incident, after my tests with Xposed this doesn't seem to work anymore, I will try with a full wipe again later on.
Afaik tablets do NOT have this restriction and can use the silent mode. Any confirmations? If yes, does this apply for both Wifi and LTE tablets? This actually is strange as I couldn't find any differences in the code for tablets - except maybe regarding the getMasterStreamType (that's why I'm asking about LTE/wifi)
Sorry if this is the wrong place. I have made several nandroid backups using Philz Touch recovery (6.0.4.7 i believe) and my ROM is Negalite Wonderom NG2 v3. All of the backups fail the MD5 check. I have made the backups from both the recovery and an app (online nandroid backup). I looked at the backups using nandroid manager, and the same file causes the backups to fail the md5 check. After re-generating the md5sum using nandroid manager, then immediately checking them via the in-app verify function, the same file (system.ext4.tar.gz.a) fails the check. Why is this, and how can I fix it? Any help would be appreciated.
Hi. It's been a while since I've done any flashing etc so not exactly sure about this. Is there a way to flash stock recovery without data loss?
I restored my s3 to stock before giving it to my niece but didn't realize twrp was still on there. I guess the phone is trying to get an ota update and ends up in twrp when restarting.
I backed up TA before unlocking the bootloader. Now I have restored it, I want to know if functions that need DRM key like Bionz, X reality stay intact? I mean those functions just depend on DRM key or anything else? I heard someone said Bionz will be lost forever once unlocking bootloader whether the DRM keys can be restored or not. And here's my DRM key status, 3 first lines is key ok, active Attachment 3180182
I recently tried to upgrade my LG G2 D802 into ROM_SIMPLE_5.0.1_V1.1, but when the flashing finishes, the device sticks on LG Logo.
Then, I tried the OptimusG3 V1.4.1 and it flashes correctly, and it starts to "starting apps", but stuck on it. I did a reboot, but when it starts it shows and sticks on the "Android" word after the "colored show". I tried several times, but no use :(
Finally, I tried the CM12 Lollipop LG G2 -d802 and it worked perfectly. But now, I want to get back into the Official Stock.
P.S., the LGFlashTool works on with the ".tot" files, and I have the Official Stock, bot with ".kdz" extension, and it doesn't work with the LGFlashTool!!
Dear, I've encrypted my phone and SD card with a password, then I've restore factory mode my phone. After that, my SD card appear as blank and needs to be formatted. How can i access it and restore data? Noe: I do have the password but dunno how to use it!!! Thanks