[ROM] Google Pixel Experience for J320A/J320AZ/J320AG - Samsung Galaxy J3 (2016) ROMs, Kernels, Recoveries

Today we have the first custom rom for our device... Google Pixel Experience.
Features:
WiFi fix
Flashlight fix
Hotspot fix
Busybox
Init.d
Xposed
Android O fonts and emojis
Pixel boot logo and animation
Pixel launcher
Pixel sounds
Goodlock
Google Assistant
Google dialer
Google contacts
Google messages
Install from unknown sources by default
Various build prop, init.d and csc tweaks
An ugly method used apply a color scheme and preferred status bar layout
Bugs:
Shouldn't be any bugs left
Notes:
Once your up and running swipe right and setup your Google app. And make sure you have a weather card setup so your weather widget works.
This is a little more battery unfriendly than stock, but this phone is so good it's still not bad.
Credits:
@linuxct - Pixel Launcher port
@Pranav Pandey - Pixel Live Wallpaper port
@Setialpha - GoodLock smali edits
@tdunham - TouchWiz mods index (and all devs that contributed)
More to come
To do:
Theme settings menu similar to Pixel
Proper icon overlays
(Might take a while for these)
Install:
Flash with FlashFire, and do complete wipe.
Installer will reboot a few times while it sets everything up, please don't touch the screen until it's fully booted.
Link:
Download
Change log:
8/27 - Changed Pixel launcher to @amirz's launcher
Added auto csc installer
Added proper list view settings
Updated base files to AQG1 (July/2017)
Updated Google apps
7/27 - Updated Pixel launcher to DP4
Updated apps
Fixed Google app detach script (no longer auto updates)
Changed settings back to original category view (temporary till I figure out errors with the list view)
7/16 - Themed remanning apps with round icons
Fixed Xposed permissions (you can install new modules again)
Changed power menu to "americano" style (need to change font color)
7/13 - Downgraded Google app (to enable Assistant)
Added Assistant enabler (Xposed module)
Added my personal wifi to auto connect (enjoy if you're in the neighborhood)
Added ability for a "runonce" script in system root (executes before init.d and automatically deletes itself)
Changed settings to list view (more pixel-like)
Updated apps
Moved dialer fix to init.d (safe to wipe now)
Switched to square notifications (more pixel-like)
6/11 - Fixed Google Camera
Fixed Google Dialer
Activated Google InCallUI
Updated Pixel Launcher
Added Google Contacts
6/4 - Added frp disabler
Added statusbar and recent apps mods
Added round icons
Added live wallpapers
Added Google clock
Updated a few Google Play apps
Updated camera app (still fc)
Removed one bad init.d script
Updated SU binaries
6/2 - Initial release

Can it run on SM-J320FN? If not could you make one for this device please.

Dows this rom works on j320f ??by any chance ..is there is any custom rom available for j320f ... (excluding j3time rom on xda )

Diamond26 said:
Can it run on SM-J320FN? If not could you make one for this device please.
Click to expand...
Click to collapse
mandy111 said:
Dows this rom works on j320f ??by any chance ..is there is any custom rom available for j320f ... (excluding j3time rom on xda )
Click to expand...
Click to collapse
Sorry guys different chipset... If someone wanted to donate me a device tho

Its ok! Thanks anyway

Op updated
[Edit]
Crap somehow I forgot contacts
You can install the one from here
[/Edit]

Hey @DamienMc, I've updated my Pixel Launcher to the latest version from Android 8.0 DP3 (ODR-4023749), feel free to update it in your rom

Thanks for your continued efforts bud.
OP updated
And all bugs should be worked out, if you run into any lmk.

Hello, congratulations on the beautiful work. Could you tell us how you modified the action panel/Quick Settings?

denisf1981 said:
Hello, congratulations on the beautiful work. Could you tell us how you modified the action panel/Quick Settings?
Click to expand...
Click to collapse
Samsung's replacement systemui, goodlock.
And I borrowed some features from this mod

DamienMc said:
Samsung's replacement systemui, goodlock.
And I borrowed some features from this mod
Click to expand...
Click to collapse
I replaced the SystemUI.apk and 644 from the request did not work on the J320M

Could you port this ROM to the J320M? If the answer is yes I can use my device for testing.

Or ALL mods package??

I was planning on replying by pm so we could keep the thread on topic, kinda hard after three posts.
All the mods you'd care about are in the systemui.
I'd first try with a stock goodlock, and wipe...it's not compatible with all devices.

How did you fix Activated Google InCallUI?

denisf1981 said:
How did you fix Activated Google InCallUI?
Click to expand...
Click to collapse
Sorry for being rude last time, I'm always glad to help.
I added it directly to settings_secure.xml. everyone says it's not a good idea to manually edit it, but I found a nice script inside of gapps so figured what the hell
Code:
#!/system/bin/sh
# set Google Dialer as default; based on the work of osm0sis @ xda-developers
setver="122" # lowest version in MM, tagged at 6.0.0
setsec="/data/system/users/0/settings_secure.xml"
if [ -f "$setsec" ]; then
if grep -q 'dialer_default_application' "$setsec"; then
if ! grep -q 'dialer_default_application" value="com.google.android.dialer' "$setsec"; then
curentry="$(grep -o 'dialer_default_application" value=.*$' "$setsec")"
newentry='dialer_default_application" value="com.google.android.dialer" package="android" />\r'
sed -i "s;${curentry};${newentry};" "$setsec"
fi
else
max="0"
for i in $(grep -o 'id=.*$' "$setsec" | cut -d '"' -f 2); do
test "$i" -gt "$max" && max="$i"
done
entry='<setting id="'"$((max + 1))"'" name="dialer_default_application" value="com.google.android.dialer" package="android" />\r'
sed -i "/<settings version=\"/a\ \ ${entry}" "$setsec"
fi
else
if [ ! -d "/data/system/users/0" ]; then
install -d "/data/system/users/0"
chown -R 1000:1000 "/data/system"
chmod -R 775 "/data/system"
chmod 700 "/data/system/users/0"
fi
{ echo -e "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>\r";
echo -e '<settings version="'$setver'">\r';
echo -e ' <setting id="1" name="dialer_default_application" value="com.google.android.dialer" package="android" />\r';
echo -e '</settings>'; } > "$setsec"
fi
chown 1000:1000 "$setsec"
chmod 600 "$setsec"
exit

Strange
Hello Damien and thank you. I have successfully run the pixel experience on two at&t 320a and one cricket 320az. I have two cricket models I've just flashed stuck on google logo. Ideas?

[email protected] said:
Hello Damien and thank you. I have successfully run the pixel experience on two at&t 320a and one cricket 320az. I have two cricket models I've just flashed stuck on google logo. Ideas?
Click to expand...
Click to collapse
Wait, it worked on one az but failed on two other az?

DamienMc said:
Wait, it worked on one az but failed on two other az?
Click to expand...
Click to collapse
It is pretty wild. I have two at&t phones that took and the cricket, worked great. Is there anyway that I could flash the pixel experience with ODIN? Stuck on Google logo, not even getting to the boot animation. Smart wise wont recognize them and I have no way to start some form of recovery process. Have them sitting here in front of me now. They will go to Stock recovery and they will into Odin mode.
I am very familiar with the installation procedures you use.
Phone A- J320eng flashed to AP
kingroot followed by the amazing SuperSu Me Pro
knox disabled, kingroot removed.
Reboot, root verified.
Booted up flashfire by ChainFire(<- the MAN)
Wiped dalvik + the usual. cache part,user data, etc. NOT A DUMMY (this time) didn't re-partition or do any thing silly.
loaded pixXperience. Wiped before install zip.
adb and flashfire succesfull. reboot.
G logo
Phone B- Used new root method instead to avoid the kingroot thing. followed same pix installation method, HOWEVER never got notification to disable KNOX. . . . . G logo

You know what firmware they were on?
Recovery work? You try to wipe?
Im sure you waited, but it might take 20 minutes to boot.
If i was you Id go back to stock (aqa1) and try again

Related

[Q&A] [ROM][UB][5.1.x][Z] GZR Tesla ROM official builds

Q&A for [ROM][UB][5.1.x][Z] GZR Tesla ROM official builds
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.
Before posting, please use the forum search and read through the discussion thread for [ROM][UB][5.1.x][Z] GZR Tesla ROM official builds. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.
Thanks for understanding and for helping to keep XDA neat and tidy!
this rom include gapps?
---------- Post added at 09:23 AM ---------- Previous post was at 09:12 AM ----------
this rom include gaaps or i'm download in google?
Sangade Pw said:
this rom include gapps?
---------- Post added at 09:23 AM ---------- Previous post was at 09:12 AM ----------
this rom include gaaps or i'm download in google?
Click to expand...
Click to collapse
download of course. I'd recommend you to use these
When i charge my phone on turn of, the screen is turn on just black screen and getting hot, any idea?
Btw nice rom so far, thanks
---------- Post added at 05:52 AM ---------- Previous post was at 05:48 AM ----------
When i charge my phone on turn of, the screen is turn on just black screen and getting hot, any idea?
Btw nice rom so far, thanks
rreikiy said:
When i charge my phone on turn of, the screen is turn on just black screen and getting hot, any idea?
Click to expand...
Click to collapse
Yes, this has been fixed and will be alright in the next released build. By then I suggest not charging the phone while it's off.
is there any call bugs in this rom? had to keep swapping roms because of it
jock1092 said:
is there any call bugs in this rom? had to keep swapping roms because of it
Click to expand...
Click to collapse
No call bugs
Hello everyone! I really liked this rom, but why when i'm install xpoised framework as a result a bootloop. On the other roms on 5.1.1 no such problems.
alex8405 said:
Hello everyone! I really liked this rom, but why when i'm install xpoised framework as a result a bootloop. On the other roms on 5.1.1 no such problems.
Click to expand...
Click to collapse
Official G+ post:
- If you choose to use a custom kernel or Xposed framework, don't report bugs to us. We can only provide support if you're using the stock kernel on a clean flash without Xposed.
Click to expand...
Click to collapse
Tesla is better than Resurrection? I do not know whether to wait for an update Ressurection, or install this ROM?
Hi!
Can I deactivate the "Anti-piracy software"?
kszthly_f said:
Hi!
Can I deactivate the "Anti-piracy software"?
Click to expand...
Click to collapse
Lol, no
plz add google drive link
can u plz add google drive link?
why ? any problem with dl ?
It works with multirom?
Great rom
Just jumped to tesla from existenz lollipop. The speed is incredible, everything works well. There are a few " basic old features" that I would wish for.
1. Double tap to sleep on lockscreen (For checking time and date, its much easier than long press the small lock icon)
2. Ringer toggle
3. The slim launcher ->gesture -> home button "open app drawer" doesn't work well. It seems to get killed alot of the times.
4. I cannot hide the dock divider or indicator on home screen in slim launcher.
5. "Clear all button" in recents does not work when choosing buttom right or left
All of the features above can be added easily with xposed framework, but this rom does not work with xposed at all, and that is why I am here to ask for some "old features" that I used the most.
On top of that, both Lolistat and Battery Home Icon are both amazing too in terms of style, but those I can live without for now.
Having said all that, Tesla is certainly the fastest xperia z rom I have ever used.
kszthly_f said:
Hi!
Can I deactivate the "Anti-piracy software"?
Click to expand...
Click to collapse
I think it's possible:
"Just install "My android tools" from Google play store. And..... This was originally posted by dazw in Oneplus forums:
Go to: Service (Left menubar) --> System --> Settings --> disable "AntiPiracyNotifyService". Broadcast Receiver (Left menubar) --> System --> Settings --> disable "AntiPiracyInstallReceiver"
Just FYI for anybody who wants to use Xposed...
YES it does work, but you need to manually deodex the ROM. Linux required (as far as I know, don't know if other Windows deodex things supports gzipped odex files). Remember not to report bugs if you're running Xposed though, or at least say clearly that you are running Xposed.
You also need working ADB from TWRP (MultiROM TWRP works fine), you can't do this while Android is booted. Obviously you will have to manually mount system in the TWRP "Mount" menu too before starting.
Quick guide follows, if you can't follow this or figure it out then you probably shouldn't be trying this kind of thing.
1. Get the deodex script from this thread
2. With a working Tesla installed and already in TWRP with mounted system partition, adb pull the required folders from system (assuming you are already cd'd to the location of the unpacked deodex script on your host machine):
Code:
mkdir system
cd system
adb pull /system/app app
adb pull /system/framework framework
adb pull /system/priv-app priv-app
3. Go up a directory and run the deodex script... you might need to chmod stuff though (doesnt hurt):
Code:
cd ..
chmod -R 777 .
./deodex_lollipop
4. Will take a few minutes, depending on your PC/VM speed. When done, adb push back the new deodexed system directory:
Code:
adb push system /system
5. Optional but recommended: Delete the stale/stock odex files from system:
Code:
adb shell
cd system
find . -name "*.odex" -type f -print0 | xargs -0 rm -f
find . -name "*.odex.gz" -type f -print0 | xargs -0 rm -f
6. Flash latest Xposed for 5.1 and you're done! You should already know how to do that stuff.
EDIT: I personally don't see the reason why the stock Telsa ROM has compressed odex files, we have a massive 2GB /system partition and there is plenty of space. But meh. Also remember that you will have to repeat these tasks whenever you install a new Tesla ROM.
Can anyone post changelog for Tesla v2.0? Or is there a site where it can be checked?
-CRO-Maher said:
Can anyone post changelog for Tesla v2.0? Or is there a site where it can be checked?
Click to expand...
Click to collapse
There's not much I really understand, no new features or anything just random fixes and improvements. Feels faster but could be placebo.
Sent from my Xperia Z using Tapatalk

[Abandoned project ] [ BetoOS ALE-L21 C432B596 DS ] [Android 6] [EMUI 4.0.3]

-------------------------------------------------------------------------------------------
Hi!
Came here to share my Modified ALE-L21 C432B596 DS ROM with you!
Read note first:
HTML:
# Your warranty will be void.
# Battery must be above 50% before flash it!
# I m not responsible for any bricked devices, dead SD cards or what ever!
# YOU are choosing to make these modifications!
# Before flashing do backup from your personal data!
# Backup BOOT, CUST, RECOVEY and SYSTEM images!!!
# You can restore it if mess up or you don t like it!
Change log:
add all networks switch [NEW]
add VoLTE switch [NEW]
add TWRP3.1.0-2 Alice [NEW]
zram change from 1GB to 1,5GB [NEW]
Swiftkey as main keyboard [NEW]
new bar icons and settings icons (EMUI 5)[NEW]
governor set to performance [NEW]
360º screen rotation
Add multi user option
Custom bootanimation
4.5G ON in MEO-PT, NOS-PT and VODAFONE-PT
Virtual Gyroscope ON
Google apps like books for example deleted
Multi Window
Better performance
Idol Launcher with onetouch stream, custom wallpapers with parallax option
Idol 3 compass
Facebook messenger
Call recorder
Team Viewer
Sony experia wheater widget
AudioFX equalizer
Google calendar
File Manager +
NFC Tools
Microsoft Outlook
Swiftkey Keyboard
Terminal Emulator
To flash it you need to be in Androi 6 already then only use TWRP to flash and done!
Attention: It will do a factory reset!
To root:
Download 1.zip and 2.zip then copy to sd card, boot in to TWRP and install 1.zip then reboot, after finish the boot power off again, boot in TWRP again and install 2.zip and reboot! Done!
1.zip
2.zip
The benchmark score is +/- like in print screen.
>>>>> Any issue tell me!!!! <<<<<
------------------------------------------------------------------------------------------------------------------
ROM:
BetoOS_1.0.1_Mod_B596_P8_Lite_Alice.zip
>>>>> Not available <<<<<
Zip tested, works 100% ! Check this video!!!!
------------------------------------------------------------------------------------------------------------------
If you like it, press thanks !
Enjoy it!
:highfive:
persona78 said:
Hi!
Came here to share my Modified ALE-L21 C432B596 DS ROM with you!
Read note first:
HTML:
# Your warranty will be void.
# Battery must be above 50% before flash it!
# I m not responsible for any bricked devices, dead SD cards or what ever!
# YOU are choosing to make these modifications!
# Before flashing do backup from your personal data!
# Backup BOOT, CUST, RECOVEY and SYSTEM images!!!
# You can restore it if mess up or you don t like it!
Change log:
Google apps like books for example deleted
Multi Window
Better performance
Idol Launcher with onetouch stream, custom wallpapers with parallax option
Idol 3 compass
Facebook messenger
Call recorder
Team Viewer
Sony experia wheater widget
AudioFX equalizer
Google calendar
File Manager +
NFC Tools
Microsoft Outlook
Swiftkey Keyboard
Terminal Emulator
To flash it only use TWRP and done!
Attention: It will do a factory reset!
-----------------------------------------------------------------------------------------------
BetoOS_1.0.0_Mod_B596_P8_Lite_Alice.zip
Key: !HMvo3Zv1E7NwjAFz48coM3_9gkRb_EptwM2TzEqvvZ8
-----------------------------------------------------------------------------------------------
Enjoy it!
:highfive:
Click to expand...
Click to collapse
Did you replaced settings app? Or is the icon changed?
JustSomething said:
Did you replaced settings app? Or is the icon changed?
Click to expand...
Click to collapse
Still the same settings apk, i don´t change it.
.
persona78 said:
Still the same settings apk, i don´t change it.
.
Click to expand...
Click to collapse
A little help for v2. Find in build prop hw.multiuser (something like that) delete =0 at the end and replace with =1.
Go to next line and delete =0 at the end and replace with =3.
That enables option USERS in settings
JustSomething said:
A little help for v2. Find in build prop hw.multiuser (something like that) delete =0 at the end and replace with =1.
Go to next line and delete =0 at the end and replace with =3.
That enables option USERS in settings
Click to expand...
Click to collapse
I know that, thanks, but i don't use it.
.
Hmm looks nice, but those are definitely your preferences. BTW you can just flash the newest SuperSU zip or magisk. Don't need to flash 2 zips.
Vinnipinni said:
Hmm looks nice, but those are definitely your preferences. BTW you can just flash the newest SuperSU zip or magisk. Don't need to flash 2 zips.
Click to expand...
Click to collapse
Thanks, i don´t know the link for the new superSU.
And, like i say in post " Came here to share my..." so of course is my preferences. Only install it if you want to try!
Congratulations, I'll try soon I have Wifi
Why not 598?
Suggestion for Pictures enclosed, change first the language to EN then make the screenshots
kilroystyx said:
Congratulations, I'll try soon I have Wifi
Why not 598?
Suggestion for Pictures enclosed, change first the language to EN then make the screenshots
Click to expand...
Click to collapse
There aren´t big changes in B598 ( nothing at first sight) and if i flash B598 i need to start from 0 ( zero ) ...
If Android 7 came then i will change
.
Hi. Cool rom. But why "BetoOS"? And also, I'm making an HSRP (Huawei Stock Rom Project, haha name) on C432B599. I don't want to make a competition or something, just telling you that.
XTutorials said:
Hi. Cool rom. But why "BetoOS"? And also, I'm making an HSRP (Huawei Stock Rom Project, haha name) on C432B599. I don't want to make a competition or something, just telling you that.
Click to expand...
Click to collapse
No problem
BetoOS because i want to give a name to my mod! And why not my name!!!
.
A Issue was found: Can´t change notifications and ringtones
The fix: Flash this zip -> flash_HwThemeManager.zip
Updated - ROM fixed in main post
Awesome rom! Tried it, because I have a lot of school projects and I cannot continue building my rom, for now.
This thread should've beed in "Android Development" or O.A. Development, deserves it.
Also, installing a custom kernel will work on this rom?
Is updated!
persona78 said:
Is updated!
Click to expand...
Click to collapse
Cool! Good job!
No link donwload please link now update today
miquelni said:
No link donwload please link now update today
Click to expand...
Click to collapse
... ?
Have you clicked the window that say " click to show content"?
.
Emui 5.0 design
can you make it look likes emui 5.0 will be great and stable rom ?
belozemeca said:
can you make it look likes emui 5.0 will be great and stable rom ?
Click to expand...
Click to collapse
Rom is stable, and can be possible to turn it like emui 5 but it gives a lot of work...

Oneplus 5 enable Star Wars theme | Star Wars wallpapers |

This is the Simplest process to have starWars theme on oneplus 5 but make sure device is rooted and have twrp recovery installed .
LINKS:
Star wars theme : https://forum.xda-developers.com/attachment.php?attachmentid=4382801&d=1515365593
Magisk |Use 15.2 | : https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445
Wallpapers : https://www.xda-developers.com/official-star-wars-the-last-jedi-wallpapers-oneplus-5t/
works great on OB3 kernel stock
Not working on Nougat
Sent from my ONEPLUS A5000 using Tapatalk
g_Four said:
Not working on Nougat
Sent from my ONEPLUS A5000 using Tapatalk
Click to expand...
Click to collapse
try on oreo it should work.
Did not work for me :/
ashokmor007 said:
try on oreo it should work.
Click to expand...
Click to collapse
Doesn't work on OOS Oreo open beta 4
ashokmor007 said:
This is the Simplest process to have starWars theme on oneplus 5 but make sure device is rooted and have twrp recovery installed .
LINKS:
Star wars theme : https://forum.xda-developers.com/attachment.php?attachmentid=4382801&d=1515365593
Magisk |Use 15.2 | : https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445
Wallpapers : https://www.xda-developers.com/official-star-wars-the-last-jedi-wallpapers-oneplus-5t/
Click to expand...
Click to collapse
Not working on 5.0.1 as it installs successful but there is no option shows as starwar under display.
rocky183ya said:
Doesn't work on OOS Oreo open beta 4
Click to expand...
Click to collapse
Do we have beta 4 for oneplus 5?
ashokmor007 said:
Do we have beta 4 for oneplus 5?
Click to expand...
Click to collapse
No
ashokmor007 said:
Do we have beta 4 for oneplus 5?
Click to expand...
Click to collapse
Sorry its open beta 3 with hotfix update.
Also i would like you to add link to bluspark TWRP in ur post, as it works with bluspark TWRP only as someone suggested me.
And i can confirm it works now.
And i can also confirm its just a dark theme with red accent. Nothing extraordinary
Working OpenBeta 3 Hotfix
Exactly, it seems like the complete theme is not working the same on OOS 5.0.0. and 5.0.1 i also only get the red accent but my volume rocker stays the color it was set to previously. Sucks, I liked those wallpapers and clock on the lockscreen
Bigred065 said:
Exactly, it seems like the complete theme is not working the same on OOS 5.0.0. and 5.0.1 i also only get the red accent but my volume rocker stays the color it was set to previously. Sucks, I liked those wallpapers and clock on the lockscreen
Click to expand...
Click to collapse
You can easily use Star Wars Theme + Ozone 4.5 and all is Red ^^
Not working
mayur.3.92 said:
Not working
Click to expand...
Click to collapse
Yes TWRP module don't work on a lot of devices. it work at 100% with the manual method
CREDIT: CHAPLAN
Happy?
You must :
1/ Be Rooted (Lastest Magisk is recommanded)
2/ Have a Custom Kernel (like blu_spark, Flash or others) because with Stock Kernel you will have a error message (Permission Denied)
3/ Install a Mobile Terminal app from Google Playstore
4/ In the Mobile Terminal app, enter that in 2 steps:
Code:
su
echo 2 > /sys/module/param_read_write/parameters/cust_flag
Reboot, go to Settings > Display > Choose "StarWar" Theme
With Ozone you can add some goods features like center text menu in the Settings, Change number QS Tile in Statubar, Change StatuBar Icon Color and more. Look the Screenshots
PS/EDIT : I think be a respectful person on xda, i have use this tuto here, it's because in my post there: echo 2 > /sys/... instead echo '2' > /sys/... on your post and in my post i advise to use a custom kernel without know that the only kernel is blu_spark...
You could send me a simple PM instead of doing your show and using a condescending tone.
Pho3nX said:
Yes TWRP module don't work on a lot of devices. it work at 100% with the manual method
You must :
1/ Be Rooted (Lastest Magisk is recommanded)
2/ Have a Custom Kernel (like blu_spark, Flash or others) because with Stock Kernel you will have a error message (Permission Denied)
3/ Install a Mobile Terminal app from Google Playstore
4/ In the Mobile Terminal app, enter that in 2 steps:
Code:
su
echo 2 > /sys/module/param_read_write/parameters/cust_flag
Reboot, go to Settings > Display > Choose "StarWar" Theme
With Ozone you can add some goods features like center text menu in the Settings, Change number QS Tile in Statubar, Change StatuBar Icon Color and more. Look the Screenshots
Click to expand...
Click to collapse
worked
Pho3nX said:
Yes TWRP module don't work on a lot of devices. it work at 100% with the manual method
You must :
1/ Be Rooted (Lastest Magisk is recommanded)
2/ Have a Custom Kernel (like blu_spark, Flash or others) because with Stock Kernel you will have a error message (Permission Denied)
3/ Install a Mobile Terminal app from Google Playstore
4/ In the Mobile Terminal app, enter that in 2 steps:
Code:
su
echo 2 > /sys/module/param_read_write/parameters/cust_flag
Reboot, go to Settings > Display > Choose "StarWar" Theme
Click to expand...
Click to collapse
You can remove "Flash kernel or others" from the equation, this only works on blu_spark kernel at this point in time and backwards. My crystal ball got broken so I can't tell about the future.
I only wonder where you got this from.
On XDA we have a long tradition on giving credits when sharing development related info that we found somewhere else, and add to it only if you know what you are talking about.
But maybe I'm just a traditional dude.
I hope you take this with a pinch of salt, in the end it is what it is no matter what.
I will just leave here my initial post, that was edited meanwhile with new info in the matter and a new set of commands that are known to work on any terminal emulator app since people were having some troubles character encoding related:
So, and reposting from the blu_spark thread:
eng.stk said:
drivers: param_read_write: enable cust_flag sysfs for edition set (Star Wars baby)
Click to expand...
Click to collapse
So to enable Star Wars edition on a terminal run:
Code:
su
echo '2' > /sys/module/param_read_write/parameters/cust_flag
To disable it run:
Code:
su
echo '0' > /sys/module/param_read_write/parameters/cust_flag
This should solve the copy/paste issue users are reporting all over.
If you set the flag to 0 and forgot to disable star wars edition on theme settings opening display settings will FC.
run:
Code:
su
settings put system oem_special_theme 0
And it's good to go. No more FC on display settings.
Simply select one of default themes and its done.
On the current state of things to change the flag on the fly you need blu_spark kernel.
I hope this post edit clears it up once and for all.
If someone wants a Star Wars themed TWRP, then you can find the latest ones in my MediaFire folder here.
Pho3nX said:
Happy?
Click to expand...
Click to collapse
Not really.
You could have mentioned me instead of linking to my profile, I would be notified that way. Didn't think of PM really, but since you suggest it neither have you.
And instead of taking the time to excuse yourself what you should have done was edit the dam post and get some facts right.
Yes, AFAIK blu_spark is the only kernel that you can use this on the fly method with.
The other one you mention isn't working like stated so....
Well, your post (hehe, sorry, couldn't help it) your bad.
That pinch of salt was maybe a bad move, try sugar next time, great for sour times.
Keep up man, all in the name of the truth as usual. :laugh:
Successfully installed the ZIP file via TWRP in my OnePlus 5 (Official Build 5.0.4). Rebooted and went to Theme option. There was no Starwars option available. Didn't work for me.

[MODULE] Universal GMS Doze

Universal GMS Doze
Overview
- Patches Google Play services app and certain processes/services to be able to use battery optimization
- Support API 23 or later
Download Links (Archives):
- GitHub Releases
- Mediafire
- MEGA
- SourceForge
- Telegram
Credits:
- @topjohnwu
Magisk - Magisk Module Template
- @MrCarb0n
Script / syntax helper
Extras:
- Donation: PayPal - LiberaPay - Ko-fi
- Source Code: GitHub
Troubleshooting
- Command-line for check optimization (with add-on installed):
Code:
> su
> gmsc
- Command-line for check optimization (general):
There's a line written Whitelist (except idle) system apps: and if com.google.android.gms line does not exist it means Google Play services is optimized.
Code:
> su
> dumpsys deviceidle
- Command-line for fix delayed incoming messages issue:
Code:
> su
> cd /data/data
> find . -type f -name '*gms*' -delete
- Command-line for disable Find My Device:
Code:
> su
> pm disable com.google.android.gms/
com.google.android.gms.mdm.receivers.MdmDeviceAdminReceiver
Change Log
- 1.9.0
Android 14 support
Fixed synchronization for Location Sharing and Play Games
- v1.8.8
A long-awaited hotfix
Addresses script that caused patching XML gone wrong
Raised Magisk Boot Service to 100 seconds
- v1.8.7
Android 13 support
Added GMS to battery optimization and disabled another components
Fixed broken API checking and Multi-User support
Moved to inbuilt (Magisk) BusyBox
Improved pre-boot conflict fixer and proper boot script execution
Improved superuser checking method and used cmd flag arguments
Improved XML patching logic
Minimized root path checking depth
Revived overall code quality and syntax
Rewrite GMS state checker bin
- v1.8.6
Added /system_ext detection support
Improved patching detections (Allow to revoke location permissions)
- v1.8.5
Added updateJson support
Improved patching detections (XML files)
v1.8.4
- Removed redundant script (GMS: Stay with disabling Find My Device only)
- v1.8.3
Android 12 support
Additional boot complete check
Multi-User support
Set ignore for GMS and IMS WRITE_SETTINGS
Minor improvements
- v1.8.2
Android 11 support
Improved installation (Magisk Live and Custom Recovery)
Improved patching detections (XML files and conflicting modules)
Integrated add-on (run 'gmsc' with superuser rights for check optimization status)
Set ignore for GMS and IMS BOOT_COMPLETED
Set ignore for GMS and IMS AUTO_START (custom permissions for Oxygen OS)
Updated template
- v1.8.1
Integrated custom recovery installation
Added boot logic for search and patch any conflicting modules (if present)
Whitelisted IMS and Turbo (this should fixed location crash issue in MIUI)
- v1.8.0
Initial re-release
100 seconds Magisk Boot Service
Hi.
I'm using Your doze for some time now and it's working quite good. Good work, thanks.
What does XiaomiDoze do, exactly and specifically?
Sent from my Xiaomi Redmi Note 5 using XDA Labs
What's the difference between universal gms doze NMF21F
Because it works great on OnePlus devices ,is the Oct version better than this
Known issue for Pie. I have frozen Find my Device via TiB.
Flashed module, but still unable to optimise play services.
Anyone else on Pie managed to get this to work?
Sent from my OnePlus 5 using XDA Labs
.
Sent from my OnePlus 5 using XDA Labs
L22EEW said:
Known issue for Pie. I have frozen Find my Device via TiB.
Flashed module, but still unable to optimise play services.
Anyone else on Pie managed to get this to work?
Click to expand...
Click to collapse
Not to freeze those Find My Device, I mean just Turning Off. Inside Settings > Security and location.
Sent from my Redmi 3 using XDA Labs
gloeyisk said:
Not to freeze those Find My Device, I mean just Turning Off. Inside Settings > Security and location.
Click to expand...
Click to collapse
Hmm. Tried that. Still no luck
I know this is still in experimental stage, I've been following this project. I can wait for more stable version ?
Sent from my OnePlus 5 using XDA Labs
What's the difference between device health service from Google and turbo app provided in zip, is it the same?
If it is the same could you make the module have an option to install or not, because some dev already included device health service in their roms.
Everytime I install this module and reboot, I got turbo crash first time my device booted up
Thanks in advance
Sorry for my broken English
Is this module usable near greenify aggressive doze?
ztoldy said:
Is this module usable near greenify aggressive doze?
Click to expand...
Click to collapse
No, Greenify has its own doze methods. But my module compatible with it. Turning On/Off Aggressive Doze inside Greenify will be better.
Sent from my Redmi 3 using XDA Labs
Hi thanks for this work . I installed this module . am on android pie unofficial X rom for nexus 6 .
However I got this when I try to open the battery from setting.
I attached a log file too .
mahir555 said:
Hi thanks for this work . I installed this module . am on android pie unofficial X rom for nexus 6 .
However I got this when I try to open the battery from setting.
I attached a log file too .
Click to expand...
Click to collapse
Thanks again for the report, which build of the module you've installed?
Sent from my Redmi 3 using XDA Labs
gloeyisk said:
Thanks again for the report, which build of the module you've installed?
Click to expand...
Click to collapse
The latest 1.2.3
mahir555 said:
The latest 1.2.3
Click to expand...
Click to collapse
Is it happened too with previous build?
Sent from my Redmi 3 using XDA Labs
gloeyisk said:
Is it happened too with previous build?
Click to expand...
Click to collapse
Ok give me some time ~20 min
.. Will report back
Yes . same behavior .. Even it appears when I try to open setting before clicking on battery .
I tried 1.2.2 & 1.2.0
I installed the magisk module. How can I see if it work?
I have also installed xxx rom limit with some Google play services wakelocks disabled through aroma installer . Any concern of conflicts?
I have OnePlus5.
Should I have to uninstall previous version of this module and reboot before install new one?
mahir555 said:
Ok give me some time ~20 min
.. Will report back
Yes . same behavior .. Even it appears when I try to open setting before clicking on battery .
I tried 1.2.2 & 1.2.0
Click to expand...
Click to collapse
Ohh well, I'll take a look for a new build when I have free time. You can check OP for Telegram group link, you can asking there also.
Sent from my Redmi 3 using XDA Labs

[THEME][ROOT][MAGISK]Pixel theme for stock Android 10 ROM

This is a Magisk module that ports Pixel theme and some Pixel features to Android 10 (it was based on Pixel 4 and it's compatible with all AOSP 10, and close to it, ROMs).
Includes:
Pixel Theme Overlay
Styles & wallpapers <- Added new icon packs: Sam, Victor and Kai (Taken from Pixel 5 Android 11 ROM and adapted to work on stock Android 10)
Google Wallpapers (2019; 2020 & 2020a) -> credits to @Pranav Pandey for his work with Google Pixel/2/3/4/a/5 Live Wallpapers
Markup Google
Settings shortcuts for all Pixel goodies
Google Settings Intelligence
Lawnchair Launcher or Pixel Launcher (LL or PL)
Device Personalization Services
Sound Picker
Sound Amplifier
Live Caption <- New feature
Now Playing <- New feature (unfortunately it doesn't work)
Bonus features:
Lawnchair Launcher or Pixel Launcher as default recents provider
Bottom corners perfectly rounded (no more "pixelized stuff" down there...check how they are now before applying the theme...you'll see that ugliness)
Disabled rounded corners on floating windows (which makes all windows transitions 100x times faster)
Complete immersive gesture navigation with no Pill and reduced bar bellow keyboard (now we don't need Fullscreen Immersive gestures mod anymore)
Removed "WiFi with numbers" icons in order to be able to apply other icon themes without losing consistency
Google Sans applied system wide
Several extra fonts <- Added more fonts on latest version
More accent colors
8 more dark styles besides the default black (which can be managed by Rom Control App that's included on MiA3 Mods Magisk Module)
5 QS Headers styles: Grey; Light grey; Accent colored; "Follow dark mode"; and Transparent (again....use Rom Control App)
New themed boot animation (It's google boot animations but with Android One fading on the beginning)
Downloads:
Typhus_V10_Pixel_LL_for_Android10.zip <- Version with Lawnchair as default recents provider
Typhus_V10_Pixel_PL_for_Android10.zip <- Version with Pixel Launcher as default recents provider
Typhus_auto_dark_mode_and_styles.zip <- Extract the mdr file inside this zip and import it to MacroDroid App. (You need this only for the bootanimation to work. As for the rest (qs headers; dark themes), just use Rom Control...).
Check the video for more details (this video is from the old version....but you can get the overall idea):
-- NOTES --
(These are important, so please read them carefully):​
1 - As stated, the default dark version is "Black". If you want to change to other dark version all you need to to is to enable the overlay that you want. To do that you'll need a terminal emulator and run a command like this example for Dark gray (this only needs to be run one time after installing the module): (forget this...use Rom Control...)
​To enable the Dark Gray version:​
Code:
su
Code:
cmd overlay enable com.android.dark.darkgray && cmd overlay enable com.android.dark.darkgrayExt && killall com.android.systemui
To disable the Dark Gray version:​
Code:
su
Code:
cmd overlay disable com.android.dark.darkgray && cmd overlay disable com.android.dark.darkgrayExt && killall com.android.systemui
​DO NOT ENABLE ALL AT THE SAME TIME!! If you want to test them, you must first enable one, then check it, disable it and enable the other one.​​Every time you disable it, it will revert back to the default, which is Black.​
2 - If you want, you can use MacroDroid App to help you enabling and or disabling these overlays. (nope...bla bla bla...Rom Control...)
For that, you only need to install the app and, afterwards, you just need to import the macro file I've shared here. You just need to access the macro you want, touch the script action and choose "test action". See the screenshots I've shared HERE for more info.
3 - If you already have Pixel or Lawnchair Launcher(s) installed on your device, please, uninstall them before you install the theme.
4 - If you have Quickswitch installed on your device, please, uninstall it before you install this theme version. You may install it after applying the theme but I don't think you'll need it.
5 - Do not update Google Wallpapers nor Device Personalization Services apps. You shouldn't also install any other version, of these apps, you may find on the Internet. Stick to the versions included in the theme, period!
6 - On the other hand, you should update Sound Picker app since some users reported it failed if not updated.
7- All other apps included on the theme, can be updated without any issues but it's not mandatory.
8 - If you want to use Pixel Launcher version, in order to use all cool features, as they're supposed to work, set your phone language to English US. It's possible to use your phone on another language BUT to avoid issues, please disable the suggestions options on Pixel Launcher settings or just disable Gesture navigation.
9 - Don't forget to give all permissions to all apps included on the theme (Pixel Launcher, Sound Picker, Pixel Live Wallpaper Picker, Device Personalization Services, etc.)
10 - Pixel launcher version has everything working but it's not fully compatible with 3rd party launchers when using gesture navigation. The gestures work but you're not able to use the swipe on the navbar to change between apps nor the Clear all button.
11 - On the other hand, Lawnchair version has that feature, but it does not allow you to do searches on the recents screen. Meaning, Lawnchair version does not "talk" with Device personalization Services.
12 - Regarding the themed boot animation, I recommend you to create a backup of your current bootanimation.zip file (just rename it to bootanimation_BKP.zip or something like that, the original file is on /system/media/), before using the "Auto Dark Based On Daylight" macro. If you don't do that, you will lose it!
Cheers and enjoy!
Dark Theme Screenshots
Decided to share these so you may properly check the differences (thought that maybe, in the video, they weren't that noticeable)...
Stock -> Black -> Dark Grey -> Google Grey
Typhus_ said:
Decided to share these so you may properly check the differences (thought that maybe, in the video, they weren't that noticeable)...
Stock -> Black -> Dark Grey -> Google Grey
Click to expand...
Click to collapse
The first ones are so freakin' beautiful. If it wasn't for the buggy A10, I'd be flashing A10 stock immediately and use this theme.
Also, could you possibly add a Network Indicator somehow on stock?
I really like that feature.
Thank you, preliminary!
I'm on stock A10 and I don't face any bugs that makes me want to change ROM to be honest.
As for the network indicators...I don't how to implement that....but I can try to look for it.
And by the way, the last one (Google Grey) is awesome as well since it matches all Google apps dark theme style. It fits perfectly with all Google apps. For instance, I don't quite enjoy being on settings and then access Google settings and see the background color change, that's why I've created this version.
Cheers!
OP has been updated with a new version that fixes all bugs regarding lock screen security and, now, the module is a 3 in 1.
Cheers!
Macrodroid screens
Decided to share some Macrodroid screenshots in order to help, those who never used this, to work it with properly.
Cheers!
Typhus_ said:
Decided to share some Macrodroid screenshots in order to help, those who never used this, to work it with properly.
Cheers!
Click to expand...
Click to collapse
How can I install the MACRO .zip, I didn't understand.Via magisk after installing the pixel.zip or via Macrodroid app? I don't understand how this app works..Can you explain to me?
papafan said:
How can I install the MACRO .zip, I didn't understand.Via magisk after installing the pixel.zip or via Macrodroid app? I don't understand how this app works..Can you explain to me?
Click to expand...
Click to collapse
Oh right....forgot to talk about that (gonna add this into the OP....).
After downloading the zip you must extract it then you just have to import the Typhus_Pixel.mdr file into Macrodroid.
Cheers!
Typhus_ said:
Oh right....forgot to talk about that (gonna add this into the OP....).
After downloading the zip you must extract it then you just have to import the Typhus_Pixel.mdr file into Macrodroid.
Cheers!
Click to expand...
Click to collapse
Please write the steps I must follow inside the Macrodroid app...
papafan said:
Please write the steps I must follow inside the Macrodroid app...
Click to expand...
Click to collapse
Yes, I've shared 2 zips on the OP...one is the module ("Typhus_Pixel_for_Android10.zip" to be installed on Magisk) and the other one ("Typhus_Pixel_macro.zip") is a zip file that has to be extracted in order to get the mdr file.
That mdr file must be saved somewhere on your device (internal memory or SD Card).
To import it you only have to open Macrodroid app an touch on the "Export/Import" icon. Then touch the "Storage" button on the "Import" section and choose the mdr file I've shared.
Done.
Module zip link on OP has been updated.
The Module had a bug when opening the volume dialog settings shortcut (on Black and Dark Grey overlays).
Now it's a new version.
If you had already download it, please download and install it again (just the module...the macro isn't needed).
Cheers!
Typhus_ said:
Decided to share some Macrodroid screenshots in order to help, those who never used this, to work it with properly.
Cheers!
Click to expand...
Click to collapse
Auto dark option doesn't work. Only manually. It's something wrong?
papafan said:
Auto dark option doesn't work. Only manually. It's something wrong?
Click to expand...
Click to collapse
Try to see if your location is correct on Macrodroid since the sunset/sunrise trigger needs it to be accurate. Probably if you set your current location again, it will be fixed (try to test the trigger action).
Also, disable battery optimization for the Macrodroid app (on System settings).
Typhus_ said:
Try to see if your location is correct on Macrodroid since the sunset/sunrise trigger needs it to be accurate. Probably if you set your current location again, it will be fixed (try to test the trigger action).
Also, disable battery optimization for the Macrodroid app (on System settings).
Click to expand...
Click to collapse
I did all of them. My location is right. I deleted and I imported again the mdr file. Nothing. Whenever I test the actions all work right. But I was excepting the auto mode....
Strange...It's working fine here
Please check if Macrodroid has root permissions (check on Magisk).
You're sure the sunset time has already arrived in your country right?
Maybe you need to recreate the macro from the beginning, or leave it activated and wait for sunrise. If it changes back to white theme, then it's ready.
Cheers!
Typhus_ said:
Strange...It's working fine here
Please check if Macrodroid has root permissions (check on Magisk).
You're sure the sunset time has already arrived in your country right?
Maybe you need to recreate the macro from the beginning, or leave it activated and wait for sunrise. If it changes back to white theme, then it's ready.
Cheers!
Click to expand...
Click to collapse
Haha its dark outside! I recreated it three times... What can I say, I will wait. Thanks for your answers.
Typhus_ said:
Strange...It's working fine here
Please check if Macrodroid has root permissions (check on Magisk).
You're sure the sunset time has already arrived in your country right?
Maybe you need to recreate the macro from the beginning, or leave it activated and wait for sunrise. If it changes back to white theme, then it's ready.
Cheers!
Click to expand...
Click to collapse
Can I use this app for auto dark theme?
https://play.google.com/store/apps/details?id=com.cannic.apps.automaticdarktheme
Barbiox Dogg said:
Can I use this app for auto dark theme?
https://play.google.com/store/apps/details?id=com.cannic.apps.automaticdarktheme
Click to expand...
Click to collapse
Yes, I think so. I'm just not using it since Macrodroid is doing it's job at my end. But I've used it before on other ROMs, so I think it's ok.
Typhus_ said:
Yes, I think so. I'm just not using it since Macrodroid is doing it's job at my end. But I've used it before on other ROMs, so I think it's ok.
Click to expand...
Click to collapse
I've used this module before and my phone bootlooped. I'm using Xiaomi Mi A3 Android 10. I'm scared to install this new version.
Warning | Suggestion
Barbiox Dogg said:
I've used this module before and my phone bootlooped. I'm using Xiaomi Mi A3 Android 10. I'm scared to install this new version.
Click to expand...
Click to collapse
There's nothing to be scared about. The module is working on stock Android 10 ROM.
If you face any issues after flashing the module all you need to do is to boot into TWRP and flash the module zip again.
Since this module is an edited version of Pix3lify module, it follows Pix3lify install/uninstall logic. This means that if the module is already installed, if you flash it again (through Magisk or TWRP) it will uninstall it.
I've run all possible tests, before sharing this module, by running it being completely on stock Android 10 ROM and firmware.
For anyone who may have faced any issues I recommend you, if you want to use this module of course, to completely hard reset your device by flashing stock Android 9 ROM through fastboot or using Mi Flash tool. DO NOT re-lock de bootloader!
After being completely on stock Android 9, flash the 11.0.14 OTA zip using TWRP or wait for the Android 10 full OTA. The OTA zip can also be found HERE.
This was what I've done in order to be on stock Android 10 without any issues. Probably you will need to do it as well, if you're facing issues.
I know there's a fastboot version of Android 10 ROM out here on XDA but, and I mean no disrespect for the ones who made/share it, but since it's not official there could be something wrong with it (or missing), that's why I recommend to use either OTA or OTA zip through TWRP.
Cheers!

Categories

Resources