Link? Please.This ROM has been tested and works with
[UNOFFICIAL] Xposed for Samsung Lollipop by arter97
use version 3 for i9505 and be sure to follow the instructions in that posting.
Link? Please.This ROM has been tested and works with
[UNOFFICIAL] Xposed for Samsung Lollipop by arter97
use version 3 for i9505 and be sure to follow the instructions in that posting.
For anyone having problems when installing this ROM and root not working, flashing the beta version of SuperSU worked like a charm.I installed this tonight and also had the issue with root not working. Resolved the issue by installing BETA SuperSU 2.49 in TWRP.
Ditto with the Netflix not working on mine, using the deodexed de-bloated color modded v3 (but download says v2). Amazon Prime video works. Netflix works on my stock rooted OD2 720T.There's a problem with Netflix - can't watch videos on-screen (others say they can cast just fine, but no on-screen). Folks over in the Wicked 10 thread say it's also bugged on stock OD2, but works on the 720T - they think it's a kernel issue.
Any confirmation of Netflix status here?
I am seeing this same issue, I had peviously flashed the full OD2 OTA, and then installed this one as instructed.So, I have the SPH-L720_OD2_Deodexed.zip flashed (flashed modem & pulled battery prior).
Incoming calls do not show up, you can only hear rings (but on vibrate no vibration or indication other than missed call after).
If you place a call, the dialer disappears and you can't return to phone status or end call (have to restart).
I'm looking into it.So, I have the SPH-L720_OD2_Deodexed.zip flashed (flashed modem & pulled battery prior).
Incoming calls do not show up, you can only hear rings (but on vibrate no vibration or indication other than missed call after).
If you place a call, the dialer disappears and you can't return to phone status or end call (have to restart).
2 items listed as "Phone":
com.android.phone 1.0.0 (1)
/system/priv-app/TeleService/TeleService.apk (2.77MB)
com.android.server.telecom 1.0.0 (1)
/system/priv-app/Telecom/Telecom.apk (458.45KB)
The folders are rwx r-x r-x and the apks are rw- r-- r-- , as they should be.
Previous NG2 version used to be:
com.android.phone 4.4.2-L720VPUFNG2 (19)
/system/priv-app/SecPhone.apk (19.71MB)
No com.android.server.telecom package on NG2.
Help?
Both Telecom and Teleservice are correctly present in the original OTA update.zip from Sprint for the SPH-L720. SecPhone is deprecated in Lollipop.I'm looking into it.
Did you restore any system apps?I am seeing this same issue, I had peviously flashed the full OD2 OTA, and then installed this one as instructed.
cp -p -r [SOURCE] [DESTINATION]
delete_recursive("/system/app/LegacyInCallUI");
show_progress(1.34, 30); ui_print(" "); ui_print("#########################"); ui_print("# Lollipop-OD2 #"); ui_print("# Hotspot Mod #"); ui_print("# by bilgerryan #"); ui_print("#########################"); ui_print(" "); ui_print(" Mounting Filesystems... "); run_program("/sbin/busybox", "mount", "/system"); run_program("/sbin/busybox", "mount", "/preload"); run_program("/sbin/busybox", "mount", "/data"); run_program("/sbin/busybox", "mount", "/cache"); run_program("/sbin/busybox", "mount", "/sdcard"); ui_print(" "); ui_print(" Flashing files... "); delete_recursive("/system/app/LegacyInCallUI"); package_extract_dir("system", "/system"); package_extract_dir("preload", "/preload"); package_extract_dir("data", "/data"); set_perm_recursive(0, 0, 0755, 0644, "/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/priv-app"); set_perm_recursive(0, 0, 0755, 0644, "/preload/symlink/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/framework"); ui_print(" "); ui_print(" "); delete_recursive("/data/tmp"); package_extract_dir("vrtheme", "/data/tmp/vrtheme"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/installtheme.sh"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zip"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zipalign"); run_program("/data/tmp/vrtheme/installtheme.sh"); run_program("/sbin/busybox", "umount", "/system"); run_program("/sbin/busybox", "umount", "/preload"); run_program("/sbin/busybox", "umount", "/data"); run_program("/sbin/busybox", "umount", "/cache"); run_program("/sbin/busybox", "umount", "/sdcard"); ui_print(" "); ui_print(" Installation complete "); ui_print(" ");
I see thatOk, after further research, it appears the OD2 Hotspot mod is causing this.
FTR, while I was tinkering, I found that deleting an app's /data/data/{appname} directory for the most part causes Android to rebuild that directory with the app's default configuration files.
There appears to be some exceptions, or maybe errors in the default recovery process, as
/data/data/com.android.providers.telephony/databases/nwk_info.db
and
/data/data/com.android.providers.telephony/databases/nwk_info.db-journal
were not rebuilt, and I had no data until I restored that. BE SURE TO BACK UP THE DIRECTORY BEFORE DELETING, AND NOTE THE PERMISSIONS AS WELL AS THE OWNER AND GROUP.
You can use (after putting in su and enter to switch to root)in Terminal Emulator for that - the -p switch copies permissions, the -r switch copies recursively aka subdirectories BUT! Please note that anything using an MS filesystem (exFAT, FAT32, NTFS) won't copy the permissions / owner / group.Code:cp -p -r [SOURCE] [DESTINATION]
What got me pointed towards trying the above was this thread (for KK 4.4.2 on a S G S2 I believe so some things need to be changed obviously) here: http://forum.xda-developers.com/galaxy-s2/general/howto-eradicate-unfortunately-process-t2424803
Also, found some interesting stuff in this thread that maybe I'll mess with later:
http://forum.xda-developers.com/showthread.php?t=2137826
http://forum.xda-developers.com/showthread.php?t=2260142
Anyways, back on topic & TL;DR =
It looks to be the OD2 Hotspot is causing the phone problem, so I will research and post back what I find.
EDIT: oh, and your MMS & SMS text messages are in the /data/data/com.android.providers.telephony/databases/mmssms.db* files
---------- Post added at 08:19 AM ---------- Previous post was at 07:59 AM ----------
K, I think I found the problem:
Oopsie, I don't think that is a good idea. ..Code:delete_recursive("/system/app/LegacyInCallUI");
Here's the full text of the Hotspot mod updater script (META-INF/com/google/android/updater-script)
So I'm restoring LegacyInCallUI from the ROM .zip now.Code:show_progress(1.34, 30); ui_print(" "); ui_print("#########################"); ui_print("# Lollipop-OD2 #"); ui_print("# Hotspot Mod #"); ui_print("# by bilgerryan #"); ui_print("#########################"); ui_print(" "); ui_print(" Mounting Filesystems... "); run_program("/sbin/busybox", "mount", "/system"); run_program("/sbin/busybox", "mount", "/preload"); run_program("/sbin/busybox", "mount", "/data"); run_program("/sbin/busybox", "mount", "/cache"); run_program("/sbin/busybox", "mount", "/sdcard"); ui_print(" "); ui_print(" Flashing files... "); delete_recursive("/system/app/LegacyInCallUI"); package_extract_dir("system", "/system"); package_extract_dir("preload", "/preload"); package_extract_dir("data", "/data"); set_perm_recursive(0, 0, 0755, 0644, "/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/priv-app"); set_perm_recursive(0, 0, 0755, 0644, "/preload/symlink/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/framework"); ui_print(" "); ui_print(" "); delete_recursive("/data/tmp"); package_extract_dir("vrtheme", "/data/tmp/vrtheme"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/installtheme.sh"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zip"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zipalign"); run_program("/data/tmp/vrtheme/installtheme.sh"); run_program("/sbin/busybox", "umount", "/system"); run_program("/sbin/busybox", "umount", "/preload"); run_program("/sbin/busybox", "umount", "/data"); run_program("/sbin/busybox", "umount", "/cache"); run_program("/sbin/busybox", "umount", "/sdcard"); ui_print(" "); ui_print(" Installation complete "); ui_print(" ");
---------- Post added at 08:33 AM ---------- Previous post was at 08:19 AM ----------
Restored LegacyInCallUI, set permissions, rebooted, phone works great now.
So we should just remove that offending line from updater-script, re-zip, and the Hotspot mod should be good to use as far as I know.
Perhaps someone should take a look at the whole thing, just in case, though?
---------- Post added at 08:46 AM ---------- Previous post was at 08:33 AM ----------
Alright, apparently the author is aware and has fixed, see his response in the release thread:
http://forum.xda-developers.com/showpost.php?p=61014133&postcount=7
So be sure to get v 1.1 I guess. XD
This has been a fun adventure and a half! .![]()
delete_recursive("/system/app/LegacyInCallUI");
Both have been updated to v1.1 and fixed, the flashable to get your InCallUi back is also in both threads. All problems solved. [emoji106]I see that
is in Native-5-Way-Reboot.zip updater script also. Does this mean that the 5-way-reboot is also going to cause a problem?Code:delete_recursive("/system/app/LegacyInCallUI");
OP note: The native hotspot function of this ROM works, if your SIM is unlocked by the service provider. Any problems with MODS to bypass this restriction are a separate issue, and should be discussed in the threads elsewhere dedicated to those mods.Ok, after further research, it appears the OD2 Hotspot mod is causing this.
FTR, while I was tinkering, I found that deleting an app's /data/data/{appname} directory for the most part causes Android to rebuild that directory with the app's default configuration files.
There appears to be some exceptions, or maybe errors in the default recovery process, as
/data/data/com.android.providers.telephony/databases/nwk_info.db
and
/data/data/com.android.providers.telephony/databases/nwk_info.db-journal
were not rebuilt, and I had no data until I restored that. BE SURE TO BACK UP THE DIRECTORY BEFORE DELETING, AND NOTE THE PERMISSIONS AS WELL AS THE OWNER AND GROUP.
You can use (after putting in su and enter to switch to root)in Terminal Emulator for that - the -p switch copies permissions, the -r switch copies recursively aka subdirectories BUT! Please note that anything using an MS filesystem (exFAT, FAT32, NTFS) won't copy the permissions / owner / group.Code:cp -p -r [SOURCE] [DESTINATION]
What got me pointed towards trying the above was this thread (for KK 4.4.2 on a S G S2 I believe so some things need to be changed obviously) here: http://forum.xda-developers.com/galaxy-s2/general/howto-eradicate-unfortunately-process-t2424803
Also, found some interesting stuff in this thread that maybe I'll mess with later:
http://forum.xda-developers.com/showthread.php?t=2137826
http://forum.xda-developers.com/showthread.php?t=2260142
Anyways, back on topic & TL;DR =
It looks to be the OD2 Hotspot is causing the phone problem, so I will research and post back what I find.
EDIT: oh, and your MMS & SMS text messages are in the /data/data/com.android.providers.telephony/databases/mmssms.db* files
---------- Post added at 08:19 AM ---------- Previous post was at 07:59 AM ----------
K, I think I found the problem:
Oopsie, I don't think that is a good idea. ..Code:delete_recursive("/system/app/LegacyInCallUI");
Here's the full text of the Hotspot mod updater script (META-INF/com/google/android/updater-script)
So I'm restoring LegacyInCallUI from the ROM .zip now.Code:show_progress(1.34, 30); ui_print(" "); ui_print("#########################"); ui_print("# Lollipop-OD2 #"); ui_print("# Hotspot Mod #"); ui_print("# by bilgerryan #"); ui_print("#########################"); ui_print(" "); ui_print(" Mounting Filesystems... "); run_program("/sbin/busybox", "mount", "/system"); run_program("/sbin/busybox", "mount", "/preload"); run_program("/sbin/busybox", "mount", "/data"); run_program("/sbin/busybox", "mount", "/cache"); run_program("/sbin/busybox", "mount", "/sdcard"); ui_print(" "); ui_print(" Flashing files... "); delete_recursive("/system/app/LegacyInCallUI"); package_extract_dir("system", "/system"); package_extract_dir("preload", "/preload"); package_extract_dir("data", "/data"); set_perm_recursive(0, 0, 0755, 0644, "/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/priv-app"); set_perm_recursive(0, 0, 0755, 0644, "/preload/symlink/system/app"); set_perm_recursive(0, 0, 0755, 0644, "/system/framework"); ui_print(" "); ui_print(" "); delete_recursive("/data/tmp"); package_extract_dir("vrtheme", "/data/tmp/vrtheme"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/installtheme.sh"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zip"); set_perm(0, 0, 0755, "/data/tmp/vrtheme/zipalign"); run_program("/data/tmp/vrtheme/installtheme.sh"); run_program("/sbin/busybox", "umount", "/system"); run_program("/sbin/busybox", "umount", "/preload"); run_program("/sbin/busybox", "umount", "/data"); run_program("/sbin/busybox", "umount", "/cache"); run_program("/sbin/busybox", "umount", "/sdcard"); ui_print(" "); ui_print(" Installation complete "); ui_print(" ");
---------- Post added at 08:33 AM ---------- Previous post was at 08:19 AM ----------
Restored LegacyInCallUI, set permissions, rebooted, phone works great now.
So we should just remove that offending line from updater-script, re-zip, and the Hotspot mod should be good to use as far as I know.
Perhaps someone should take a look at the whole thing, just in case, though?
---------- Post added at 08:46 AM ---------- Previous post was at 08:33 AM ----------
Alright, apparently the author is aware and has fixed, see his response in the release thread:
http://forum.xda-developers.com/showpost.php?p=61014133&postcount=7
So be sure to get v 1.1 I guess. XD
This has been a fun adventure and a half! .![]()
Understood, I didn't realize this wasn't a problem with the ROM until right before I found it. What you were seeing was basically my findings as I tracked down the cause.OP note: The native hotspot function of this ROM works, if your SIM is unlocked by the service provider. Any problems with MODS to bypass this restriction are a separate issue, and should be discussed in the threads elsewhere dedicated to those mods.