[ROM][OFFICIAL][5.1.x] CyanogenMod 12.1 Nightlies for the Xperia Z3 - Xperia Z3 Android Development

Intro:
CyanogenMod is a free, community built, aftermarket firmware distribution of Android 5.1.x (Lollipop), which is designed to increase performance and reliability over stock Android for your device.
Disclaimer:
Code:
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* We are 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 us for messing up your device, we will laugh at you.
*
*/
About CyanogenMod:
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. You will need to provide your own Google Applications package (gapps). CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.
Screenshots:
Source Code:
All the source code for CyanogenMod is available in the CyanogenMod Github repo. And if you would like to contribute to CyanogenMod, please visit our Gerrit Code Review. Your changelog is whatever was merged into gerrit.
Notable Features:
CyanogenMod 12 also includes some quite interesting features for those who want full control of Android.
Theme Engine
UI Mods
Performance Options
OTA Updates via Settings
Built-in root access via Development Options
Download Links:
Nightly Builds: http://download.cyanogenmod.org/?device=z3
PA GAPPS Package: Click here!
The CyanogenMod team would like to thank everyone involved in helping with testing, coding, debugging & documenting! Enjoy!
Please note that I am not an official maintainer for the Z3. If there are any issues, mods or whoever responsible remove this thread.
XDA:DevDB Information
Official CyanogenMod 12.1 Nightlies Z3, ROM for the Sony Xperia Z3
Contributors
squabbi
Source Code: http://www.github.com/CyanogenMod
ROM OS Version: 5.1.x Lollipop
ROM Kernel: Linux 3.4.x
Based On: CyanogenMod
Version Information
Status: Nightly
Created 2015-01-22
Last Updated 2015-04-27

What's Working?
If you would like a more 'working' build, thanks to @Untouchab1e Right here. This includes fixes for numerous things!
Here is a list of items that are confirmed working and/or not working:
Working:
Screen
Camera
Microphone
RIL (Radio Interface Layer)
Speakers
NFC
Bluetooth
Video playback (Stock apps + Youtube playback)
Not Working:
Double-tap to wake (Try using another kernel)
Unconfirmed:
N/A
Other Issues:
Brightness fix is Here! Thanks @jdenman03
Camera video recording volume is very low.
4 Second delay on calls

Home button doesn't work me. Flashed PA Mini App Pack.

xnerdx said:
Home button doesn't work me. Flashed PA Mini App Pack.
Click to expand...
Click to collapse
This seems to be a moderate issue as well, have you tried wiping the system partition, completing a factory reset and then flashing the nightly and gapps.

I can't seem to figure out as to why this refuses to work for me.
After going to updater-script and changing z3 to leo (I use the CWM recovery), it begins the installation and then just gets stuck on it.
Same thing applies if I try to use anything beyond cm-12-20150120-UNOFFICIAL-z3 by David_Vaz while that particular version works fine; a few seconds and the installation completes.
Any ideas?

raptorjesus1337 said:
I can't seem to figure out as to why this refuses to work for me.
After going to updater-script and changing z3 to leo (I use the CWM recovery), it begins the installation and then just gets stuck on it.
Same thing applies if I try to use anything beyond cm-12-20150120-UNOFFICIAL-z3 by David_Vaz while that particular version works fine; a few seconds and the installation completes.
Any ideas?
Click to expand...
Click to collapse
Strange... It could be the recovery. Change back the recovery script to its default (z3) and give it a go in TWRP which worked for me. Both David_Vas and the official nighties of CM12.

I've been out of the 'loop' for a while and have no idea how to revert to stock recovery. Any tips?

raptorjesus1337 said:
I've been out of the 'loop' for a while and have no idea how to revert to stock recovery. Any tips?
Click to expand...
Click to collapse
You mean the stock sony recovery? Or just any recovery?

Oddily enough, I'm suffering with the same problem... Mine show "This package is for device: D6602, D6603, D6633, D6643, z3; this device is leo" .
It happens both with CWM and TWRP.
I'm clueless about what to do...
BTW, my device is D6633.

Warm welcome to the CM team. So happy to see you here.
I have a bug to report, if I may.
Methodology:
Make a call (I'm currently using the Google dialler, featured in PA Gapps).
During the call, while the screen is off, I attempt to turn the screen on, to end the call.
The screen won't turn on, however many times I click the power button, or try to communicate with the phone's gyroscope.
I end up having to hard reset the phone, to get it to reboot, otherwise the call cannot be ended, with the screen off.
Many thanks for your graciousness and hard work. I look forward to all further updates.
Regards.

radjan said:
Oddily enough, I'm suffering with the same problem... Mine show "This package is for device: D6602, D6603, D6633, D6643, z3; this device is leo" .
It happens both with CWM and TWRP.
I'm clueless about what to do...
BTW, my device is D6633.
Click to expand...
Click to collapse
All you need to do is edit the updater-script and change the device model it searches for. Instead of 'z3' replace it with 'leo'.
edit: It's something like this: But you should be seeing 'z3' instead of 'ST15i' change that to 'leo'. and you should be on your way!
now what is the updater-script and update-binary present in the META-INF>com>google>android in any flashable zip package?
1. updater-script - it is just a text file which contains all the commands which tells the clockworkmod what to do with the given
zip file. the updater-script is written in the edify scripting language.
2. update-binary - it is a binary which is requiered by the clockworkmod to translate the human readable format of the updater-
script to machine readable format for execution of the updater-script in our device.
exploring the updater-script:
now let's start exploring the updater-script !
1. open the updater script with notepad++ (strongly recommended)
2. now i will try and explain commands generally used in the updater-script,
assert(getprop("ro.product.device") == "ST15i" || getprop("ro.build.product") == "ST15i" ||
getprop("ro.product.device") == "ST15a" || getprop("ro.build.product") == "ST15a" ||
getprop("ro.product.device") == "smultron" || getprop("ro.build.product") == "smultron");
the above bunch of lines checks the device model to confirm that the zip file is flashed on the device
for which it is specifically created for. These bunch of lines are very important because it prevents
flashing of zip file which is not intended for the device hence avoiding any problems due to flashing
the wrong zip. for example the above lines checks for the value of "ro.product.device" and
"ro.build.product"in the build.prop file of the already existing rom in the device, if any of the three
defined values ST15i, ST15a, smultron are found it will continue with the next line of updater-script
otherwise flashing gets aborted with error in getprop.
Click to expand...
Click to collapse

Yeah, i found a link right after I posted. Sorry for bothering, and thanks anyway!

hospital349 said:
Warm welcome to the CM team. So happy to see you here.
I have a bug to report, if I may.
Methodology:
Make a call (I'm currently using the Google dialler, featured in PA Gapps).
During the call, while the screen is off, I attempt to turn the screen on, to end the call.
The screen won't turn on, however many times I click the power button, or try to communicate with the phone's gyroscope.
I end up having to hard reset the phone, to get it to reboot, otherwise the call cannot be ended, with the screen off.
Many thanks for your graciousness and hard work. I look forward to all further updates.
Regards.
Click to expand...
Click to collapse
Hi! Thanks!
Do you think there is something wrong with the proximity sensor? On mine it works perfectly, although I don't call enough to see if I can replicate it. I had a phone call just then and it went OK. The screen would turn back on.

radjan said:
Yeah, i found a link right after I posted. Sorry for bothering, and thanks anyway!
Click to expand...
Click to collapse
Don't sweat it! Enjoy your day with CM12!

squabbi said:
Hi! Thanks!
Do you think there is something wrong with the proximity sensor? On mine it works perfectly, although I don't call enough to see if I can replicate it. I had a phone call just then and it went OK. The screen would turn back on.
Click to expand...
Click to collapse
I'm not quite sure. I was using stock, previous to using CM12 and I always had to double tap the power button to activate the screen, during a call.
Does CM12 require a Z3 user to fo the same, or should it be automatic, as the user lowers the phone away from his/her ear?
I'm slightly worried that this is a hardware issue, on my side. That would be just my luck. Rubbish!
Thanks for your help.

hospital349 said:
I'm not quite sure. I was using stock, previous to using CM12 and I always had to double tap the power button to activate the screen, during a call.
Does CM12 require a Z3 user to fo the same, or should it be automatic, as the user lowers the phone away from his/her ear?
I'm slightly worried that this is a hardware issue, on my side. That would be just my luck. Rubbish!
Thanks for your help.
Click to expand...
Click to collapse
It could be a hardware issue if it happens on stock as well. Usually it is automatic when the user moves their phone away from their face. All other mobiles should do the same so I'm not sure why its not for you. Is there anything within the dialer settings or system settings that may have been changed?

squabbi said:
It could be a hardware issue if it happens on stock as well. Usually it is automatic when the user moves their phone away from their face. All other mobiles should do the same so I'm not sure why its not for you. Is there anything within the dialer settings or system settings that may have been changed?
Click to expand...
Click to collapse
I thought that as well and checked a little while ago. Nothing that I can see. Maybe it is the proximity sensor. Is there a way I can test my devices proximity functionality/calibration, or even recalibrate if necessary?
I really want to troubleshoot it and make sure that it's definitely a hardware issue, rather than a ROM/kernel problem.

hospital349 said:
I thought that as well and checked a little while ago. Nothing that I can see. Maybe it is the proximity sensor. Is there a way I can test my devices proximity functionality/calibration, or even recalibrate if necessary?
I really want to troubleshoot it and make sure that it's definitely a hardware issue, rather than a ROM/kernel problem.
Click to expand...
Click to collapse
Oh definately. I'm not too sure on the matter but I remember that on the Sony stock ROMs it had a service menu to test things out. There might be similar apps on the Play Store, but try this one out. I can't remember if it included the proximity check for it but it could test pressure (water tightness).
https://play.google.com/store/apps/details?id=com.cpuid.cpu_z

Ok, tried the ROM, it's awesome as I expected. But it has the same problem as David's one: the RIL doesn't seem to work for the dual sim version.
I know it's not a priority for you guys developing it, but could you let us know on the topic if something is done towards making it work for us with the D6633?
Once again, sorry for bothering. Don't want to come here asking for deadlines or anything. It's just that once you taste the lollipop, there's no going back. I'll miss it sorely for now.

squabbi said:
Oh definately. I'm not too sure on the matter but I remember that on the Sony stock ROMs it had a service menu to test things out. There might be similar apps on the Play Store, but try this one out. I can't remember if it included the proximity check for it but it could test pressure (water tightness).
https://play.google.com/store/apps/details?id=com.cpuid.cpu_z
Click to expand...
Click to collapse
An impressive app, if you ask me. It does look as if the proximity scales are moving, but that doesn't mean anything if the phone isn't registering my actions. I checked and service mode followed by calibration of proximity sensors, might fix it (according to some forums). I'm away from my PC and will have to revert to stock, to try this out.
So sorry if I at all hijacked the thread, for a while. I honestly thought that the issue may have been caused by a bug, at first.
Thanks for your insight and kindness.
Look forward to future iterations of CM12.
Regards.

Related

[ROM][BBQ] CyanogenMod-7 for Slide :: V7.0.3 (05/06/2011)

CyanogenMod is a free, community built distribution of Android 2.3 (Gingerbread) which greatly extends the capabilities of your phone.
Code:
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* The CM team is not responsible for bricked devices, dead SD cards,
* thermonuclear war, you getting fired because the alarm app failed, or anything whatsoever.
* 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.
*/
This is an AOSP-based build with extra contributions from many people which you can use without any type of Google applications. I found a link from some other project that can be used to restore the Google parts, which can be found below or elsewhere in the thread. I've still included the various hardware-specific code, which seems to be slowly being open-sourced anyway.
Visit the CHANGELOG for a full list of changes and features!
All source code is available at the CyanogenMod Github!
If you'd like to to contribute to CyanogenMod, checkout our Gerrit instance.
INSTRUCTIONS:
- First time flashing CM 7 (or coming from another ROM)?
1. Unlock/root your device - http://forum.xda-developers.com/showthread.php?t=754020
2. Do a Nandroid backup!
3. Update your radio if necessary (use the latest posted by ChiefzReloaded)
4. WIPE
5. Install the ROM
5. Optionally install the Google Addon
- Upgrading from earlier CM7?
1. Do a Nandroid Backup!
2. Install the ROM (your Google apps will be backed up automatically)
HOW TO REPORT BUGS OR PROBLEMS?
- Was it a hard reboot? Get me the file "/proc/last_kmsg".
- Was it a soft reboot or a "boot loop"? Run "adb logcat" and get me the full output.
- Pastebin links preferred
- Please use the issue tracker whenever possible!
Please visit the CyanogenMod Wiki for step-by-step installation walkthroughs and tons of other useful information.
The preferred method of installation is via ROM Manager, or you can head over to the CM Forums for manual downloads.
Thank you to EVERYONE involved in helping with testing, coding, debugging and documenting! Enjoy!
Only thing I've noticed with the last 3 builds, including RC1, is that the CPU locks onto the max set frequency, but it could be a result of my at least 30+ nowipe flashes of nightlies from build 1 to now if the issue remains after wiping and flashing I'll report it on the issue tracker.
Thank you, it has been amazing watching your team build the nightlys for this. The ability to modify CPU without an additional app should win this rom an award as far as I am concerned. Once again thank you for the years of work your team has put into these roms on all devices.
Regards,
AMAZING EVERYTHING IS WORKING INCLUDEING WIFI !!! Ty For all you work.
Sent from my T-Mobile myTouch 3G Slide using XDA App
hoping that this has the fix 19 had for wifi
Virus1x said:
hoping that this has the fix 19 had for wifi
Click to expand...
Click to collapse
It should be based off of the latest source, which would mean that it includes all previous bugfixes and additions/modifications from the nightly builds. It should be working smoothly, although I still have to test to see if the max frequency locking issue is still there or not. It was in build 40 of the nightlies, but I'm going to wipe and flash RC1 and see if it still happens.
Thank you ...Amazing Work.
MusicMan374 said:
Only thing I've noticed with the last 3 builds, including RC1, is that the CPU locks onto the max set frequency, but it could be a result of my at least 30+ nowipe flashes of nightlies from build 1 to now if the issue remains after wiping and flashing I'll report it on the issue tracker.
Click to expand...
Click to collapse
Yeah, the RC1 build has the fix. Unfortunately the new librpc didn't play nice with our hacks for the proprietary GPS on the Slide.
Is the boot.img already modified for darktremor a2sd? I'd like to use that. Thanks!
In on 1st page!
Good Job Cyanogen
Smartass Cyanogen Kernel haha
Only Cyanogen can code better than Chucknorris
Wait the stock cyanogen kernel has a smartass governor? Well then there was absolutely no point to me installing miguel's smartass kernel oh well. I'll flash system back over itself with the mtd boot patcher and call it good, after restoring titanium.
Glad to hear the CPU issues were resolved, I can confirm, no more issues I guess I didn't have to wipe after all, but it was probably about time to anyway haha. And holy damn my signature is out of date.
I'm heartbroken..
guess I'm stuck on Nightly 19.
Rc1 looked so slick..
Well guess that sucks..
All of us with the CM6 WIFI error had working wifi with Nightly build 19 and RC1 broke it again..
thank-god for a backup..
PLEASE Cyanogen Fix the WIFI error for CM7.. I don't have 3G I depend on WIFI
Virus1x said:
I'm heartbroken..
guess I'm stuck on Nightly 19.
Rc1 looked so slick..
Well guess that sucks..
All of us with the CM6 WIFI error had working wifi with Nightly build 19 and RC1 broke it again..
thank-god for a backup..
PLEASE Cyanogen Fix the WIFI error for CM7.. I don't have 3G I depend on WIFI
Click to expand...
Click to collapse
This should work on CM7: http://forum.xda-developers.com/showthread.php?t=896963
also, does the boot.img have a2sd enabled?
pettigrew95 said:
This should work on CM7: http://forum.xda-developers.com/showthread.php?t=896963
also, does the boot.img have a2sd enabled?
Click to expand...
Click to collapse
everyone claims it breaks it but I'l try..
Virus1x said:
everyone claims it breaks it but I'l try..
Click to expand...
Click to collapse
That wifi fix worked beatifully for me
boot loop
Are you guys getting a boot loop??
I wiped, installed the rom, than the google addon. It gets to the sign in page but when I press on the android it boots back up to the boot animation.
whoisloon said:
Are you guys getting a boot loop??
I wiped, installed the rom, than the google addon. It gets to the sign in page but when I press on the android it boots back up to the boot animation.
Click to expand...
Click to collapse
Did you do a full wipe?
pettigrew95 said:
Did you do a full wipe?
Click to expand...
Click to collapse
Yea, I did a full wipe, Wiped system, boot, cache, and etc
whoisloon said:
Yea, I did a full wipe, Wiped system, boot, cache, and etc
Click to expand...
Click to collapse
Hmmm, I'm not sure then, sorry man.
pettigrew95 said:
that wifi fix worked beatifully for me
Click to expand...
Click to collapse
on cm7 rc1?

[ROM][03/18/12] CyanogenMod-7.2.0 for Nexus One :: (V7.2.0-RC1)

CyanogenMod is a free, community built distribution of Android 2.3.7 (Gingerbread) which greatly extends the capabilities of your phone.
This is a release candidate, but you should find it stable for everyday use.
Code:
#include <std_disclaimer.h>
/*
* 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.
*/
Visit the CHANGELOG for a full list of changes and features!
All source code is available at the CyanogenMod Github! If you'd like to to contribute to CyanogenMod, checkout our Gerrit instance.
INSTRUCTIONS:
- First time flashing CM 7 to your phone (or coming from another ROM)?
1. Unlock/root your device and install Clockwork Recovery 3 via ROM Manager
2. Do a Nandroid backup!
3. WIPE
4. Install the ROM
5. Optionally install the Google Addon
- Upgrading from an earlier CM?
1. Do a Nandroid Backup!
2. Install the ROM (your Google apps will be backed up automatically)
HOW TO REPORT BUGS OR PROBLEMS?
- Was it a hard reboot? Get me the file "/proc/last_kmsg".
- Was it a soft reboot or a "boot loop"? Run "adb logcat" and get me the full output.
- Pastebin links preferred
- Please use the issue tracker whenever possible!
Please visit the CyanogenMod Wiki for step-by-step installation walkthroughs and tons of other useful information.
The preferred method of installation is via ROM Manager, or you can head over to the CM Forums for manual downloads.
Thank you to EVERYONE involved in helping with testing, coding, debugging and documenting! Enjoy!
Thank you, Sir!
Quick question, I ran through the change log, has the call delay being resolved in this build?
I accidentally hit post when I was kanging your post. Sorry boss.
Yup,
Both call delay and the wonk were fixed
S_Dot said:
Thank you, Sir!
Quick question, I ran through the change log, has the call delay being resolved in this build?
Click to expand...
Click to collapse
Please use thanks button instead of creating new post just to thanks OP.
Where did 7.1 RC go?
Has it been pulled?
EDIT: Sorry was in the wrong cyanogen forum....
link: http://download.cyanogenmod.com/get/update-cm-7.1.0-RC1-N1-signed.zip
imfloflo said:
Please use thanks button instead of creating new post just to thanks OP.
Click to expand...
Click to collapse
button thanks dont show with me o.0
BTW: i have a problem with Skype app, when i try login, my phone force reboot 2 times then everything work fine... anyone have it??? :|
Can accommodate the 7.1 720p video?
YAY!! thanks!!
Rotation issue
I've upgraded from 7.0.3 to 7.1RC1 and am noticing an issue. Twice now (within 3 hours), I've had the rotation lock to landscape only. It rotates between top/down landscape but won't go into portrait mode (except in apps that are locked to Portrait like LauncherPro). A reboot fixes it but it's quite annoying.
I did not wipe when I upgraded (other than Dalvik cache). Has anyone else had this issue?
Waiting for so long,and finally...
Thank you cyanogen !
Upgrade from 7.0.3 without a full wipe,
and working just fine so far!
Anksta said:
I've upgraded from 7.0.3 to 7.1RC1 and am noticing an issue. Twice now (within 3 hours), I've had the rotation lock to landscape only. It rotates between top/down landscape but won't go into portrait mode (except in apps that are locked to Portrait like LauncherPro). A reboot fixes it but it's quite annoying.
I did not wipe when I upgraded (other than Dalvik cache). Has anyone else had this issue?
Click to expand...
Click to collapse
You should probably do a full wipe coming from 7.0.3 -> 7.1RC1
edit: actually, probably NOT http://twitter.com/#!/cyanogen/statuses/85214357763530753 "yes, you can upgrade from 7.0 (or a nightly build) without a wipe."
zok-star said:
YAY!! thanks!!
Click to expand...
Click to collapse
tonyeva said:
Waiting for so long,
and finally...
Thank you cyanogen !
Click to expand...
Click to collapse
The thread is 1 page long and a moderator asked you in big bold red letters not to do this. Stop.
Anksta said:
I've upgraded from 7.0.3 to 7.1RC1 and am noticing an issue. Twice now (within 3 hours), I've had the rotation lock to landscape only. It rotates between top/down landscape but won't go into portrait mode (except in apps that are locked to Portrait like LauncherPro). A reboot fixes it but it's quite annoying.
I did not wipe when I upgraded (other than Dalvik cache). Has anyone else had this issue?
Click to expand...
Click to collapse
Check the '0 Degree' box in prefs
i'm surprised to find that a tiny UI glitch exists all the way down to CM7 RC1...
http://code.google.com/p/cyanogenmo...on Model Network Owner Summary Stars Priority
Anyone confirms?
as always... cm is great........
but i guess the speaker volume is decreased from froyo cm 6.x
is that already in the bug list?
hi guys... I come from Cyano 7.0.3.. I did full wipe before flashing this Stable 7.1 but I'm experiencing a bug which I had also in Nightlies.. My wifi disconnects randomly and then connects again after awhile.. why? what should I do to fix this issue?
gnlcp said:
hi guys... I come from Cyano 7.0.3.. I did full wipe before flashing this Stable 7.1 but I'm experiencing a bug which I had also in Nightlies.. My wifi disconnects randomly and then connects again after awhile.. why? what should I do to fix this issue?
Click to expand...
Click to collapse
I remember some say setting Wi-Fi Sleep Policy to "Never" will make things better
You may try
(my memory may be wrong though )
momomok said:
I remember some say setting Wi-Fi Sleep Policy to "Never" will make things better
You may try
(my memory may be wrong though )
Click to expand...
Click to collapse
Thanks for your advice, but I've already set "Never".. No improvment
gnlcp said:
Thanks for your advice, but I've already set "Never".. No improvment
Click to expand...
Click to collapse
what radio version are you on?
haksam said:
what radio version are you on?
Click to expand...
Click to collapse
32.41.00.32u_5.08.00.04

[ROM][4.4.2] Unofficial CyanogenMod 11 [1/4/14]

CyanogenMod is a free, community built, aftermarket firmware distribution of Android 4.4 (Kit Kat), which is designed to increase performance and reliability over stock Android for your device.
Code:
#include <std_disclaimer.h>
/*
* 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.
All the source code for CyanogenMod is available in the CyanogenMod Github repo. And if you would like to contribute to CyanogenMod, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Working:
Assuming everything.
Not Working:
Data is wonky.
Installation Instructions
Coming From Stock:
Download latest CM10.1 Nightly from here, CM11 ROM and 4.4.2 GApps zips from below and copy to sdcard.
Reboot to recovery
Make a backup of current ROM setup and Data YOUR DATA WILL BE WIPED
Flash CM10.1 zip
Flash CM11 zip. Follow next step carefully
You will get a partition layout error. Flash CM11 zip again
Zip install will fail with set_metadata_recursive: some changes failed
Reboot recovery from advanced menu. Notice recovery version CWM-based Recovery 6.0.6.4
Wipe Data/Factory Reset
Flash CM11 zip one last time
Flash GApps
Reboot
Coming From CM10.1:
Download CM11 ROM and 4.4.2 GApps zips from below and copy to sdcard.
Reboot to recovery
Make a backup of current ROM setup and Data YOUR DATA WILL BE WIPED
Flash CM11 zip. Follow next step carefully
You will get a partition layout error. Flash CM11 zip again
Zip install will fail with set_metadata_recursive: some changes failed
Reboot recovery from advanced menu. Notice recovery version CWM-based Recovery 6.0.6.4
Wipe Data/Factory Reset
Flash CM11 zip one last time
Flash GApps
Reboot
ROM Download:
CyanogenMod 11.0 2/20/14
md5: e832432b4268255b63d5507c8a639e99
CyanogenMod 11.0 1/9/14
md5: 7c937708189ba0112d6882d724a3a695
CyanogenMod 11.0 1/4/14
md5: b7df574c383a58fac360f5dc962c69c
GApps:
PA 4.4.2 Modular Mini GApps
ROM take a bit to boot. Be patient.
Credit to:
CyanogenMod
TeamHacksung
jt1134
Disclaimer: I will more than likely not be supporting this very actively. Just posting this to get it out there.
Also, I have not tested installation with TWRP, nor do I have the desire to. I have only tested with the convoluted CWM debacle listed above.
Enjoy!
TWRP Install Instructions:
nm3210 said:
boot into TWRP, clear cache, install this new CM11 1/4, reboot recovery, install CM11 1/4 again, install new gapps 4.4.2, reboot.
Click to expand...
Click to collapse
Changelog:
repo sync'd upstream changes.
merged FascinateRIL class from https://github.com/TeamRegular/andr...mmit/6678964eac6a9443adc85ef34dad0c2e76f30d58
times_infinity said:
CyanogenMod is a free, community built, aftermarket firmware distribution of Android 4.4 (Kit Kat), which is designed to increase performance and reliability over stock Android for your device.
ROM take a bit to boot. Be patient.
Credit to:
CyanogenMod
TeamHacksung
jt1134
Disclaimer: I will more than likely not be supporting this very actively. Just posting this to get it out there.
Also, I have not tested installation with TWRP, nor do I have the desire to. I have only tested with the convoluted CWM debacle listed above.
Enjoy!
Click to expand...
Click to collapse
... WOW that has come out of nowhere!!! :victory:
Thank you Mr. Infinity
We haven't seen you really around here in ages,,, but VERY much appreciated!!!!
.
Uneventful update from CM11 12/06 with TWRP, everything works well even without formating my data! It did replace TWRP with CWM 6.0.4.6, but whatever. My successful steps were as follows: boot into TWRP, clear cache, install this new CM11 1/4, reboot recovery, install CM11 1/4 again, install new gapps 4.4.2, reboot. 3G/Wifi work. Have not tested MMS, but I assume it works like it did on previous CM11 builds.
Transparency is disabled by default now (for everyone who's curious) because in the build.prop the "ro.config.low_ram" option is set to "true". You can set it to false to get transparency (and anything else that gets flagged as low-ram) back.
nm3210 said:
Uneventful update from CM11 12/06 with TWRP, everything works well even without formating my data! It did replace TWRP with CWM 6.0.4.6, but whatever. My successful steps were as follows: boot into TWRP, clear cache, install this new CM11 1/4, reboot recovery, install CM11 1/4 again, install new gapps 4.4.2, reboot. 3G/Wifi work. Have not tested MMS, but I assume it works like it did on previous CM11 builds.
Transparency is disabled by default now (for everyone who's curious) because in the build.prop the "ro.config.low_ram" option is set to "true". You can set it to false to get transparency (and anything else that gets flagged as low-ram) back.
Click to expand...
Click to collapse
Can't wait to play with this! This may actually make me update to kitkat on my fascinate! Thank you sir!
whoa I haven't seen you in a long time. welcome back and whoa cm11.
you thinking of making these official?
Sent from my SCH-I500 using xda app-developers app
Unfortunately data is borked and cycles on and off. I first dirty flashed and then did a complete wipe and no difference.
kb8no said:
Unfortunately data is borked and cycles on and off. I first dirty flashed and then did a complete wipe and no difference.
Click to expand...
Click to collapse
Yeah a day later I agree. You can quick toggle it to get it to work for a few minutes but it's not very consistent. Also, maybe it's the new WhisperPush or something, but I couldn't send or receive MMS at all. When receiving MMS, I would get a notification (both my SMS Popup and an actual notification) but there was no message in MMS.apk and it definitely never downloaded anything.
hi
whats the difference between this one and the the 12/06 cm 11.0 ? anyone know cause i coudnt get it to load i bricked twice.....thanks foor your hard work though nice...
hutchjim said:
whats the difference between this one and the the 12/06 cm 11.0 ? anyone know cause i coudnt get it to load i bricked twice.....thanks foor your hard work though nice...
Click to expand...
Click to collapse
This one is a smoother and if data was fixed I think it would be great. Data drops drove me off this in hours. No problems flashing. Maybe you got a bad download.
12/6 was rougher and data drop plagued as well so not a DD.
12/6 was all good for me. I used it for almost a month without a hitch. Data worked fine too for me. Just the urge of flashing something new took over and I tried DU5 but was put off by random reboots. So switched to cm 11 1/04. Happy with it till date. Off course data is flaky but will live with it until it's rectified.
Sent from my SCH-I500 using Tapatalk
new build is up guys.
hopefully it fixes data.
Enjoy!
Running this latest build without any tweaks since yesterday. Data is stable and so is the ROM. Great work. Thanks. :thumbup::thumbup::beer:
Sent from my SCH-I500 using Tapatalk
great work!
lots of updates going through for the device on BBQlog so still curious why the Fascinate isn't officially being updated anymore?
trajik78 said:
great work!
lots of updates going through for the device on BBQlog so still curious why the Fascinate isn't officially being updated anymore?
Click to expand...
Click to collapse
jt1134, the official CM maintainer for the fascinate and a couple other devices (OG Tab 7 CDMA i think), has either retired the fascinate or isn't on TeamDouche anymore.
the performance setting and ART not stick ~
A-L31 said:
the performance setting and ART not stick ~
Click to expand...
Click to collapse
You might try chainfires supersu
perf settings seem buggy though. even on du
Don't know in art..
hhp_211 said:
You might try chainfires supersu
perf settings seem buggy though. even on du
Don't know in art..
Click to expand...
Click to collapse
sorry, i just found out. i use xposed frameworks. after uninstall it everything i described above is false.
ART Working (takes time to boot, i almost inpatient i think i'm on bootloop :victory: )
Performance Stick at boot ~ :silly:
A-L31 said:
sorry, i just found out. i use xposed frameworks. after uninstall it everything i described above is false.
ART Working (takes time to boot, i almost inpatient i think i'm on bootloop :victory: )
Performance Stick at boot ~ :silly:
Click to expand...
Click to collapse
Good to know, thanks for the update
i can't install app to sd card.
when i restore with TiBu it stuck. when i'm download from app store it says Couldn't install on USB storage or SD Card.
is it something to do with ART or the ROM?
what i'm trying to install / restore is whatsapp wallpaper. it goes automatically to SD
anyone?

[ROM][Unofficial][7.1.2] LineageOS 14

LineageOS Android Distribution 14​
Lineage OS Android Distribution is the continuation of the now discontinued CyanogenMod.
Instructions​1. Make a Nandroid backup using TWRP or similar custom recovery if flashing from a different ROM.
2. Download the latest LineageOS ROM (uploading) and copy it to either the internal storage, an SD card, or an OTG usb drive.
3. Download a Nougat (7.1) Google Apps Package (GApps) for ARM devices if desired (OpenGApps recommended).
4. Boot into the custom recovery to flash the ROM and/or GApps .
5. Factory reset if flashing from a different ROM.
XDA:DevDB Information
Unofficial LineageOS, ROM for the Sprint HTC EVO 4G LTE
Contributors
Source Code: https://github.com/LineageOS
ROM OS Version: 7.x Nougat
ROM Kernel: Linux 3.4.x
ROM Firmware Required: HBOOT 2.10.0000 or 2.10.5555
Version Information
Status: Testing
Current Beta Version: lineage-14.1-20170302
Beta Release Date: 2017-03-02
Created 2017-01-22
Last Updated 2017-03-02
I'm going find this phone in one of the shoe box and install this thank you kind sir
Wow Los has finally arrived for the Jewel but my Jewel is no longer with me
I can't seems to use external sdcard as internal there's simply no option to do it while formatting. Other then this it's pretty snappy thanks again.
mecha2012 said:
I can't seems to use external sdcard as internal there's simply no option to do it while formatting. Other then this it's pretty snappy thanks again.
Click to expand...
Click to collapse
Thanks for testing! Try the new Nougat build—I wasn't able to move apps onto the SD card (that is a LineageOS bug), but I was able to format it as internal storage.
I couldn't install the latest build 14.1 well just keeps bootlooping at the HTC screen.
Wipe
Install latest build
Install Gapps 7.1 (tried without installing this also) still no go ?
mecha2012 said:
I couldn't install the latest build 14.1 well just keeps bootlooping at the HTC screen.
Wipe
Install latest build
Install Gapps 7.1 (tried without installing this also) still no go
Click to expand...
Click to collapse
There appears to be an error in the build. I will upload a new build within a day.
Edit: New build has been uploaded! Please report if it works.
Never thought my Jewel would ever see Nougat (let alone Lollipop or Marshmallow). Just flashed and all is working well so far. Awesome work!
God tier work here, I'm blown away. I misplaced my Moto G 3rd gen somewhere in my apartment, so I've given up and dusted off my Evo. I was set to just use the Viper 4.1.1 that was on there, but some apps weren't installing so I came on ol' XDA. This is much more than I expected, thank you.
With that said, any tips on getting this to activate on Sprint / Ting? It was working fine on the old rom, but not kicking in here.
I know this isn't totally related to this ROM, but maybe it can be. I'm having issue with this (and most other ROMs I try) where the per button works physically, but only the buttons light up. I have to press the power button several times to get the screen to wake. This isn't consistent though. Seems worse if the screen has been off for a while. Does anyone know of a fix, and if so, can it be incorporated into this ROM? I know there have other threads about this but it seems like they have been dropped.
idumych said:
God tier work here, I'm blown away. I misplaced my Moto G 3rd gen somewhere in my apartment, so I've given up and dusted off my Evo. I was set to just use the Viper 4.1.1 that was on there, but some apps weren't installing so I came on ol' XDA. This is much more than I expected, thank you.
With that said, any tips on getting this to activate on Sprint / Ting? It was working fine on the old rom, but not kicking in here.
Click to expand...
Click to collapse
I believe that the service must be activated on a stock ROM before flashing a custom ROM. Then, the correct APN has to be set according to the carrier under Settings > More > Cellular networks > Access Point Names.
Schiben said:
I know this isn't totally related to this ROM, but maybe it can be. I'm having issue with this (and most other ROMs I try) where the per button works physically, but only the buttons light up. I have to press the power button several times to get the screen to wake. This isn't consistent though. Seems worse if the screen has been off for a while. Does anyone know of a fix, and if so, can it be incorporated into this ROM? I know there have other threads about this but it seems like they have been dropped.
Click to expand...
Click to collapse
I am not sure of a fix, and I have not encountered this issue, but have you tried enabling Wake device using the Camera button under Settings > Buttons?
VitaTaf said:
I am not sure of a fix, and I have not encountered this issue, but have you tried enabling Wake device using the Camera button under Settings > Buttons?
Click to expand...
Click to collapse
I've tried that in the past. Forgot about it this time around. Tried it again and it seems to be about the same as the actual power button for getting the screen to come on correctly.
Good ol' Jewel. Is this rom working ok?
My wife is temporarily using my old Jewel because she dropped & broke her crappy samsung phone. can someone please tell me how this rom is working?
I appreciate your time!
King of the Couch said:
My wife is temporarily using my old Jewel because she dropped & broke her crappy samsung phone. can someone please tell me how this rom is working?
I appreciate your time!
Click to expand...
Click to collapse
The ROM is working fine for the most part. The battery is not great, but that may be due to the battery's age. Additionally, there is a bug with BoringSSL that sometimes prevents the Play Store or Gmail from working temporarily.
sounds good. yeah, I'm sure it's age. thanks man. take care-
Trouble with WiFi
Did a Full factory reset, installed rom, gapps, and supersu from TWRP, factory wipe again from TWRP; now the OS is installed and running but after connecting to my home network, says no internet access although the netork is up and running normally, all other devices connected. Any thoughts or suggestions. I have a backup of my previous state, so I can revert, but would like to keep this on 7.1 for consistency between this and my primary device. The primary use for this device is media streaming.
keysneptune said:
Did a Full factory reset, installed rom, gapps, and supersu from TWRP, factory wipe again from TWRP; now the OS is installed and running but after connecting to my home network, says no internet access although the netork is up and running normally, all other devices connected. Any thoughts or suggestions. I have a backup of my previous state, so I can revert, but would like to keep this on 7.1 for consistency between this and my primary device. The primary use for this device is media streaming.
Click to expand...
Click to collapse
I believe that the WiFi issue have been fixed in the latest build (20170522).
Thank you for this rom!
I had been using cyanogenmod 5.0 and dirtyunicorns 5.1 both were solid roms. Unfortunately the latest apps seem to run a bit slow on them. I thought it was the device but after installing this rom everything is snappy! It manages 1gig of ram better than any other rom and that 1.5ghz dualcore still runs strong. Snapchat is way more responsive on this rom, instagram and fb run without problems. GPS, 4g, sms, wifi, camera, sd storage, everything works! I've only noticed a few bugs. The wifi activity arrows don't show when something is downloading/uploading but wifi itself does work. Also, even tho I have working active cell service, it tries to activate itself again everytime I reboot and fails but calls-sms-data continue to work lol. The biggest bug is that auto-rotation stops working after 30-60 minutes and it stays stuck on portrait mode. Nothing but a full reboot will get it working again, a quick softboot won't fix it. I've tried changing the rotation settings and also added some lines to the build.prop but no solution thus far. I love this rom so much, if it's not fixed I might try some auto rotation apps. One last thing, it would be cool if the # in the status bar would go away after I close whatever app has root. The previous rom I had did that. Thank you so much to all the developers for bringing life to this phone!
familyjewels said:
I had been using cyanogenmod 5.0 and dirtyunicorns 5.1 both were solid roms. Unfortunately the latest apps seem to run a bit slow on them. I thought it was the device but after installing this rom everything is snappy! It manages 1gig of ram better than any other rom and that 1.5ghz dualcore still runs strong. Snapchat is way more responsive on this rom, instagram and fb run without problems. GPS, 4g, sms, wifi, camera, sd storage, everything works! I've only noticed a few bugs. The wifi activity arrows don't show when something is downloading/uploading but wifi itself does work. Also, even tho I have working active cell service, it tries to activate itself again everytime I reboot and fails but calls-sms-data continue to work lol. The biggest bug is that auto-rotation stops working after 30-60 minutes and it stays stuck on portrait mode. Nothing but a full reboot will get it working again, a quick softboot won't fix it. I've tried changing the rotation settings and also added some lines to the build.prop but no solution thus far. I love this rom so much, if it's not fixed I might try some auto rotation apps. One last thing, it would be cool if the # in the status bar would go away after I close whatever app has root. The previous rom I had did that. Thank you so much to all the developers for bringing life to this phone!
Click to expand...
Click to collapse
Thanks for trying out the ROM! The WiFi activity arrows are intentionally disable on LineageOS. I do not currently have an active cell service on this device, so I am unable to fix the activation bug for now. Could you flash the patch below in recovery and test if autorotation is working properly? It should also enable the option to hide the Superuser icon under "Status bar" > "System icons".

[SM-T550][LineageOS][Unofficial][Android Pie] Galaxy Tab A 9.7

Lineage OS 16.0 for the SM-T550 is here!
This is an early stage alpha build; not all features are working well at the moment.
Code:
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* We are 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 us for messing up your device, we will laugh at you. Hard & a lot.
*
*/
In the beginning I would like to thank:
Lineage OS team,
Contributors:
deadman96385
MSM8916 team
elginsk8r
Instructions
It is STRONGLY recommended to fully wipe your device before flashing and please avoid restoring system apps and system data with Titanium Backup as this can cause stability issues that are very hard to debug.
If you believe you know what you're doing - then fine, go ahead, but please don't complain if you experience any strange behavior.
How to flash:
(Again: Don't do it if you don't know it!)
1. Download the ROM and GApps and transfer them to your device.
2. Boot to recovery (TWRP recommended).
3. Wipe the System, Cache, Data and ART/Dalvik cache.
4. Flash the ROM Zipfile.
5. Flash the GApps (optional, needed for e.g. Google Playstore to work).
6. Flash the root solution of your choice (optional).
7. Reboot your device.
Reporting bugs:
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /sys/fs/pstore/console-ramoops and /sys/fs/pstore/dmesg-ramoops-0. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
Issues
- SELinux permissive
- encryption
- audio through speakers is broken, headsets and bluetooth audio works
Download link: https://www.androidfilehost.com/?w=files&flid=284367
XDA:DevDB Information
Lineage OS for the SM-T550, ROM for the Samsung Galaxy Tab A series
Contributors
virsys, @deadman96385, @Galaxy-MSM8916 team, @elginsk8r worked on the device trees
Source Code: https://github.com/Galaxy-MSM8916
ROM OS Version: 9.x Pie
ROM Kernel: Linux 4.x
Based On: LineageOS
Version Information
Status: Beta
Created 2018-11-06
Last Updated 2018-11-16
First....
I will have to give this a try
Thank you for your contribution good sir
My model: SM-T550
Thank you for downloading! I am going to test about LineageOS 16, if I have problem? I will talk with you. ?
Well, I like new ROM Pie.
---------- Post added at 02:01 AM ---------- Previous post was at 01:27 AM ----------
I have one problem. Please read here:
I did make to flash ROM and GApps, but... Error
Checking for MD5 file...
Skipping MD5 check: no MD5 file found
Warming: No file_contexts
E3004: This package is for device: gt510wifi,gt510wifixx,SM-T550; this device is.
E: unknow command [log]
E: Error executing updater binary in zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Error flashing zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Updating partition details....
.... Done
How do I do? I'm waiting your answer! Thanks for test!
Kawakigachi said:
Thank you for downloading! I am going to test about LineageOS 16, if I have problem? I will talk with you.
Well, I like new ROM Pie.
---------- Post added at 02:01 AM ---------- Previous post was at 01:27 AM ----------
I have one problem. Please read here:
I did make to flash ROM and GApps, but... Error
Checking for MD5 file...
Skipping MD5 check: no MD5 file found
Warming: No file_contexts
E3004: This package is for device: gt510wifi,gt510wifixx,SM-T550; this device is.
E: unknow command [log]
E: Error executing updater binary in zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Error flashing zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Updating partition details....
.... Done
How do I do? I'm waiting your answer! Thanks for test!
Click to expand...
Click to collapse
I can say it possibly a bad download or something on your end I flashed this last night with very few issues I have not used LOS in a long time but I was impressed
For some odd reason it's not working for me. At first it gave me Error 7 code telling me that my device isn't a T550. Then I manually removed the "assert" check lines from the ZIP file to force the install without a device check. It installed. But I can't boot into the OS. It just kicks me back to TWRP every time.
Never mind, after trying once more, it finally worked.
DJCodeBlue said:
For some odd reason it's not working for me. At first it gave me Error 7 code telling me that my device isn't a T550. Then I manually removed the "assert" check lines from the ZIP file to force the install without a device check. It installed. But I can't boot into the OS. It just kicks me back to TWRP every time.
Never mind, after trying once more, it finally worked.
Click to expand...
Click to collapse
Hey does this lag like crazy for you
even setup took me forever to get passed I normally let a new flash sit around for about a hour to the the system calm down still real laggish
HoosierDaddy said:
Hey does this lag like crazy for you
even setup took me forever to get passed I normally let a new flash sit around for about a hour to the the system calm down still real laggish
Click to expand...
Click to collapse
It wasn't that bad actually, it seemed to settle in for me. But I switched back to an Oreo rom for the time being for the bugs to get ironed out. Now I'm dealing with a super sluggish ROM lol. Do you have any recommendations for a good Oreo debloated ROM that performs great on the T550?
DJCodeBlue said:
It wasn't that bad actually, it seemed to settle in for me. But I switched back to an Oreo rom for the time being for the bugs to get ironed out. Now I'm dealing with a super sluggish ROM lol. Do you have any recommendations for a good Oreo debloated ROM that performs great on the T550?
Click to expand...
Click to collapse
Not oreo im trying to find anything that dont lag now
I ended flashing stock nougat and rooting it...
Been working on that....
I got so used to my s8 This tablet seems kinda slow lol I tried another rom I think that jazz rom but about the same lag and I couldnt remove home screen icons without uninstalling them the little popup menu wouldnt work
---------- Post added at 07:14 AM ---------- Previous post was at 07:13 AM ----------
I still have expectations for this old tablet without any doubts there are a few of us out here with the 550 so we can band together and get something going I just got mine so Im stuck with the device for a while
Switched from a S8 to this tablet, that's real fortitude .. May I ask why you did this? The tablet is already antique. This is called a feature for slowing movement. Audio is working now, I will upload a new build tomorrow. I was able to install gapps without any problem and I don't feel like the device is "laggy as hell". Make sure to select Android 9 and ARM at opengapps.org, I choose always pico there and have no issues.
virsys said:
Switched from a S8 to this tablet, that's real fortitude .. May I ask why you did this? The tablet is already antique. This is called a feature for slowing movement. Audio is working now, I will upload a new build tomorrow. I was able to install gapps without any problem and I don't feel like the device is "laggy as hell". Make sure to select Android 9 and ARM at opengapps.org, I choose always pico there and have no issues.
Click to expand...
Click to collapse
I have one problem. Please read here:
I did make to flash ROM and GApps, but... Error
Checking for MD5 file...
Skipping MD5 check: no MD5 file found
Warming: No file_contexts
E3004: This package is for device: gt510wifi,gt510wifixx,SM-T550; this device is.
E: unknow command [log]
E: Error executing updater binary in zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Error flashing zip '/external_sd/SM-T550/lineage-16.0-20181106-UNOFFICIAL-gt510wifi.zip'
Updating partition details....
.... Done
How do I do? I'm waiting your answer! Thanks for test!
Kawakigachi said:
E3004: This package is for device: gt510wifi,gt510wifixx,SM-T550; this device is.
Click to expand...
Click to collapse
Sometimes that issue is caused by TWRP. It means that TWRP fails to get the device model, which is required for new install scripts. Consider updating TWRP.
Nice! Good News! LineageOS 16
virsys said:
Sometimes that issue is caused by TWRP. It means that TWRP fails to get the device model, which is required for new install scripts. Consider updating TWRP.
Click to expand...
Click to collapse
Thanks for help us! Now, my tablet works. Ready, I test all in my tablet. Wow! It's very great apps or boot, all.... I really love in your new ROM LineageOS 16. If you tell me about the Audio doesn't working"? No problem.... I am using "headsets and bluetooth audio works", its better . ????
Thank you for great ROM LineageOS 16. I give you "Rating: 100% or 5 Star" I'm waiting in your answer!
Sm-T555 please
virsys said:
Switched from a S8 to this tablet, that's real fortitude .. May I ask why you did this? The tablet is already antique. This is called a feature for slowing movement. Audio is working now, I will upload a new build tomorrow. I was able to install gapps without any problem and I don't feel like the device is "laggy as hell". Make sure to select Android 9 and ARM at opengapps.org, I choose always pico there and have no issues.
Click to expand...
Click to collapse
Please make build for T555 (I tried to edit it, but then the animation doesn’t start up )
Put your aicp 13.1, which you did not even publish here, but there are two errors: the camera does not work, and there is no sound except vibro
dfg30988 said:
Please make build for T555 (I tried to edit it, but then the animation doesn’t start up )
Put your aicp 13.1, which you did not even publish here, but there are two errors: the camera does not work, and there is no sound except vibro
Click to expand...
Click to collapse
I don't even get why you are trying to point the finger at me because of this. Trying to edit compiled builds is very dumb. Go ahead and compile it from scratch. I don't own a SM-T555 -> I can't test my builds properly. The result is a half-broken always-alpha build like the one on my afh account. That's the reason why there is no thread. Feel free to donate me that tablet, maybe I find some time to build it then for you.
I've updated the SM-T550 build now btw, audio is working now. I've tested the gapps-setup, too. It took me 30 seconds to get through. The device was fully wiped, maybe that's the reason for the speed..
Everything I need works fine
I just started thinking about using my old Samsung Tablet again as a remote.
When I saw that there is a LineageOS build available I just installed it.
Everything I need to use my tablet as a remote works perfectly fine and way better and faster than with the crappy touchwiz on our device.
Installation was done in 15 minutes or even less.
Thank you very much for your efforts!
Waiting for the stable version for this...
Thanks Virsys to keep alive this fossile
layman22 said:
Waiting for the stable version for this...
Thanks Virsys to keep alive this fossile
Click to expand...
Click to collapse
Good morning layman,
the version is quite stable actually. The only things missing are SELinux and the encryption/decryption of the internal storage does not work. May I ask you for the build number of the original operating system made by Samsung? These builds are for the SM-T550/gt510wifi/Samsung Galaxy Tab A 9.7 WiFi only. Have you enabled OEM unlocking in the developer options if there is this option?
virsys said:
Good morning layman,
the version is quite stable actually. The only things missing are SELinux and the encryption/decryption of the internal storage does not work. May I ask you for the build number of the original operating system made by Samsung? These builds are for the SM-T550/gt510wifi/Samsung Galaxy Tab A 9.7 WiFi only. Have you enabled OEM unlocking in the developer options if there is this option?
Click to expand...
Click to collapse
Dear Virsys, now I'm using your Oreo AICP build, so I can't tell you the original Samsung os's build number unfortunately...
But it was crap with full of needless ****s :laugh:
Than now I'll test this Pie build soon!
Thanks for your reply and have a nice day!
My model: SM-T550
Just tried to flash and when it starts i get
Android System
There,s an internal problem with your device . Contact your manufacture for details.
When i start to setup if i skip wifi setup all goes fine but if i sign into wifi i get setup has stopped , other than that all else works great.
It's still an alpha version and it will stay alpha until LineageOS 16.0 is officially released. To minimize the bugs avoid dirty flashing and restoring apps with titanium backup. Use ARM Pie gapps from opengapps.org, I recommend using nano or pico.

Categories

Resources