com.android.phone FC on Nougat roms - OnePlus 3 Questions & Answers

Kindly Help !!
Im getting frequent fc of com.android.phone and both sim rests in all Nougat Roms.
Dono whether its causing because of hike or whatsapp or anyother thing.
I have even attached the log of the force close .
Another problem I'm facing is WhatsApp crash .it crashes again n again and asks me to restore messages.
i have tried almost all N roms like citrus,RR N, RR N BJB, Tesla-n etc.
The force close starts only installing my apps from titanium. Mostly after whatsapp n hike.
error Log

HatRiGt said:
Kindly Help !!
Im getting frequent fc of com.android.phone and both sim rests in all Nougat Roms.
Dono whether its causing because of hike or whatsapp or anyother thing.
I have even attached the log of the force close .
Another problem I'm facing is WhatsApp crash .it crashes again n again and asks me to restore messages.
i have tried almost all N roms like citrus,RR N, RR N BJB, Tesla-n etc.
The force close starts only installing my apps from titanium. Mostly after whatsapp n hike.
error Log
Click to expand...
Click to collapse
I am getting the same error while going into details of sim cards. Not sure if it's due to titanium related.
Sent from my Pixel XL using Tapatalk

It does it on a clean OOS 4.0 install as well

I was facing the same , It was because of hike........... Installed beta 8 now no FC....

HatRiGt said:
Kindly Help !!
Im getting frequent fc of com.android.phone and both sim rests in all Nougat Roms.
Dono whether its causing because of hike or whatsapp or anyother thing.
I have even attached the log of the force close .
Another problem I'm facing is WhatsApp crash .it crashes again n again and asks me to restore messages.
i have tried almost all N roms like citrus,RR N, RR N BJB, Tesla-n etc.
The force close starts only installing my apps from titanium. Mostly after whatsapp n hike.
error Log
Click to expand...
Click to collapse
Yeah , mostly happens when you open hike. I had fixed it a month ago in framework/telephony but that fix will not work on the latest builds as there might be many changes in framework afterwards.
@cohaolain if you have some time, then try to push this fix to cyanogenmod or anyone with source & know how to commit to CM can do this.
check the following file in your source
https://github.com/CyanogenMod/android_frameworks_opt_telephony/blob/cm-14.1/src/java/com/android/internal/telephony/dataconnection/DcTracker.java
it should be in frameworks/opt/telephony (If I remember correctly).
Search for handlePcoData function.
you will find the following line :
Code:
PcoData pcoData = (PcoData)(ar.result);
That is causing the crash if you use hike on mobile data.
replace the whole method with below one to avoid crash.
Code:
private void handlePcoData(AsyncResult ar) {
if (ar.exception != null) {
Rlog.e(LOG_TAG, "PCO_DATA exception: " + ar.exception);
return;
}
if(ar.result instanceof PcoData) {
PcoData pcoData = (PcoData)(ar.result);
ArrayList<DataConnection> dcList = new ArrayList<>();
DataConnection temp = mDcc.getActiveDcByCid(pcoData.cid);
if (temp != null) {
dcList.add(temp);
}
if (dcList.size() == 0) {
Rlog.e(LOG_TAG, "PCO_DATA for unknown cid: " + pcoData.cid + ", inferring");
for (DataConnection dc : mDataConnections.values()) {
final int cid = dc.getCid();
if (cid == pcoData.cid) {
if (VDBG) Rlog.d(LOG_TAG, " found " + dc);
dcList.clear();
dcList.add(dc);
break;
}
// check if this dc is still connecting
if (cid == -1) {
for (ApnContext apnContext : dc.mApnContexts.keySet()) {
if (apnContext.getState() == DctConstants.State.CONNECTING) {
if (VDBG) Rlog.d(LOG_TAG, " found potential " + dc);
dcList.add(dc);
break;
}
}
}
}
}
if (dcList.size() == 0) {
Rlog.e(LOG_TAG, "PCO_DATA - couldn't infer cid");
return;
}
for (DataConnection dc : dcList) {
if (dc.mApnContexts.size() == 0) {
break;
}
// send one out for each apn type in play
for (ApnContext apnContext : dc.mApnContexts.keySet()) {
String apnType = apnContext.getApnType();
final Intent intent = new Intent(TelephonyIntents.ACTION_CARRIER_SIGNAL_PCO_VALUE);
intent.putExtra(TelephonyIntents.EXTRA_APN_TYPE_KEY, apnType);
intent.putExtra(TelephonyIntents.EXTRA_APN_PROTO_KEY, pcoData.bearerProto);
intent.putExtra(TelephonyIntents.EXTRA_PCO_ID_KEY, pcoData.pcoId);
intent.putExtra(TelephonyIntents.EXTRA_PCO_VALUE_KEY, pcoData.contents);
mPhone.getCarrierSignalAgent().notifyCarrierSignalReceivers(intent);
}
}
}
}

vjendra said:
I was facing the same , It was because of hike........... Installed beta 8 now no FC....
Click to expand...
Click to collapse
Ya.. I too was in open beta 8.. No FC.. But on other Nougat roms FC is still there..
Since most of the rom creater don't use hike, they don't care about this bug n tried to fix it.
Kindly look over this. We Indians wre addicted to hike just like WhatsApp.
@cohaolain @Blackjubel @Eliminater
@Grarak
@sud.vastav
 @dianlujitao
N sometimes the problem is with WhatsApp too..

deleted

Have you made sure that the proper phone app is set as default in the settings? This is a common problem on cm-based roms, where you need to set the default phone app yourself, or it will force close.

HatRiGt said:
Ya.. I too was in open beta 8.. No FC.. But on other Nougat roms FC is still there..
Since most of the rom creater don't use hike, they don't care about this bug n tried to fix it.
Kindly look over this. We Indians wre addicted to hike just like WhatsApp.
@cohaolain @Blackjubel @Eliminater
@Grarak
@sud.vastav
@dianlujitao
N sometimes the problem is with WhatsApp too..
Click to expand...
Click to collapse
One thing you can try
Clean intsall open beta 8
then dirty flash nougat rom of your choice
check if that helps.

BG64 said:
Have you made sure that the proper phone app is set as default in the settings? This is a common problem on cm-based roms, where you need to set the default phone app yourself, or it will force close.
Click to expand...
Click to collapse
Olready done that.. still the problem persists for hike users.

vjendra said:
I was facing the same , It was because of hike........... Installed beta 8 now no FC....
Click to expand...
Click to collapse
HatRiGt said:
Olready done that.. still the problem persists for hike users.
Click to expand...
Click to collapse
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
sure will do and get back to you

Same thing happens for me on a clean install of OOS Beta 8, going into settings -> about phone causes it to crash

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
i guess its working fine after flashing this patch . Letme confirm after using a day.

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
My hero !
Thanks to you, you save me 100h of research!
Thanks again to you!

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
It worked no crashes. Thanks

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
It works on RR and Nightlies
But doesn't seem to work on XenonHD (best N rom RN)
Could you maybe look into it?
Thanks for the help anyway :good:

sam_0829 said:
Try by flashing attached zip on latest nightly & let me know if it fixes the crash.
Click to expand...
Click to collapse
Still day worked fine.. Now a again a new problem started.
When I send SMS, again the force close of com.android.phone
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Sent from my Pixel using Tapatalk

it was a known bug specially in CM but i think it was resolved some commits ago

dante_nfs said:
it was a known bug specially in CM but i think it was resolved some commits ago
Click to expand...
Click to collapse
I'm using latest build of rr bjb.. Still getting same problem..
Sent from my Pixel using Tapatalk

Related

[Updated][ROM] Miui v6 Special Edition

Hi
Good News To All MIUI Lovers.
The long-waited MIUI 6 (RC1 Version) With Working Camera for Xiaomi Redmi 1S(HM 1S) is finally here! Please note that this is in Chinese Language.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Video Sample By Syhost
http://video.weibo.com/show?fid=1034:236727730e0eedc8d6a46d0f93855064
Syhost Said that is the last test package, if there is no big problem on upload. . . There are several bug or did not get
Screenshots :
Thank To These Persons (in alphabetical order):
1.ivan19871002 (@ autumn wind ivan) repaired camera / standby wake guide repair wifi
2.balika011 reference transplant methods,
[email protected] zhaochengw multiple cpu mode driver code, wifi driver code
[email protected] Mading Long Pigs provide test mobile
5.many students (From China) participated in the test. .
Working:
1. wifi: ok
2. Bluetooth: ok (tested Bluetooth headset, transfer files, Bluetooth sharing networks, etc.)
3. signal / 3G: ok (and can be turned on automatically identify Telecom / Unicom / )
4. off charge: ok
5. GPS: ok
6. Camera: ok
7. display driver (gpu, etc.): ok
8. selinux: ok
9. sound driver (mic and speak, etc.): ok
10. a distance sensor: ok
11. light sensor: ok
12. direction (three-axis) sensor: ok
13. video playback : ok
14. touch-driven: ok
15. OTG: ok
16. WFD (Wireless Display): Unknown (to be a TV test wfd function)
17. mtp usb drives, etc: ok
18. 3G data sharing: ok (tested usb, wifi, Bluetooth and other shared are ok)
19. shock: ok
20. Breathing light: ok
21. FM radio: ok
Bugs :
1. shutdown alarm clock does not work (kernel driver issue)
2. Mobile assistant (kernel driver code caused no f_mdb.c)
3. Pictures Taken from camera cannot open pic directly from camera (You can open it from gallery).
4. Telecommunications card initialization may be slow, it may need to * # * # 4636 # * # * and Set what can only be.
Download :
http://vdisk.weibo.com/lc/3GZHFAd4U88L8VjQfE7
Password :L592
How To Install:
Download Latest TWRP Recovery
Reboot to recovery
Install zip and select recovery.
reboot to recovery again
Full wipe recomended.
Install zip and choose downloaded Rom.
This Is Not My work
I am Just sharing this rom from chinese website
Build By Syhost...
!!!!!
Here we go again .... The mod will surely close this thread since its against the rule to post something which is not your work [emoji28]
Rom is in Chinese ryt?
dixan43 said:
Rom is in Chinese ryt?
Click to expand...
Click to collapse
Yes It's in chinese, but you can also change the language to english..
Flashed it 5 minutes ago, it seems to be bootlooping at the Mi logo.
Will update if any progress.
thehurricaneguy said:
Flashed it 5 minutes ago, it seems to be bootlooping at the Mi logo.
Will update if any progress.
Click to expand...
Click to collapse
Full wipe (recomended).
Then flash..
Any alternative link ? Cant download it
ravikanthchary said:
Full wipe (recomended).
Then flash..
Click to expand...
Click to collapse
Yeah, that's what I did.
I reflashed after copying the zip to my sd card, and now it booted up.
EDIT: Here's something I just figured out. The rom bootloops if you install Gapps.
EDIT #2: You can install the Gapps using the "Google Installer" app which is found in the MiMarket.
Mirror Link
http://d-h.st/s8F5
thehurricaneguy said:
Yeah, that's what I did.
I reflashed after copying the zip to my sd card, and now it booted up.
EDIT: Here's something I just figured out. The rom bootloops if you install Gapps.
EDIT #2: You can install the Gapps using the "Google Installer" app which is found in the MiMarket.
Click to expand...
Click to collapse
Does the Google framework works normal? I've heard from Facebook xiaomi Group that Google framework not working normaly, like play store force closed. Can you confirm that?
ravikanthchary said:
Hi
Good News To All MIUI Lovers.
Click to expand...
Click to collapse
What do you not understand?
1.This is NOT miui forum and here you MUST respect the rules.
2. You CAN'T post ROMs/Programs pasword protected.
3. You can't make duplicate thread.
.
.
.
etc.
Thread must be closed.
yonzz said:
Does the Google framework works normal? I've heard from Facebook xiaomi Group that Google framework not working normaly, like play store force closed. Can you confirm that?
Click to expand...
Click to collapse
I've been running the rom for a while now, the only problems I've faced are:
1) No deep sleep unless CPU governor is set to "Ondemand".
2) WiFi speeds seem to be a little lower than on stock, but this might be placebo.
Coming to Play Store and other Gapps, I haven't had a single problem with any of them!
They run like a dream
If this is just the RC, then I'm extremely excited for what the Stable version will be like
Hi,
I moved this from the Redmi Android Development forum because this is technically a ROM share. If you just want to share a ROM please post it into General and not into any of the Development forums. Also, you should get the Developer's Permission to post his work on xda because you will most likely get into to trouble if they show up and complain....
Thanks!
super su
super su binaries install failed?
sorry solved
Password??
Whats the password for the file? L592 is not working for me I need to extract files.. I downloaded it from Google drive mirror. Please reply
thehurricaneguy said:
I've been running the rom for a while now, the only problems I've faced are:
1) No deep sleep unless CPU governor is set to "Ondemand".
2) WiFi speeds seem to be a little lower than on stock, but this might be placebo.
Coming to Play Store and other Gapps, I haven't had a single problem with any of them!
They run like a dream
If this is just the RC, then I'm extremely excited for what the Stable version will be like
Click to expand...
Click to collapse
how did u install gapps ? asking this bcoz after i flash gapps file it's bootlooping.
Fix for gapps on miui6 by syhost
Method:
1.extract the rar file contents to SD card
2.install one by one and restart after installing each apk
3.Done
if u like pls hit thnkz:good:
Can someone plz mirror the link to devhost or anywhere else..?
No playstore
Stormfall said:
Method:
1.extract the rar file contents to SD card
2.install one by one and restart after installing each apk
3.Done
if u like pls hit thnkz:good:
Click to expand...
Click to collapse
Did exactly in the way u said, but got no playstore on homescreen and in gmail any of my mails are not syncing Pls help me out,
Brothers someone please help me with the password

[ROM][UNOFFICIAL][4.4.4] CyanogenMod 11 for Mate 7 [MT7-L09 / MT7-L10]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
CyanogenMod is a free, community built, aftermarket firmware distribution of Android 4.4.4 (KitKat), which is designed to increase performance and reliability over stock Android for your device.
Code:
#include
* All credits go to [ codeworkx, Ry09iu ]
/*
* 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 features included in this ROM
* before flashing 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.
*/
CyanogenMod is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.
installation:
- At first install the Official B127 Update on ur Phone, be sure u have stock-recovery installed before u try to install the UPDATE.APP. (without the B127 update u have bootloops after install CM 11 )
- Firmware B127 >>> DOWNLOAD-THREAD <<<
- After that please flash CWM [ Download-Thread ]
- Booting into the CWM and make a backup.
- Make Fatory reset.
- go into Mounting selection and Format: System, Cache, Data, SDcard-/data/media
- Now the install CM11-ROM.zip
- Install GoogleApps.zip
- Restart the device.
Click to expand...
Click to collapse
KNOWN ISSUES
- Voice is distorted on calls -> HD voice currenlty not supported (amr wideband)
- Video thumbnails are getting garbled
- Bluetooth audio not properly working (maybe)
- FMRadio - not working/implimented
- NFC - not working/implimented
- Signal display bug (maybe) << i dont see it
- Fingerprint sensor - not working/implimented
Click to expand...
Click to collapse
READ BEFORE FLASHING!
These builds are NOT official and will never be!
Do not submit bug on CyanogenMod issue tracker
Click to expand...
Click to collapse
If you're getting error messages while trying to flash the CyanogenMod zip, THEN FOLLOW THE ABOVE INSTRUCTIONS.
If your device doesn't boot into CM, reboot to Recovery, goto "Mounts & Storage" and select "Format cache" followed by "Format /data and /data/media". Then reboot!
XDAevDB Information
Cyanogenmod 11.0 for MT7-L09 / L10 ROM for the Huawei Acend Mate 7
Contributors
Ry09iu, codeworkx
ROM OS Version: 4.4.4 KitKat
ROM Kernel: Linux 3.10.30
Based On: CyanogenMod
Created 2015-02-06
XDA:DevDB Information
[UNOFFICIAL][4.4.4] CyanogenMod 11 for Mate 7 [MT7-L09 / MT7-L10], ROM for the Huawei Ascend Mate 7
Contributors
skydsler, codeworkx , Ry09iu
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.10.x
Based On: Cyanogenmod
Version Information
Status: Testing
Created 2015-02-28
Last Updated 2015-02-27
Omg!! Its coming
Very nice work!! If you fix the voicecalls i will flash it
desmoloch said:
Omg!! Its coming
Very nice work!! If you fix the voicecalls i will flash it
Click to expand...
Click to collapse
??? whats prblm with you are voice calls??!!?!
Simona Simmy said:
??? whats prblm with you are voice calls??!!?!
Click to expand...
Click to collapse
Take a look at "known issues". Voice distorted.
desmoloch said:
Take a look at "known issues". Voice distorted.
Click to expand...
Click to collapse
link ?
faulty phone ?
Simona Simmy said:
link ?
faulty phone ?
Click to expand...
Click to collapse
Sorry but what do you want from me?! Take a look at FIRST POST: distorted voicecall is a KNOWN issue. I have not tested the Rom yet and i wont until this issue is fixed.
desmoloch said:
Sorry but what do you want from me?! Take a look at FIRST POST: distorted voicecall is a KNOWN issue. I have not tested the Rom yet and i wont until this issue is fixed.
Click to expand...
Click to collapse
well am asking if your phon is not faulty man..
Simona Simmy said:
well am asking if your phon is not faulty man..
Click to expand...
Click to collapse
Its a Rom issue...
Back to topic: any timeshedule for getting fingerprint Sensor working? Could i help?
desmoloch said:
Its a Rom issue...
Back to topic: any timeshedule for getting fingerprint Sensor working?
Click to expand...
Click to collapse
no it isn't ..
Simona Simmy said:
no it isn't ..
Click to expand...
Click to collapse
Wtf??! My last comment on this: take a look at "known issues" (skydsler's first post). "Voice is distorted on calls". I have not tested the rom yet and so i dont have the issue. I have no Hardware Problem (cause Rom not flashed!!!) , its a known Rom issue... (In german i would say you are a Dau...)
If fixed, i will try the Rom.
desmoloch said:
Wtf??! My last comment on this: take a look at "known issues" (skydsler's first post). "Voice is distorted on calls". I have not tested the rom yet and so i dont have the issue. I have no Hardware Problem (cause Rom not flashed!!!) , its a known Rom issue... (In german i would say you are a Dau...)
If fixed, i will try the Rom.
Click to expand...
Click to collapse
:good:
This is a joke? Where is the link to download the Rom?
Hi,
i have no problems with the voice calls. Only HD-Voice is not supported. You can make any call without problems... Quality of calls are good.
The fingerprintsensor is a little bit tricky ive tested a lot of configurations with the config, lib and HW Files, but no succsess. Looking forward to fix it. Its a biiig feature that i wont miss at my MT7
kanaaa14 said:
This is a joke? Where is the link to download the Rom?
Click to expand...
Click to collapse
at the top ( in webbrowser ) over the first post ( Download button)
skydsler said:
Hi,
i have no problems with the voice calls. Only HD-Voice is not supported. You can make any call without problems... Quality of calls are good.
The fingerprintsensor is a little bit tricky ive tested a lot of configurations with the config, lib and HW Files, but no succsess. Looking forward to fix it. Its a biiig feature that i wont miss at my MT7
Click to expand...
Click to collapse
HD vocie is controlled by OP.. they STILL cant be arsed put voice via 4G .. STILL crappy 3G where sound is canny like 32 or 64kbps mp3 ..
Thumbs up for CM11, will try this later today and post back. Thanks
Clear instructions all went well, CM11 booted up normaly. 2 things, 1st there is no keyboard installed just google voice, 2nd some chinese applications are installed. Will post back later when. Have some questions, hope someone can help me with ... CPU governer is set to performance on default?, changed it to Interactive. CWM only see's clockworkmod folder not whole internal sd.
Very smooth so far, no FC's or any onwanted behaviour. Looks good, sound on phone dial could be better but i can live with that for now, im using alot of SIP VOIP...
Video of CM11. running https://www.youtube.com/watch?v=5Zqo8zR8tq8. Front camera settings show 1.3MP camera, i think its a bug the quality of the pictures are difently higer.
Huawei music app force closes. Using Es File explorer music app now, really hope we can get the Huawei Music app running. But Finaly i have a loud volume on my headphone
Guys look here new cyanogen mod and it looks WOW .. !
IF they gonna go this direction I WILL defo install it and try it !
I hope it will have futuristic layout and Ui and similar font as Logo name
Details here ; http://www.engadget.com/2015/03/02/cyanogen-qualcomm-partnership-rebrand/
Too many chinease apps, and when you take picture with camera , picture is saved rotated by 180 degres. I did not tested for more bugs, I returned to stock because this rom needs to be clean up from useles apps and chinease apps.
Really like the ringtone hello ya, so here it.
Anyone getting Huawei music app to work?
@skydsler
How did u get mate 7 tree to port cm ?

[ROM] [7.1.1] [JAN 2017] LineageOS 14.1 for T-Mobile Samsung Galaxy S III (d2tmo)

Official LineageOS nightlies are availiable as of January, 2017. Please go here to obtain them, or use the built in updater if you are already using the builds found in this thread.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Disclaimer: This is an unofficial build of LineageOS. I am not responsible for anything that happens to your device, including, but not limited to: bricking, boot loops, hardware damage, etc. By flashing a custom ROM, your Samsung warranty is VOID. Everything that you do is at your own risk.
Click to expand...
Click to collapse
IMPORTANT: If you are losing mobile data, or your APNs are not working, please flash this baseband: http://www.androidfilehost.com/?fid=23329332407584296
If you are getting a recursive error #7 when flashing, you need to update your CWM-based recovery.
ROM DOWNLOAD
GOOGLE APPS (GAPPS) DOWNLOAD​
Installation:
Installation instructions can be found here. All steps are the same, except the name of the zip file that you'll be flashing is different, so change it appropriately. If you're having issues, please feel free to ask.
Create your own build:
If you're interested in building LineageOS for d2tmo, please see this wiki page. If you have any questions in regards to building, PM me.
Proprietary blobs configuration: https://github.com/StealthBravo/lineageos-samsungd2xxx
Known Issues:
That's it!
If you have any questions, ask! Builds will be updated once or a couple times a week until official builds come out, or until this is bug-free.
You stated that camera is flawless. Is video working as well?
chalky7880 said:
You stated that camera is flawless. Is video working as well?
Click to expand...
Click to collapse
Ah, crap. I forgot to test video, I just tried taking regular photos. But to answer your question, no, it doesn't. I should really just bundle Open Camera with this...
This is an improvement over other builds though, since the camera on those didn't function at all.
StealthBravo said:
Ah, crap. I forgot to test video, I just tried taking regular photos. But to answer your question, no, it doesn't. I should really just bundle Open Camera with this...
This is an improvement over other builds though, since the camera on those didn't function at all.
Click to expand...
Click to collapse
Flashed this rom and running smoothly but camera is same as all lollipop roms it is taking photos from main camera but frozen in front camera mode thereafter not connecting tried clearing data, restarting mobile etc only disabled by tibu and installed open camera
It is not a complaint but just information as we all know that development of lollipop Rom is still in preliminary stage for our devices
Thanks OP for this Rom [emoji106]
I've also found another bug: you'll need to rerun setup if you turn WiFi off. DO NOT TURN WIFI OFF. I'm looking into a fix for this, as this is kind of a bad issue.
FIXED. See post below.
A new build will be released later today that will *hopefully* resolve some of the bugs above with the wifi and whatnot.
New build availiable. This release fixes the WiFi issue, as well as a few other minor bugs.
DOWNLOAD (237 MB)
I was having lag issues with liquidsmooth lollipop. Is the same issue present in this rom?
epicboy said:
I was having lag issues with liquidsmooth lollipop. Is the same issue present in this rom?
Click to expand...
Click to collapse
Nope. Lag-free. I haven't crashed at all, and actually, this is 10x more stable and smooth than the official CM 11 nightlies from my own experience. With ART and other performance improvements in Lollipop, this is an extremely beneficial update for the GS3.
Can this be flashed to the i747?
bloodstorm666 said:
Can this be flashed to the i747?
Click to expand...
Click to collapse
Since they share a similar kernel structure, you should, but I do not recommend it. I can build a d2att version if you guys are interested?
Settings sometimes crash when I click notification manager. And question: is there a kernel I can download where I can change the clock? Mine can only change I/o schedule. But this is a great ROM! Thank you for your hard work!
Shinotheweevil said:
Settings sometimes crash when I click notification manager. And question: is there a kernel I can download where I can change the clock? Mine can only change I/o schedule. But this is a great ROM! Thank you for your hard work!
Click to expand...
Click to collapse
Hmm, that's strange. I haven't experienced this issue. If you could, use logcat and send me your logs, and I'll see if I can find anything. I'll be releasing another build sometime this week, so maybe it will be fixed then. Logcat instructions: http://forum.xda-developers.com/showthread.php?t=1726238
Awesome mod , just installed it today . no issues Thanks for the hard work
Newbie help
Since you're doing a build from unchanged stuff I was wondering if you had any hints about how I can locate a couple missing files.
In running ./extract-files.sh I find almost all but the first file in the #DRM section of /android/system/device/samsung/d2-common/proprietary-files.txt are not on my phone. I had to comment out those lines to finish the extract, obviously this means DRM is broken on my machine (meh), but any idea where I could get those files or if I should really care?
IDisposable said:
Since you're doing a build from unchanged stuff I was wondering if you had any hints about how I can locate a couple missing files.
In running ./extract-files.sh I find almost all but the first file in the #DRM section of /android/system/device/samsung/d2-common/proprietary-files.txt are not on my phone. I had to comment out those lines to finish the extract, obviously this means DRM is broken on my machine (meh), but any idea where I could get those files or if I should really care?
Click to expand...
Click to collapse
TheMuppets github has all those files after running extract files. On their github look for /vendor/samsung and place that sanding folder in your *root build finder*/ vendor folder. Hope this helps.
Is there a recommended Kernel and radio? I've been out of the modding world for quite some time and haven't kept up.
Whew. I've really been away a long time. Move along, nothing to see here.
The gapps fail on the install for me. Trying the next older version...
rjscott2005 said:
The gapps fail on the install for me. Trying the next older version...
Click to expand...
Click to collapse
Is anyone having issues with gapps? I can't get a clean install from TWRP. It fails every time. I did a complete wipe and install of the ROM and then tried just installing Google Play Services 6.5.85 apk from androidpit and it just crashes. Any ideas? Thanks.
rjscott2005 said:
Is anyone having issues with gapps? I can't get a clean install from TWRP. It fails every time. I did a complete wipe and install of the ROM and then tried just installing Google Play Services 6.5.85 apk from androidpit and it just crashes. Any ideas? Thanks.
Click to expand...
Click to collapse
Please use the GAPPS found in the original post.

[ROM][9.0][CANCRO] Official Mokee Open Source Development

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
MoKee OpenSource is based on the Google AOSP. We update our source code frequently to keep up with the latest development, and not forgetting to merge in special features of our own at the same time.
A small group of people from around the world who are interested in Android launched this project on the 12th of December 2012, and is committed to make this ROM better and better. Like most contributors of open source projects (Omni, CyanogenMod, Slim AOSPA etc), we are doing all these in our free time as our passion…
Downloads official:
https://download.mokeedev.com/?device=cancro
Gapps recommended
http://opengapps.org/
TWRP 3.2.1.-0 Download:
https://drive.google.com/open?id=1cYBWgtTDYDD5LjH4cB5Z5CdlDVg0ikyi
Magisk for root:
https://download.mokeedev.com/extras
Installation mode :
To install the clean rom:
Download the rom
enters recovery
make all wipes (all)
choose zip from rom and install
you can use a gapps any of its taste since it is for android 8.1
or you can go MokeeCenter after starting rom, there you can download the small gapps integrated into the system and have a lighter and clean rom.
To install upgrade:
Method 1:
just download the complete package via OTA
enter the recovery
only to wipe cache and dalvik (optional, I do not)
install the complete package downloaded via OTA
Method 2:
Download the complete package over the air and go on to install update
let install automatically for you
Method 3:
Download only incremental updates
for that you need to donate 30 CNY for the team to release the feature on the device directly
But you can do this update without donation
just go on the site and click below build itself where it is written (upgrade: OTA to MK ...)
there will be the incremental free for you, this will save on your data package or in your spare time.
Special thanks to; @GuaiYiHU (Developer)
Nightly Version (MK90.0-cancro-201901040036) known bugs:
- Change wallpaper
- Turn on navbar
- Play video on instagram
- FM Radio crash
great news from mokee thanks alot. liar xioami said "we release miui 10 for mi3/mi4. after removed from update list"
ozgurbilge said:
Nightly Version (MK90.0-cancro-201901040036) known bugs:
- Change wallpaper
- Turn on navbar
- Play video on instagram
- FM Radio crash
Click to expand...
Click to collapse
Nightly Version (MK90.0-cancro-201901070037) published:
All bugs fixed. FM Radio Crash error continues.
ozgurbilge said:
Nightly Version (MK90.0-cancro-201901070037) published:
All bugs fixed. FM Radio Crash error continues.
Click to expand...
Click to collapse
+Quickcharge not working
ozgurbilge said:
Nightly Version (MK90.0-cancro-201901070037) published:
All bugs fixed. FM Radio Crash error continues.
Click to expand...
Click to collapse
- I can't change ringtone, if i change ringtone sound app keeps stopping
- FM Radio not work
- When I finished installing ROM, then I rebooted the system and when loading bootanimation appeared a few seconds later bootanimation stopped temporarily, then continued again but not directly booting into the mobile device setup will freeze and must reboot first by long pressing the power button
- when I want to set it in the setup wizard, in the check for updates it will force close
* I don't know this bug or not, but speaker sound is very low
where could i find changelog for every 9.0 nightly release?
This seems interesting. Downloading
Fast charging not working on official 27 th January
Small ui bug
Hi,
There's a small bug, when the status bar is pulled down, and you have VPN running, the settings button is hardly clickable. The VPN bar indicating a connection, moves the settings button offscreen.
My workaround was to remove all the tiles on the second screen. This bring the settings button back.
Hi
I have mi4w.
Please tell me that nitrogen os is better or mokee rom or aosp rom?
Which one has more features?
Which one is more stable?
Lhfskl said:
Hi
I have mi4w.
Please tell me that nitrogen os is better or mokee rom or aosp rom?
Which one has more features?
Which one is more stable?
Click to expand...
Click to collapse
latest is better,i choose mokee of course
Everything works smoothly except deep sleep battery issue. Phones remains awake whole time. See screenshots.
vishal24387 said:
Everything works smoothly except deep sleep battery issue. Phones remains awake whole time. See screenshots.
Click to expand...
Click to collapse
same problem here,i check my phone in accubattery and there is no deepsleep
I found solution to deep sleep issue. Its because of one app that I installed. When I uninstalled that app phone goes to deep sleep smoothly.
My phone did hang two time in two days. Couldn't get time to get log as I was at job place.
vishal24387 said:
I found solution to deep sleep issue. Its because of one app that I installed. When I uninstalled that app phone goes to deep sleep smoothly.
My phone did hang two time in two days. Couldn't get time to get log as I was at job place.
Click to expand...
Click to collapse
what app that you uninstall?
gemmoglock said:
Is there any old gcam port or stock camera port for this ROM?
Click to expand...
Click to collapse
I suggest Mi A1 or A2 Camera port module from Magisk.
z1d4n21 said:
what app that you uninstall?
Click to expand...
Click to collapse
Its jio4gvoice. Anyway in your case it might be different. Just go to better battery stat and check for partial wakelocks. There it will show highest wakelock related to app is draining your battery. Just uninstall that app.
vishal24387 said:
Its jio4gvoice. Anyway in your case it might be different. Just go to better battery stat and check for partial wakelocks. There it will show highest wakelock related to app is draining your battery. Just uninstall that app.
Click to expand...
Click to collapse
ok thanks i will try it
Any fix for video playback issue in facebook,instagram and whatsapp video call?
MI3W

[𝐎𝐅𝐅𝐈𝐂𝐈𝐀𝐋][𝐑𝐎𝐌]𝐀𝟏𝟑-𝐐𝐏𝐑𝟐 𝐁𝐞𝐭𝐚 𝟐.𝟏[𝐎𝐎𝐒 𝐂𝐀𝐌]𝐑𝐢𝐜𝐞𝐝𝐫𝐨𝐢𝐝 𝟔.𝟎] [𝐎𝐧𝐞𝐏𝐥𝐮𝐬 𝟔/𝐓 ] 𝟐3 Febrary ,𝟐𝟎𝟐𝟑

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
riceDroid for Device name [codename]
What is riceDroid?
* Ricedroid is an operating system based on lineage/crdroid, that aims to provide necessary "ricing" for android while being fast and stable.
Terminology
* The rice in the project name can be referred to "rice" (food) itself, but in a sense it is indeed the term "ricing" in linux.
Based on Android 12
Whats working?
Wi-Fi
RIL
Mobile data
GPS
Camera
Flashlight
Camcorder
Bluetooth
FM radio
Fingerprint reader
Face unlock
NFC
Lights
Sound/vibration
Known issues
Nothing yet
You tell me
VANILLA AND CORE GAPPS BUILD AVAILABLE
​
Android OS version: 13​
Security patch level: 2023-02-23​
Build author/Device Maintainer: optimusprime​
Source code: https://github.com/RiceDroid​
Kernel source code: LineageOS Kernel​
ROM Developer: optimusprime​
My Telegram Group: ONEPLUS-6series-rom-hub​
REPORTING BUGS!
As soon as the problem occurs, take a logcat!
​
​
Installation Guide For OnePlus 6T/6t (fajita,enchilada)​​Download OOS 11 : https://oxygenos.oneplus.net/OnePlus6TOxygen_34.J.62_OTA_0620_all_2111252336_f6eda340d7af4e3e.zip​​Download Rom : https://sourceforge.net/projects/ricedroid-oneplus-6-t/files/​​Download A12 TWRP Zip : https://sourceforge.net/projects/oneplus-6-series/files/A12 TWRP​​Boot A12 TWRP Img Using Fastboot​​Install OOS11.zip + RiceDroid+ Finalize+ A12 TWRP.zip​​Go Wipe > swipe right"normal wipe"​​Reboot Recovery again​​Go Wipe > Format Data > Type "Yes"​​Reboot System​
Click to expand...
Click to collapse
OnePlus 6|T Dynamic Partition Flashing instructions.​LINK HERE
Huge thanks to jeff brother pe core dev / jake brother for there help in bringup
Dynamic Partition thing ​
Stay tuned​
Our Telegram Group​
Click to expand...
Click to collapse
Download-Rom​
Click to expand...
Click to collapse
Spoiler: welcome ricedroidA13 screenshots
some screenshots
Spoiler: welcome ricedroidA13 screenshots
DOWNLOAD-LINK
CLICK-ME
MORE UP-TO-DATE-INFO / TEST VERSIONS -: JOINME
#reserved
reserved
Hi Dev,
Thank you for such a stable rom. Switched from Havoc.
Any possibility to add AOSP phone app with recording feature.
crazix said:
Hi Dev,
Thank you for such a stable rom. Switched from Havoc.
Any possibility to add AOSP phone app with recording feature.
Click to expand...
Click to collapse
thanks
me already working on it
I installed Pixelify and the option for recording calls appeared, then I can start recording but most cases the error message it's nor possible store the call is shown.
This rom runs smooth and fast. No problem at all. Would be possible more customizable?
Thank so much optimusprime9811
Ulises31 said:
I installed Pixelify and the option for recording calls appeared, then I can start recording but most cases the error message it's nor possible store the call is shown.
This rom runs smooth and fast. No problem at all. Would be possible more customizable?
Thank so much optimusprime9811
Click to expand...
Click to collapse
yes we will add sooner
along with new inbuilt gapps
What is the diffrence between these two zips?
riceDroid-6.0-22092116-OFFICIAL-6.0-enchilada.zip
riceDroid-6.0-22092214-OFFICIAL-Pixel-enchilada.zip
The "Pixel" version comes with GApps and the other version is vanilla.
DECEiFER said:
The "Pixel" version comes with GApps and the other version is vanilla.
Click to expand...
Click to collapse
Not correct.
Both versions are with GApps, but the first one was the initial build and only a day after the Pixel version arrived, which already had some improvements and changes.
Will the Banking and other apps working out of the box specially like Payzapp and maruti Suzuki reward app (which seems having some differnt algo and not even work in Lineage OS 19 vanila version)?
I found a bug: after paying with my banking app several times, suddenly stop working. The cause was the NFC, it "dissapeared" please see the screenshot attached. By rebooting the NFC menu appeared again. It has happened to me several times.
Ulises31 said:
I found a bug: after paying with my banking app several times, suddenly stop working. The cause was the NFC, it "dissapeared" please see the screenshot attached. By rebooting the NFC menu appeared again. It has happened to me several times.
Click to expand...
Click to collapse
Thnks will check
Hi I am on Android 12 version from Sep 12th build. Can I use inbuilt local update option to upgrade to Android 13 Pixel version?
hemantgogia09 said:
Hi I am on Android 12 version from Sep 12th build. Can I use inbuilt local update option to upgrade to Android 13 Pixel version?
Click to expand...
Click to collapse
They recommend always doing a clean installation, even more so coming from a previous version
hemantgogia09 said:
Hi I am on Android 12 version from Sep 12th build. Can I use inbuilt local update option to upgrade to Android 13 Pixel version?
Click to expand...
Click to collapse
I did it and it's working. But I don't have the updater option, not sure if it's my fault. And dynamic themes of android 13 still lack the 2 colors, they only have 1, just as android 12. Not sure if it's due to a not clean isntall too. When they release a good android 13 build with everything working i'll do a clean instalation, with the firmware and everything.
Yeah will do clean install only thanks
Hey guys
a very weird question and want someone who has ricedroid installed ,
did anyone try to see if you can screen capture the whatsapp new feature of [only view once]?
In thi version I get the "Review out-of-sync-changes" prompt in Google Photos. Can you set the Google Photos app as a system app so it'll solve this?
Thanks!
It's an amazing rom!

Categories

Resources