[HOW TO] Fix the USB OTG Unmount Wakelock in Samsung ROMs - Galaxy S II General

As you may know, in stock Samsung ICS ROMs, if you unmount a USB disk connected via USB OTG cable through the unmount notification in the notifications area, you'll be greeted with a UsbStorageUnmountter wakelock, which can only be killed with a reboot. It's a pain in the ass, but here's the fix.
Background of what's happening
When you click unmount, SystemUI calls the com/android/internal/app/UsbStorageUnmountActivity activity
UsbStorageUnmountActivity invokes the intent com.android.internal.os.storage.USB_STORAGE_UNMOUNT which is defined in com/android/internal/os/storage/UsbStorageUnmountter
The UsbStorageUnmountter service is where the wakelock is acquired (and supposed to be released onDestroy(), but never is.
Fix/hack
UsbStorageUnmountter is located in /system/framework/framework2.jar under com/android/internal/os/storage. Open it up.
Remove the wakelock acqusition
Remove the lines in red:
Code:
.method public onCreate()V
...
:cond_20
[COLOR="Red"]const-string v0, "power"
invoke-virtual {p0, v0}, Lcom/android/internal/os/storage/UsbStorageUnmountter;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
move-result-object v0
check-cast v0, Landroid/os/PowerManager;
const/4 v1, 0x1
const-string v2, "UsbStorageUnmountter"
invoke-virtual {v0, v1, v2}, Landroid/os/PowerManager;->newWakeLock(ILjava/lang/String;)Landroid/os/PowerManager$WakeLock;
move-result-object v0
iput-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
.line 74
iget-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->acquire()V[/COLOR]
.line 75
return-void
Remove the redundant wakelock release (probably don't need to do this since it's never called anyway)
Remove the lines in red:
Code:
.method public onDestroy()V
...
[COLOR="Red"].line 91
iget-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->release()V
.line 92
invoke-super {p0}, Landroid/app/Service;->onDestroy()V[/COLOR]
.line 93
return-void
Attached is an XWLPX framework2.jar with the above mods. Testing so far has been n=1 (just myself at the moment) so interested in feedback.

jazzk said:
As you may know, in stock Samsung ICS ROMs, if you unmount a USB disk connected via USB OTG cable through the unmount notification in the notifications area, you'll be greeted with a UsbStorageUnmountter wakelock, which can only be killed with a reboot. It's a pain in the ass, but here's the fix.
Background of what's happening
When you click unmount, SystemUI calls the com/android/internal/app/UsbStorageUnmountActivity activity
UsbStorageUnmountActivity invokes the intent com.android.internal.os.storage.USB_STORAGE_UNMOUNT which is defined in com/android/internal/os/storage/UsbStorageUnmountter
The UsbStorageUnmountter service is where the wakelock is acquired (and supposed to be released onDestroy(), but never is.
Fix/hack
UsbStorageUnmountter is located in /system/framework/framework2.jar under com/android/internal/os/storage. Open it up.
Remove the wakelock acqusition
Remove the lines in red:
Code:
.method public onCreate()V
...
:cond_20
[COLOR="Red"]const-string v0, "power"
invoke-virtual {p0, v0}, Lcom/android/internal/os/storage/UsbStorageUnmountter;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
move-result-object v0
check-cast v0, Landroid/os/PowerManager;
const/4 v1, 0x1
const-string v2, "UsbStorageUnmountter"
invoke-virtual {v0, v1, v2}, Landroid/os/PowerManager;->newWakeLock(ILjava/lang/String;)Landroid/os/PowerManager$WakeLock;
move-result-object v0
iput-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
.line 74
iget-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->acquire()V[/COLOR]
.line 75
return-void
Remove the redundant wakelock release (probably don't need to do this since it's never called anyway)
Remove the lines in red:
Code:
.method public onDestroy()V
...
[COLOR="Red"].line 91
iget-object v0, p0, Lcom/android/internal/os/storage/UsbStorageUnmountter;->mWakeLock:Landroid/os/PowerManager$WakeLock;
invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->release()V
.line 92
invoke-super {p0}, Landroid/app/Service;->onDestroy()V[/COLOR]
.line 93
return-void
Attached is an XWLPX framework2.jar with the above mods. Testing so far has been n=1 (just myself at the moment) so interested in feedback.
Click to expand...
Click to collapse
I recently purchased a note ,y first samsung and discovered this issue. please explain in more noob details how to make these changes and i will test it. ie do i need root? what software do i make the edits with?

I can't thank you enough, as a regular OTG user this has always annoyed me beyond belief. I will get right to testing this on the JB leak.
Edit:
I have tested this on Jelly Bean XXLSJ and it works. I have attached my file for anyone on the same version.

shadowofdarkness said:
I can't thank you enough, as a regular OTG user this has always annoyed me beyond belief. I will get right to testing this on the JB leak.
Edit:
I have tested this on Jelly Bean XXLSJ and it works. I have attached my file for anyone on the same version.
Click to expand...
Click to collapse
It's
a) sad to hear that the issue is still present in the JB build but
b) good to hear that the fix works in JB too
Devs
Please feel free to incorporate the fix in your ROMS
Mods
I posted this in the Original Development section. For whatever reason it was moved to the General Section. This is an original code fix to resolve a pretty serious issue present in all Samsung ROMs. When I posted this, as far as I could see, the issue had never been resolved at a code level (hence the post in the Original Development section). At the very least please move it to the Development Section or it's at risk of being drowned out and missed amongst the more general posts in the General section

jazzk said:
It's
a) sad to hear that the issue is still present in the JB build but
b) good to hear that the fix works in JB too
Click to expand...
Click to collapse
I know, I lost faith in Samsung fixing this when a family member got a S III and my test showed it had the same wakelock issue.

jazzk said:
It's
a) sad to hear that the issue is still present in the JB build but
b) good to hear that the fix works in JB too
Devs
Please feel free to incorporate the fix in your ROMS
Mods
I posted this in the Original Development section. For whatever reason it was moved to the General Section. This is an original code fix to resolve a pretty serious issue present in all Samsung ROMs. When I posted this, as far as I could see, the issue had never been resolved at a code level (hence the post in the Original Development section). At the very least please move it to the Development Section or it's at risk of being drowned out and missed amongst the more general posts in the General section
Click to expand...
Click to collapse
Thanks for sharing your work
Sent from my Transformer Prime TF201 using xda premium

so this will fix Galaxy s3 not showing up in my computer when connected whereas it is detected by another software?
Sent from my GT-I9300 using xda premium

Fantastic work It's such an annoyance on my SGS3. indie has incorporated this in his ROMs now!
:good:

Thanks for the post, i didn't know there is actually a fix for this. BTW, any idea why is the wakelock acquisition there? I am sure, whoever put it in place had something in mind. I am asking because i am trying to think what possible side effects we may get by removing it.
Also, attaching a windows scripting host .js i've made to automate the patch application, i can easily imagine it being useful for someone. See the js text for more info, it is well-commented.
Thanks again for the post.

By now the quickest way to get the result with minimal hacking is through the Xposed Framework http://forum.xda-developers.com/showthread.php?t=1574401 and the following mod http://www.villainrom.co.uk/forum/threads/usbstorageunmountter-wakelock-instant-releaser.5494/
Only apk's to install, no fiddling :fingers-crossed:

Are SGS3 ROM generally tend to include this framework? I seriously doubt it. Anyway, as you can see from my previous post, decompiling java or even automating the patching process isn't exactly a big deal for me

R: [HOW TO] Fix the USB OTG Unmount Wakelock in Samsung ROMs
Of course it's simple for you but might be complicated for others, not that smart, including myself. Xposed is an apk working on several rooted devices, including the sgs3 afaik, and mods are apk too, noob-friendly.
Sent from my GT-N7100 using xda premium

Does this work for anyone with GS3 I9300? Quite frankly, my battery started draining like mad last night for reasons I couldnt spot on my GSam Battery Monitor that prompted me to purchase Better Battery Stats to only notice I have usb mount/unmount wakelocks and true enough, I unmounted an USB OTG early in the day and a google search let me here! Anyone?

R: [HOW TO] Fix the USB OTG Unmount Wakelock in Samsung ROMs
Why don't give a try to Xposed? Read the instructions, you can always go back with recovery if you have problems.
Sent from my GT-N7100 using xda premium

debernardis said:
Why don't give a try to Xposed? Read the instructions, you can always go back with recovery if you have problems.
Sent from my GT-N7100 using xda premium
Click to expand...
Click to collapse
Thanks but he has noted that its based on AOSP sources and I am on stock sammy so yeah, I doubt it'll work.

R: [HOW TO] Fix the USB OTG Unmount Wakelock in Samsung ROMs
I run stock Sammy here on my note 2, and Xposed works as intended, and, yep, I can mount, unmount a sick and don't incur into the dreaded wakelock
Sent from my GT-N7100 using xda premium

Avoiding the wakelock
Hi all
I am using a stock samsung galaxy tab 2 tablet and I dont intend on rooting the device or installing a custom rom. I have found the dreded wakelock issue and I read that if the usb device is unmounted by going into settings and devices that the wakelock doesnt happen but if its unmounted via the widget in the dock that it would occur. The article said it would be best to disable the usb notification system but I cant see a way of doing this in a stock build.
Please could you confirm if there is anything I can change or do I just have to reboot every time I use a usb device to avoid the wakelock taking hold?
Thanks
Nick

R: [HOW TO] Fix the USB OTG Unmount Wakelock in Samsung ROMs
Only solution I found so far is the one detailed above with Xposed. But it needs root so maybe you better turn your device of after otg.
Sent from my GT-N7100 using xda premium

reverting back to m250s from gt-i9100
i have a problem when reverting my sgs ii.it stuck on T logo when reboot after flashed with odin
please help me what should i do :crying: and thanks before

debernardis said:
Only solution I found so far is the one detailed above with Xposed. But it needs root so maybe you better turn your device of after otg.
Sent from my GT-N7100 using xda premium
Click to expand...
Click to collapse
i just downloaded xposed usbun..apk and wondering if it works on note 10.1 with a rom based on xxcmc5 android revelution hd v6 would you please help me?
i just don't want to mess up with my system and flash the rom again

Related

[Request] Extended Power Menu for Galaxy Note

Paging all able developers, please produce an extended power menu. Going into CWM to press the reboot option is really too much trouble.
I tried to build, but unfortunately no success....
I roughly followed steps here: http://forum.xda-developers.com/showthread.php?t=1169443
No problem with the part on framework-res.apk....everything workin fine, 6 new Hex numbers were generated.
On part with android.policy.jar, I modified GlobalActions.smali the following way
a) I replaced "const/4 v9, 0x4" with "const/4 v9, 0x7"
b) I put in following code above "invoke-static {v0}, Lcom/google/android/collect/Lists;->newArrayList....."
Code:
const/4 v1, 0x4
new-instance v2, Lcom/android/internal/policy/impl/GlobalActions$9;
const v3, 0x1080523
const v4, 0x10405c4
invoke-direct {v2, p0, v3, v4}, Lcom/android/internal/policy/impl/GlobalActions$9;-><init>(Lcom/android/internal/policy/impl/GlobalActions;II)V
aput-object v2, v0, v1
const/4 v1, 0x5
new-instance v2, Lcom/android/internal/policy/impl/GlobalActions$10;
const v3, 0x1080524
const v4, 0x10405c2
invoke-direct {v2, p0, v3, v4}, Lcom/android/internal/policy/impl/GlobalActions$10;-><init>(Lcom/android/internal/policy/impl/GlobalActions;II)V
aput-object v2, v0, v1
const/4 v1, 0x6
new-instance v2, Lcom/android/internal/policy/impl/GlobalActions$11;
const v3, 0x1080522
const v4, 0x10405c3
invoke-direct {v2, p0, v3, v4}, Lcom/android/internal/policy/impl/GlobalActions$11;-><init>(Lcom/android/internal/policy/impl/GlobalActions;II)V
aput-object v2, v0, v1
(We have to follow up with GlobalActions$9 because GlobalActions$8 is already used on Note)
c) I generated the 3 new smalis (...$9 up to ...$11) and made the changes the way shown on sicopats HowTo. I took GlobalActions$5 for duplication, cause on Note this one contains Shutdown
After recompile/baksmali of both files I flashed them - but no Menu showing up any more...even the general Power Menu is gone...
So I think someone with deeper knowledge on smali coding has to do that...
1. Did you update new public ID`s in GolbalActions.smali from new compiled and then decompiled framework-res?
he_stheone64 said:
1. Did you update new public ID`s in GolbalActions.smali from new compiled and then decompiled framework-res?
Click to expand...
Click to collapse
of course
eybee1970 said:
I tried to build, but unfortunately no success....
Click to expand...
Click to collapse
Already got an idea (or two) what went wrong here but I need some additional infos (and of course the stock framework-res.apk) to verify this.
Please take a look at your stock build.prop and tell me which number is set at this line -> "ro.build.version.sdk="
MCOGW said:
Already got an idea (or two) what went wrong here but I need some additional infos (and of course the stock framework-res.apk) to verify this.
Please take a look at your stock build.prop and tell me which number is set at this line -> "ro.build.version.sdk="
Click to expand...
Click to collapse
@eyebee are you still working on this part.
He is, with some help from a friend, see post directly above yours
darkmax1974 said:
Paging all able developers, please produce an extended power menu. Going into CWM to press the reboot option is really too much trouble.
Click to expand...
Click to collapse
i am working on it ,, just give me a day or 2
i will do my best
many tries failed due to arrays problem
i believe that i am so close to solve it
hope me best of luck
success
i will use it in my ROM for note soon
Homam Ageel said:
success
i will use it in my ROM for note soon
Click to expand...
Click to collapse
Can u release as a stand alone mod ?
drgopoos said:
Can u release as a stand alone mod ?
Click to expand...
Click to collapse
i will after releasing my ROM
and that will be within 24 hrs don't worry
EDIT: i canceled the ROM idea
i will only post some development in the forum
There is a standalone mod for extended power menu in the Android Development section. Sorry no link, but it's in the thread title.
I tried this, everything (compiling, recompiling, smali, baksmali) was a success, But Now I dont even have a power menu options dialog. What went wrong ?

Enable MUTE option in MIUI ROM

Hey Guys,
I am using WIUI GB since..very fast and Good Looking ROM,
But only issue is there i can not turn on MUTE option in call
so i have tried all MIUI option but no solution,
i have just checked phone.apk from miui ROM via 7 zip,checked xml files
its saying
turnover_mute_
Click to expand...
Click to collapse
can someone help me on this..how to enable mute in voice call?
Thanks
Anands3 said:
Hey Guys,
I am using WIUI GB since..very fast and Good Looking ROM,
But only issue is there i can not turn on MUTE option in call
so i have tried all MIUI option but no solution,
i have just checked phone.apk from miui ROM via 7 zip,checked xml files
its saying
can someone help me on this..how to enable mute in voice call?
Thanks
Click to expand...
Click to collapse
+1 I have the same issue. When I select mute I get the icon in the status bar but the call doesn't go to mute and other party can hear what ever I can speak.
May be some DEV Help us who can edit apk or xml files
i am sure then mute function will work
hope it helps,
best regards.
yo000
yo000 said:
hope it helps,
best regards.
yo000
Click to expand...
Click to collapse
Actually I dont have PC knowledge i can do only Basic things,
May b this catlog can help any Dev to understand whats wrong here & Why Mute is not working..
Hey DEV please help us
Sent from my MB525 using xda app-developers app
Anands3 said:
Actually I dont have PC knowledge i can do only Basic things,
May b this catlog can help any Dev to understand whats wrong here & Why Mute is not working..
Hey DEV please help us
Sent from my MB525 using xda app-developers app
Click to expand...
Click to collapse
Any one???
Sent from my MB525 using xda app-developers app
Moved to Q&A. Please ask all questions there.
Looking forward for a working Mute Button
I am not a developer but thought will try to digg into this issue as I wanted to move back to MIUIv4 based ROM. Below is my finding which I felt may help developers to pick it up
PhoneUtils.smali of CM7.2
.method private static setMuteInternal(Lcom/android/internal/telephony/Phone;Z)V
.locals 5
.parameter "phone"
.parameter "muted"
.prologue"
PhoneUtils.smali of Pikachu MIUIv4
.method private static setMuteInternal(Lcom/android/internal/telephony/Phone;Z)V
.locals 2
.parameter
.parameter
.prologue
I found few more locations in the file without the word muted in the MIUI smali. I am not even a NOOB on SMALI stuff so looking forward for someone to help here.
EDIT: I tried adding "Phone" and "Muted" parameters but no effect. I think we need to find out the reason for "Error connection: Permission denied" as posted by yo000. Logcat throws the same errors whenever Mute function is engaged.
I m currently on Pikachu Miui That running Great, Best Battery Life,
Every thing works Great But only having mute problem
Sent from my MB525 using xda app-developers app
Found something else today
1. " init: sys_prop: permission denied uid:1000 name:ro.auto_time.startup_synced " error in dmesg every time I try Mute/Unmute -- Does anyone know what is this and how to fix it?
2. Below lines where missing in /system/etc/permissions/permissions.xml file. But no difference even after adding them
" <permission name="android.permission.RAW_AUDIO" >
<group gid="audio" /> "
Finally Working Mute on Defy with MIUI 2.4.20 GB
Finally Mute is working on my Wajk MIUI GB ROM for Defy+.
Replace the libaudio.so file with the attached one and set permission as rw-r--r--.
Thru ADB
Code:
adb push libaudio.so /system/lib
adb shell
su
chmod 644 /system/lib/libaudio.so
ls -l /system/lib/libaudio.so
Above command should display below output.
-rw-r--r-- 1 root root 177624 Feb 29 2008 libaudio.so
Reboot.
The attached libaudio.so is from CM7.2.
The only bug with my MIUI is gone now
thank you for the great info, i want to share my findings. maybe already known, but anyway.
off topic, you can make torch stay on in miui when lockscreen is active, just press power button immediately during the seconds led is on after pressing home, to turn off press again power button then home, works every time in miui spain 2.3.7c mb525/red. maybe works in Pikachu and other flavors.
best regards.
Pio.

bug in Phonesky.apk or CM10? (installExistingPackage function not found)

problem:
with some Play update released, many users are suddenly missing Play icon, and they can still see the app install. so everybody is searching for a custom rom bug which probably is not there or exist in CM10 or simply in Play update.
reason for Play app still being visible as installed is because its updated, but not working so app can be downgraded and play is back in business.
to fix we need a private signed apk until its fixed.
in newest vending.apk released (3.10.10) i get this code in com\google\android\finsky\utils\PackageManagerUtils
.method public static installExistingPackage(Landroid/content/Context;Ljava/lang/StringI
.registers 4
.parameter "context"
.parameter "packageName"
.annotation system Ldalvik/annotation/Throws;
value = {
Landroid/content/pm/PackageManager$NameNotFoundException;
}
.end annotation
.prologue
.line 239
invoke-virtual {p0}, Landroid/content/Context;->getPackageManager()Landroid/content/pm/PackageManager;
move-result-object v0
.line 240
.local v0, packageManager:Landroid/content/pm/PackageManager;
invoke-virtual {v0, p1}, Landroid/content/pm/PackageManager;->installExistingPackage(Ljava/lang/StringI
move-result v1
return v1
.end method
Click to expand...
Click to collapse
but android/content/pm/PackageManager;->installExistingPackage(Ljava/lang/StringI is nowhere to be found and i did check all packages and framework and specifically framework.jar
have Google released a buggy update? or what? is CM10 just incompatible right now so more and more will need a private signed vending.apk/Phonesky.apk because we cannot update to the google buggy release?
anyone?
i found someone else posting the question on google forums here
edit:
maybe bug relate to this, but not on all devices,
my GNII simply ignore that call and continue updating apps. so sorry, it can just be this bug is supposed to be ignored and something else trigger the problem on many roms currently.
any answers really appreciated.
resolved i believe: dalvik.vm.execution-mode=int:jit
seems to be the bad,bad entry in some builds around!!
so,
everything resovled, it just happens to alot of build that an old entry from 2.2+ still is working and affecting code.

[Q&A] [ROM][AUG 26][Stable][20F] Lightning ROM v4 [D80/0/1/2/3/5/6 F320]

Q&A for [ROM][AUG 26][Stable][20F] Lightning ROM v4 [D80/0/1/2/3/5/6 F320]
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer. Thanks for understanding and for helping to keep XDA neat and tidy! :smile:
flashing g3 status bar
i would like to know which file should i flash to have g3 status bar. i dont want to reflash the full rom again.
big issue with play services
I cannot connect to play services from games. i Couldnt do it when i used lightning v2, neither now with lightning v4...my g2 is d806.
seba_500 said:
I cannot connect to play services from games. i Couldnt do it when i used lightning v2, neither now with lightning v4...my g2 is d806.
Click to expand...
Click to collapse
just dl google play games and log in
seba_500 said:
i would like to know which file should i flash to have g3 status bar. i dont want to reflash the full rom again.
Click to expand...
Click to collapse
just select you preffered features from arome and dont make wipe
flashing different kernels
Is it a way to flash different kernels, but if i don't like them, go back to original cloudy kernel?
Which kernel do you recommend? i would like to have extra battery life, cause i get 11-15 hs of battery life in one charge, with 4-6hs of screen on time.
ahmed534 said:
just dl google play games and log in
Still nothing man, this bug is driving me nuts. I made a full wipe and reinstalled the rom... Everything went fine, but now the problem is back... Only happens with your rom.
Click to expand...
Click to collapse
@ahmed534 is there any way i can set userdebug in buildprop without leaving red writing on homescreen???
Imbtrying to get the lollipop gmail installed but the only way to do so is to edit buildprop under "ro.build.type" and set to userdebug but it leaves annoying red writing on homescreen....
http://forum.xda-developers.com/showthread.php?t=2912373
eur-D802 / Lightning ROM V4 /Dorimanx kernel 8.4
zubeedubs said:
@ahmed534 is there any way i can set userdebug in buildprop without leaving red writing on homescreen???
Imbtrying to get the lollipop gmail installed but the only way to do so is to edit buildprop under "ro.build.type" and set to userdebug but it leaves annoying red writing on homescreen....
http://forum.xda-developers.com/showthread.php?t=2912373
eur-D802 / Lightning ROM V4 /Dorimanx kernel 8.4
Click to expand...
Click to collapse
since I dont rly own the device i cant help you with this mate ! sry about that but you could just wait for it to launch offically, it should not take long time
Ok mate... I guess i'll just have to be patient... Cheers anyhow!!!
eur-D802 / Lightning ROM V4 /Dorimanx kernel 8.4
This is the best Rom for my G2
I also have test all other Roms
Thank you ahmed
Gesendet von meinem LG-D802
front camera quality is far worst than others, how can i improve this?
Hi to All,
I cannot play recorded videos with this ROM.
I was able to play it with OptimusG3 Rom.
Now it says "Cant play video" from stock gallery app. (However, ES file manager can play those videos)
Can anybody help?
thanks,
removed applications
Hi. I have tried what you mentioned: copy app and odex from (ahmed removed app for v3) to system/app and system/priv app, changed permissions to r-r--w and steel doesn't works. I see V5 is almost coming and steel V4 isn't finished with apps.. I am steel on V3, so please tell me what to do or please put fleshable file so we could use V4. Thank you. Your rom is the best!
No SD card recognize
Hi, Need your help, i installed this rom V4. i have a problem that it is not recognize my sd card.....any help please?
best rom
best rom so far thank you for your work.stable fast and 25-256 hours battery time.
Is WiFi calling removed from Lightning v4.0?
Hello, I just picked up a used T-Mo LGG2 running 4.4.2 and Lightning v4.0 off of ebay. (yeah, I know, no hatin' please) and switched to Tmo from big red.
I'm having coverage issues in my house/office where I spend about 90% of my time. My signal sucks. It drops calls, searches for signal and goes from 0 to 1 bar if I'm lucky. Although once outside almost full bars and 4G and 4GLTE all around town. Tmo is working with me and "engineering" and in the mean time they sent me a Tmo Personal Hotspot. Everyone in my house (also with sucky signal) can use their WiFi calling. All running stock phones of course.
We never had any connection issues in the house when we were with big red.
Anyways, my wife has a stock LGG2 and I can find the WiFi calling in her menu, but not mine Is it "hidden" or removed?
Any suggestions?
I've facing LTE problems. The option doenst appear in network section..
I've already deleted LTEconfigs.apk and .odex, and I don't know what to do.
v5
if you need more tester i can help i have d802.
V5
Thanks. Is v5 smooth right?
Video issue V5
ı record video. But ı cant watch it.

AOSP redmi note 2 (rus V3)

I found this nice AOSP on 4pda forum, created by Mirmer ( so all the credits go to him)... Nothing much to say, touch limited frequency, deep sleep fix, supersu, gapps, clearmotion, miravision, hdr not working, autobrightness also has problems and so on...
download v3:
yandex: https://yadi.sk/d/dR1mHmjfkhZTB
mega: https://mega.nz/#!p8xQRTwa!H5cYMJzQlBPWyNeYPVMCtQTshVAO7ZElVgHdlW3819E
This aosp I liked the most so far ( I tried all of them here on xda, from ydss, moviledualsim, vietnam forum and so on)... My question is can someone make it clean (let the users choose what apps to have) and put the new kernel ( I tried, it is more smooth but I can get camera working, I dont have such knowledge) and make it up to date?
in that website ar eshared my roms! can you tell them to remove my link?
Ofc I can... I thought you let them share your roms
Also I saw your roms are shared on many other forums, not only russian (chinese, spanish, vietnam...)
I used this ROM earlier. It is good and battery efficient; however, dynamic contrast in MiraVision does not work.
v3 is out today: https://yadi.sk/d/lZM0XmHmkeZqe
razorinc said:
v3 is out today: https://yadi.sk/d/lZM0XmHmkeZqe
Click to expand...
Click to collapse
Where can I find the changelog?
razorinc said:
v3 is out today: https://yadi.sk/d/lZM0XmHmkeZqe
Click to expand...
Click to collapse
not possible create mirror in mega?
link above is very very slow here...
Thanks for sharing mate. I'll try tomorrow
Sent from my Redmi Note 2 using Tapatalk
Dev111 said:
Where can I find the changelog?
Click to expand...
Click to collapse
this is what he said:"V3 added GravityBox, the last radio module should work auto brightness, Dolby Atmos"
martyan said:
not possible create mirror in mega?
link above is very very slow here...
Click to expand...
Click to collapse
It will be mirror in mega...
i tested here today...
this is good, but personally I prefer Miui based rom.
Between the AOSP I thought this one of the best but this has small amount of languages available.
martyan said:
i tested here today...
this is good, but personally I prefer Miui based rom.
Between the AOSP I thought this one of the best but this has small amount of languages available.
Click to expand...
Click to collapse
You can still install MoreLocale though
razorinc said:
v3 is out today: https://yadi.sk/d/lZM0XmHmkeZqe
Click to expand...
Click to collapse
I flashed the rom... So far it's great but... Two big problems
1) autobrightness is crazy
2) wifi disconnects when deep sleep
Doesn't happen to you? I will have to quit because of this..
Some people on Russian forum reported malware on the last rom, be careful before flashing.
I didnt tried v3 yet... I am reading about this malware now, but he upload it v3 again today: https://yadi.sk/d/bG6nuPuqkfkzB
razorinc said:
I didnt tried v3 yet... I am reading about this malware now, but he upload it v3 again today: https://yadi.sk/d/bG6nuPuqkfkzB
Click to expand...
Click to collapse
What do they say about malware..?
Ok he uploaded again but still saying 11.22...might be the same
I don't recommend this version. Auto Brightness is broken and wifi bug when screen locked
You didn't face it in v2? I might be trying it
Autobrightness problem was in v2, but the wifi problem not... hard to understand about malware (using google translate), some member reported ( Put V3 from MirMera I got randomly advertisements. Scanning Avira pointed to archive firmware: Adware / ANDR.Youmi.F.Gen)...
razorinc said:
Autobrightness problem was in v2, but the wifi problem not... hard to understand about malware (using google translate), some member reported ( Put V3 from MirMera I got randomly advertisements. Scanning Avira pointed to archive firmware: Adware / ANDR.Youmi.F.Gen)...
Click to expand...
Click to collapse
True, it has some ads...so Im quiting now, I would like to try v2 but download is too much slow
Maybe I will try cinafoniaci but I have read in italian forum people complaining about battery
ok people, wait with download of v3, mirmer will look what is going on and why antivirus reports malware, then he will upload a new version... strange for him, bcs he has a good reputation on 4pda
I can read Russian, people reported that they got advertisements which if you click, it will install random stuff on your phone. I flashed the 22.11 version and it indeed has malware. (Today i saw it on my notification screen)

Categories

Resources