AlmostVanillaAOSP Marshmallow 6.0.1_81 [MOI10E] ROM for the Nexus 5
Description
An "almost vanilla" AOSP-based Marshmallow ROM for the Nexus 5.
Disclaimer
I am not responsible for anything that happens to your device. By downloading and flashing or installing these zips, you automatically agree that I won't be held liable for anything that happens to your phone.
Background
AlmostVanillaAOSP is an AOSP-based ROM directly using Google's source code with a few functional modifications; these modifications are fully-sourced and easily-installed prior to building the ROM. Included modifications are designed to fix bugs, enhance security, and improve "in the field" function.
Many users prefer a "vanilla" version of AOSP, without added factory bloat and proprietary software; a basic version of AOSP is a great building block to create a custom-featured ROM, or it can be left as-is by users desiring to live outside Google's realm.
Users shouldn't see any visual or functional difference between this ROM and a vanilla AOSP build; all changes are "under the hood". Please note that there has been no attempt to remove functionality or user choice with this ROM.
If you're looking for a 100% pure AOSP ROM, please install BreckZeBoulay's UntouchedAOSP ROM IN THIS THREAD
Included Modifications
Enabled the Doze option: Google's Doze option (built-into the AOSP code base), is a set of rules that puts an idle phone to sleep, reducing battery drain. For Doze to work, you have to have Google Play Services (GApps) installed. If you don't have Play Services installed, nothing happens and the phone still works fine. For more details on Doze, read HERE.
Option to add Google's current WebView: The WebView included with AOSP Marshmallow is locked-in at version 52, and the only way it will get updated is by installing a later ROM. With the stock AOSP code, users have no option to upgrade to a newer version; trying to upgrade results in browser crashes and instability. This "fix" allows installing the "Android System WebView" from the Play Store (currently at version 58); the Play Store version is kept current by Google. If you choose not to install the Play Store WebView version, the included version works fine, although at an increased security risk due to not having updates. DO NOT REMOVE THE INCLUDED WEBVIEW VERSION! Keep the original version that's located in /system/app, if you install another version; it's not "bloat". The Play Store Android System WebView can be found HERE.
Addition of Sony's suggested (and disapproved) Power Menu reboot option: Sony made attempts to add a reboot option to the Power Menu in the AOSP code; their efforts were rejected. However, Sony generously posted the code changes needed to enable this option, and they are included in this ROM. An interesting read on Sony's attempts can be found HERE. For details on implementing this feature post-install, please read the "Implementing Reboot" section below.
Removal of broken AOSP applications (Browser, Calendar, Email, and Exchange): AOSP Browser, AOSP Calendar, and AOSP Email (and by extension, AOSP Exchange) are hopelessly broken. I refuse to put broken applications in a ROM, even for "completeness". The good news is that Lightning Browser, Etar Calendar, and K9 Mail are open source and even better than the originals. Look in the "Suggested Open Source Applications" section below for links to these apps.
Removal of LiveWallpapers: The LiveWallpaper bloat has been removed from the ROM. The LiveWallpaperPicker app remains, so the functionality is still there. They're something that few people (if any) actually use.
Updated Launcher Icons to Material theme: The Material Dialer Icon is usually the first item folks ask for in AOSP ROMs. The Calendar, Dialer, and Gallery launcher icons were borrowed from the Cyanogenmod Github. The QuickSearchBox and Music launcher icons were modified from the icon set provided by Rammist on this WEBSITE. No other changes were made to the apps other than their launcher icons.
Added Option to Utilize UnifiedNlp Location: UnifiedNlp is a FLOSS (Free/Libre and Open Source Software) Wi-Fi- and cell-tower-based geolocation tool for Android by MaR-V-iN. His XDA thread can be found HERE. All that's been done is the addition of a single entry (org.microg.nlp) during build to the list of the ROM's network location services. Users who don't add the UnifiedNlp app will see no change or function with the ROM. For details on implementing UnifiedNlp with this ROM, please review Post #2 in this thread.
Sources and Source Patches
Source tree:
Code:
https://android.googlesource.com/platform/manifest -b android-6.0.1_r81
Nexus 5 (GSM/LTE) binaries for Android 6.0.1 (M4B30Z):
Code:
https://developers.google.com/android/drivers
Source Patches Used for ROM Build:
Bloat
Broken
Dialer-Gallery2-Calendar-Search-Music - Launcher Icons
Doze
Reboot Icons <- Required for the Reboot patch
Reboot
WebView
UnifiedNlp
Patch Installation Prior to Building ROM:
Put patch(es) in the AOSP build folder. This is how the patches and icon images were installed:
Code:
patch -p0 < M4B30X_Reboot.patch
patch -p0 < M4B30X_WebView.patch
patch -p0 < M4B30X_Doze.patch
patch -p0 < M4B30X_Bloat.patch
patch -p0 < MOB31T_Broken.patch
patch -p0 < MOB31T_UnifiedNlp.patch
unzip M4B30X_Reboot_Icons.zip
unzip M4B30X_Dialer-Gallery2-Calendar-Search-Music_Icons.zip
find . \( -name \*.orig -o -name \*.rej \) -delete
NOTE on ".rej" and ".orig" generated files:
Patches that succeed but have ***ANY*** issue generate additional ".orig" files in the same folders as the original files.
Patches that fail generate a ".rej" extension file in the same folder as the original file. A failed patch must be investigated before proceeding further.
For example:
Code:
frameworks/base/core/res/res/values/config.xml
frameworks/base/core/res/res/values/symbols.xml
Both of the above files are modified by two or more patch files. An initial patch will work fine, but subsequent patches are noted with notices like "Hunk #1 succeeded at 306 (offset 1 line)". The patch applied fine, but the patch command is notifying you that when it went to apply the patch, the lines weren't where they were originally expected to be (shifted down XX number of lines). As long as the patch didn't fail with output like "Hunk #1 FAILED at 58.", you're good. However, even though the patch was successful, it still generates a "config.xml.orig" or a "symbols.xml.orig" file when there is a conflict.
Now the problem: those ".xml.rej" and ".xml.orig" files, despite having incorrect endings and not being actual ".xml" files, are treated during build as valid .xml files. Since the config.xml.orig and config.xml file are in the same folder and almost identical, the build will fail as it's seeing the duplication. AOSP appears to parse all files in certain folders, regardless of extension.
The following command will eliminate those ".orig" and ".rej" files, should they appear:
Code:
find . \( -name \*.orig -o -name \*.rej \) -delete
To revert installed patches, with the patches in the AOSP build folder:
Execute the following commands:
Code:
patch -p0 -R < M4B30X_WebView.patch
patch -p0 -R < M4B30X_Reboot.patch
patch -p0 -R < M4B30X_Doze.patch
patch -p0 -R < M4B30X_Bloat.patch
patch -p0 -R < MOB31T_Broken.patch
patch -p0 -R < MOB31T_UnifiedNlp.patch
find . \( -name \*.orig -o -name \*.rej \) -delete
NOTE: any icon images you've unzipped can't be reverted.
Known Bugs
None yet.
GPL
The kernel included with this ROM was pulled directly from the AOSP source tree. No modifications have been made to any of the kernel sources or the kernel itself.
For the source tree for the AOSP-supplied kernel, please check HERE.
The GPL v2 license can be found HERE.
AlmostVanillaAOSP ROM Download
LATEST: AndroidFileHost | Mediafire
AlmostVanillaAOSP[6.0.1_r81-MOI10E]Hammerhead-20171004.zip
SHA256: 7fcdb2dd0e349b1b99eefc55f9e49b0fd07c9e2ad1054848840019a88434c2b5
OLDER RELEASES can be found here: AndroidFileHost
AOSP Changelogs - Does not include AlmostVanilla changes.
Generated using the following bash script:
Code:
#!/bin/bash
#
#
#
repo forall -c '
if git rev-parse android-6.0.1_r79 >/dev/null 2>&1
then
git log --oneline --no-merges android-6.0.1_r79..android-6.0.1_r80
else
git log --oneline --no-merges android-6.0.1_r80
fi
' | cat
android-6.0.1_r79 to r80
Add-on Downloads - In TWRP-flashable format.
Radio/Modem Download, Version M4B30X_M8974A-2.0.50.2.30: AndroidFileHost | Mediafire
- The current modem-radio for the N5 is M8974A-2.0.50.2.30, from the M4B30X ROM.
Video Green Line Fix, Version 6.0.1_r77-M4B30Z: AndroidFileHost | Mediafire
- Fixes the green line along the edge of video frames.
- Pulled from the latest factory N5 ROM, M4B30Z_6.0.1_r77.
Qualcomm Time Service Fix, Version 6.0.1: AndroidFileHost | Mediafire | Older Versions
- Fixes the date and time resetting on successive boots.
UnifiedNlp(GAPPS), Version 1.6.8: AndroidFileHost | Mediafire
- A flashable version of UnifiedNlp(GAPPS) that installs to /system. Only for AlmostVanillaAOSP[6.0.1_r79-MOB31T]Hammerhead-20170418.zip or later versions WITH built-in UnifiedNlp support.
- For details on implementing UnifiedNlp with this ROM, please review Post #2 in this thread.
N5 Boot Animations: This THREAD has an assortment of N5 flashable and tested bootanimations.
Debloating Tools: Look at this thread THREAD for debloating scripts to eliminate unwanted or redundant applications.
Wallpapers
AOSP doesn't include any wallpapers for the Launcher/Home Screen. To help beautify your N5, I've included some links to stock Android and Nitrogen OS wallpaper in Post #3.
Installation
PLEASE ASK QUESTIONS IF YOU HAVE THEM!
General ROM & GApps Install Procedure:
--------
PREPARATION:
1. Flash current factory ROM via PC (to get current modem radio)
2. Install TWRP via adb
3. Create empty GApps text files as per directions HERE
4. Copy ROM, empty text files, and install items to phone from PC
FLASH & INSTALL:
1. Boot to TWRP
2. Reboot to recovery (TWRP) from within TWRP
3. Wipe everything but internal storage
4. Flash the ROM
5. Flash a bootanimation, TimeService, Green line fix
6. Reboot to System
7. Configure Time, WiFi, APN, Reboot Menu
8. Reboot to TWRP
9. Flash GApps (Delta GApps MM PROCEDURE
10. Reboot to System
11. Set permissions for GApps (Contacts, Play Store, Google Play Services)
12. Reboot back to System
13. Setup Google Account
14. Install Play Store Apps
15. Install APKs manually
16. Reboot to TWRP
17. Run debloat script.
18. Reboot to TWRP
19. Flash UnifiedNlp app
20. Install SuperUser (PHH's is fine)
21. Reboot to System.
22. Done
#6, rebooting to System BEFORE flashing GApps, is VERY important.
GOOD LUCK!
Screen Shots
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
FAQ
Q: How can I verify the running WebView version of my ROM?
A: Use HTML5test WebView from HERE.
Q: Does Doze work in this build?
A: Yes. You'll need GApps installed for it to work properly. You do not have to enable anything; it is active by default.
Q: How can I check and see if Doze is enabled on this ROM?
A: Download and install the APK from this THREAD.
Q: My date and time keeps resetting on successive boots?
A: Solution is to install the Qualcomm TimeService app (a proprietary application) - the 6.0.1 version is available HERE
Q: Can I use this ROM with Android Pay?
A: No. Only approved factory ROMs from Google can use Android Pay. If you want Android Pay on the Nexus 5, install a Marshmallow factory image.
Q: Where can I get the Marshmallow bootanimation? I'm only seeing the AOSP default framework bootanimation.
A: Try Post #1 in this Boot Animation Collection.
Q: Where can I find your build tree?
A: There is no build tree for this ROM, other than the full source code as provided by Google. Any modifications to this source code are noted under "Patches".
Q: Can you add new features to this ROM?
A: The goals of this ROM are a stock AOSP feel and security. "Features" other than bug-fixes and security enhancements aren't a priority and probably won't be added.
Q: Which GApps are recommended?
A: Deltadroid's GApps are highly recommended using this installation PROCEDURE
Q: How do I install GApps?
A: A general procedure to install ROM with GApps:
Don't flash the ROM together with GApps in the same ZIP queue because this will cause the Installation Wizard to run on first boot. Due to Google Play permissions errors the Wizard will keep crashing and you won't be able to bypass this. Solution:
1. Boot to TWRP
2. Reboot to recovery (TWRP) from within TWRP
3. Wipe everything but storage
4. Flash the ROM
5. Flash a bootanimation, TimeService, Green line fix
6. Reboot to System
7. Configure Time, WiFi, APN, Reboot Menu
8. Reboot to TWRP
9. Flash GApps
10. Reboot to System (Yes, you'll probably get Play Services "FC" messages until you perform #11, below)
11. Immediately toggle application permissions to "ON" under "Settings -> Apps -> ... -> System show" for:
Code:
- Google Contacts Sync
- Google Play Services
- Google Play Store
12. Reboot back to System
13. Setup Google Account via "Settings -> Accounts -> Add account -> Google"
14. Install Play Store Apps
15. Install APKs manually
16. Reboot to TWRP
17. Run debloat script.
18. Reboot to TWRP
19. Install SuperUser (PHH's is fine)
20. Reboot to System.
21. Done
Q: My Google Play Store / Google Play Services / Apps keep crashing?
A: This is a permissions issue. Please read the "Which GApps are recommended?" answer above.
You can try System Settings > Apps (top right menu button) > Show System,
and set the following to resolve most crashes:
Google Contacts Sync > Contacts permission
Google Play Services > All permissions
Google Play Store > All permissions
Q: Can you patch the ROM to deal directly with the GApps permissions issue?
A: No. It's a security policies issue, and there's no desire to override those policies.
Q: Where is the System Tuner UI?
A: Enable Developer Options (under "About Phone", tap "Build Number" seven times), then long-press the settings icon in the notification shade/bar.
Q: How do I get root?
A: PHH's SuperUser is highly recommended. Install the SuperUser APK (F-Droid or Play Store), then flash the superuser.zip from HERE. It works flawlessly, and it's open source.
Q: Can I use this ROM with MultiROM?
A: UntouchedAOSP users were successful with MultiROM. AlmostVanillaAOSP should work equally-well.
Q: AOSP Calendar (and Etar Calendar) won't sync with my on-line Google calendar. How can I make syncing work?
A: Flash the Google Calendar Sync addon for 6.0.0+ add-on from this THREAD, located under "Additional Kitkat, Lollipop, Marshmallow, and Nougat gapps addons". Ensure that permissions are granted in Settings -> Apps for "Google Calendar Sync". You'll need to enable "Show system" under the ". . ." in the upper right of the Apps window,
Q: I get a green line on one side of the frames when recording video. How can I fix this?
A: Go to the "Add-on Downloads" section in this post and get the "Video Green Line Fix" download.
Q: I'm having issues with Location and certain apps (Chronus, f.lux, Google Fit, etc.). How can I fix this?
A: This isn't a ROM issue; it's an AOSP issue. Review POST #2 in this AlmostVanillaAOSP thread for a solution using UnifiedNlp. For a long, detailed answer, look at Mar-v-in's initial response in this GITHUB POST. Hopefully the following will be a short-enough summary:
Google started with an open Location API that was used for AOSP and Google's factory ROMs.
Google created a new Play Services Location API that isn't included is AOSP code and it's only included in factory ROMs.
Google recommends that developers use the newer, closed API version.
Despite the fact that there are few differences between the old and new API, some developers are migrating solely to the new, stranding AOSP users.
Possible solutions for those AOSP users not having access to the new Location API:
Use the solution in POST #2 of this thread.
Forget about custom ROMs, only install factory ROMs (yeah, right!).
Only use and support apps that use the open Location API (all of the applications listed in post #1 of this thread -- requiring Location -- under "Suggested Open Source Applications" support the older Open Location API).
Ask developers if they're willing to modify their applications to fall-back to the open API if the Google one isn't available, or just use the open API.
For other AOSP ROMs, use the procedure as outlined by @alessio89g in this POST
Q: How about a Nougat ROM?
A: Until things stablize on the development front, no. There are driver issues for Nougat on the N5 that have yet to be resolved. It was hoped that there'd be a very vanilla Nougat N5 build, with very detailed modifications of the source tree; documented changes seem to be all over the place, with developers more focused on "features" than straightforward builds. There is a "CleanAOSP" Nougat ROM, but I don't know much about it.
Implementing Reboot
Activate Developer Options: Go to "Settings -> About phone", scroll-down to "Build number", and tap it seven (7) times (first image).
Activate System UI Tuner: Swipe the top of the screen twice, until you get the below image. Long-press the gear icon. When you let go, a wrench icon appears (second image).
Go to "Settings -> System UI Tuner", toggle "Show restart in global actions menu":
Go to "Settings -> Developer options", scroll down and verify "Restart shortcut" is toggled:
NOTE:
"Developer options -> Restart shortcut" and
"System UI Tuner -> Show restart in global actions menu"
are tied together; toggling one automatically toggles the other.
Either method will activate the Reboot menu.
Suggested Open Source Applications
AdAway (requires root) - XDA
Add to Calendar - F-Droid
Amaze File Manager (root capable) - F-Droid | Play Store
AnySoft Keyboard - F-Droid | Play Store
Barcode Scanner - F-Droid | Play Store
Battery Widget - F-Droid | Play Store
Calendar Widget - F-Droid | Play Store
Etar Calendar- F-Droid | Play Store
Flym News Reader - F-Droid | Play Store
Forecastie (uses Open Location API) - F-Droid | Play Store
K9 Mail - F-Droid | Play Store
Lightning Browser - F-Droid | Play Store
Mathdroid - F-Droid | Play Store
MuPDF - F-Droid | Play Store
No-Frills CPU Control (requires root) - F-Droid | Play Store
Open Camera - F-Droid | Play Store
QK SMS - F-Droid | Play Store
QuickDic - F-Droid | Play Store
Simple Gallery - F-Droid | Play Store
SMS Backup+ - F-Droid | Play Store
Solitare CG - F-Droid | Play Store
Turbo Editor - F-Droid | Play Store
Vanilla Music - F-Droid | Play Store
VLC (ARMv7) - FTP | FTP-testing | Play Store
Thanks:
@BreckZeBoulay - for inspiration, guidance, keeping up the good fight, and teaching me how to build a ROM
@Deltadroid - for an awesome GApps package, and listening to users
@MattDN93 - for listening to users and being a cheerleader
@Scott - for his incredible walkthrough in this THREAD
Using UnifiedNlp(GAPPS) with AlmostVanillaAOSP:
What is UnifiedNlp(GAPPS)?
The UnifiedNlp(GAPPS) tool (application) works WITH an installed version of Google's GApps to enhance Location capabilities on AOSP ROMs; the XDA thread for this tool can be found HERE.
Why do we need UnifiedNlp(GAPPS)?
Developer MaR-V-iN provides a detailed response in his initial reply to this GITHUB POST. The short version is:
Google started with an open Location API that was used for AOSP and Google's factory ROMs.
Google created a new Play Services Location API that isn't included in AOSP code and it's only included in factory ROMs.
Google recommends that developers use the newer, closed API version.
Despite the fact that there are few differences between the old and new APIs, some developers are migrating solely to the new API, stranding AOSP users.
Simply put, a growing list of applications (Chronus, f.lux, Google Fit, etc.) refuse to work with the older Open Location API; UnifiedNlp(GAPPS) adds functionality to get these unusable apps working on AOSP ROMs.
How does AlmostVanillaAOSP support UnifiedNlp(GAPPS)?
AlmostVanillaAOSP now includes a build patch (found in Post #1, under "Sources and Source Patches") that adds "org.microg.nlp" to the Location Services providers. It's a simple two-line addition (including one line for a comment). AlmostVanillaAOSP DOES NOT install the UnifiedNlp app; that's up to the user to decide if it's needed or wanted. A user opting to NOT install the UnifiedNlp app will see no performance or functional changes.
Notes
There is a UnifiedNlp(noGApps) version available. It's designed to work with the MicroG Services (an open substitute for Google Play Services). The directions in this post DO NOT apply to the "noGAPPS" version of this application.
Xposed: AlmostVanillaAOSP versions 20170418 and later have support for UnifiedNlp "compiled-in". There should be no need to install the UnifiedNlp Xposed module to get the app/tool to run.
The UnifiedNlp(GAPPS) tool must reside in /system, not in /data; the flashable zip will make installation much easier.
When installed properly, the UnifiedNlp(GAPPS) tool WILL NOT display under the Launcher Apps Menu; you'll find the tool listed under Settings -> Location.
Setup
1. Install AlmostVanillaAOSP[6.0.1_r79-MOB31T]-20170418, or a later ROM revision.
- Follow the suggested install process listed under "Installation" in Post #1.
2. Flash the the UnifiedNlp(GAPPS) app/tool.
- Found in Post #1, under "Add-on Downloads"
- This flashable version of UnifiedNlp is designed to work WITH GApps
3. Install your choice of UnifiedNlp "backend" APKs.
- See the "Backends" list below.
- Should be "side-loaded" via ABD or installed via file manager.
- You can install as many backends as you desire, but you should only have one active.
- The Apple, Mozilla, and OpenBMap backends are "interesting" for our purposes WITH GApps, and should be prioritized.
4. Go to System Settings --> Location:
- Ensure "Mode" is set to either "High accuracy" or "Battery saving", NOT "Device only".
- Ensure that "UnifiedNlp Settings" is listed under "Location services"
5. In System Settings --> Location --> Location services --> UnifiedNlp Settings:
- Enter "Configure location backends", add and configure desired backends.
- Return to "UnifiedNlp Settings".
- Enter "Self-Check", ensuring that all boxes are checked.
Backends
Again, the Apple, Mozilla, and OpenBMap location backends are probably best for easiest compatibility WITH GApps.
Location Backends:
Apple UnifiedNlp Backend - UnifiedNlp location provider (Apple WiFi) - F-Droid
UnifiedNlp backend that uses Apple's service to resolve wifi locations
MozillaNlpBackend - UnifiedNlp location provider (Mozilla) - F-Droid
UnifiedNlp backend that uses Mozilla Location Services to resolve locations (AKA IchnaeaNlpBackend).
OpenBmapNlpBackend - UnifiedNlp location provider (Openbmap) - F-Droid
UnifiedNlp (no GAPPS) backend that uses OpenBmap.
Address Lookup Backends:
NominatimNlpBackend - UnifiedNlp geocoding provider (MapQuest Nominatim) - F-Droid
UnifiedNlp (no GAPPS) backend that uses MapQuest's Nominatim service (based on OpenStreetMap) for geocoding.
Database Location Backends:
LocalGsmNlpBackend - UnifiedNlp location provider (local GSM database) - F-Droid
UnifiedNlp (no GAPPS) backend that uses local GSM data to resolve user location. Create a database using data from OpenCellId and/or Mozilla Location Services CSV files.
LocalWifiNlpBackend - UnifiedNlp location provider (local WiFi database) - F-Droid
UnifiedNlp (no GAPPS) backend that uses locally acquired WiFi AP data to resolve user location. Consists of two parts sharing a common database. One part passively monitors the GPS. If the GPS has acquired and has a good position accuracy, then the WiFi APs detected by the phone are stored.
Wallpapers
AOSP doesn't include any wallpapers for the Launcher/Home Screen. Here are some links to beautify your N5; all of these images will automatically scale properly on the N5:
Stock Ice Cream Sandwich - Individual files | Full ZIP - 960x853 images
wallpaper_architecture | wallpaper_bubblegum | wallpaper_canyon | wallpaper_chroma
wallpaper_escape | wallpaper_fiber | wallpaper_fidelity | wallpaper_flora
wallpaper_kepler | wallpaper_leaf | wallpaper_noir | wallpaper_outofthebox
Stock Jellybean - Individual files | Full ZIP - 1440x1280 images
wallpaper_01 | wallpaper_02 | wallpaper_03 | wallpaper_04
wallpaper_05 | wallpaper_08 | wallpaper_09 | wallpaper_10
wallpaper_11 | wallpaper_12
Stock Kitkat - Adjusted - Individual files | Full ZIP - Scaled to 1920 pixels high
default_wallpaper | wallpaper_15
wallpaper_16 | wallpaper_17 | wallpaper_19 | wallpaper_20
wallpaper_22 | wallpaper_50 | wallpaper_51
Stock Lollipop - Adjusted - Individual files | Full ZIP - Scaled to 1920 pixels high
wp_arc_001 | wp_arc_003 | wp_arc_004 | wp_geo_1243
wp_geo_1557 | wp_geo_2102 | wp_geo_2167
wp_geo_2170 | wp_geo_2278 | wp_paper_001
Stock Marshmallow - Adjusted - Individual files | Full ZIP - Scaled to 1920 pixels high
wallpaper-kleiner-google-blue | wallpaper-kleiner-google-red | wp_001
wp_002 | wp_003 | wp_004 | wp_005
wp_006 | wp_007 | wp_008
wp_009
Stock Nougat - Adjusted - Individual files | Full ZIP - Scaled to 1920 pixels high
wallpaper-001 | wallpaper-002 | wallpaper-003 | wallpaper-004
wallpaper-005
Stock Oreo - Adjusted - Individual files - Scaled to 1920 pixels high. Only one image at this time.
Nitrogen OS - Individual files | Full ZIP - 2160x1920 images downloaded from HERE - Simply stunning
nos_01 | nos_02 | nos_03 | nos_04
nos_05 | nos_06 | nos_07 | nos_08
nos_09 | nos_10 | nos_11 | nos_12
nos_13 | nos_14 | nos_15 | nos_16
nos_17 | nos_18 | nos_19 | nos_20
nos_21 | nos_22 | nos_23 | nos_24
Post #4 reserved.
Post #5 for me
Glad to see you sharing your job !
All options you propose, I do them after installation of Untouched with flashing zips and exposed. I think this rom could be my daily rom for now.
Bye bye Untouched, hello Almost ! :laugh:
And I make a suggestion !
Build a AOSP kernel with k-exec patch for MultiRom users !
May be it's a little off topic but it could be included in the Almost zip no ?!
BreckZeBoulay said:
Post #5 for me
Glad to see you sharing your job !
All options you propose, I do them after installation of Untouched with flashing zips and exposed. I think this rom could be my daily rom for now.
Bye bye Untouched, hello Almost ! :laugh:
And I make a suggestion !
Build a AOSP kernel with k-exec patch for MultiRom users !
May be it's a little off topic but it could be included in the Almost zip no ?!
Click to expand...
Click to collapse
Please keep Untouched; it needs to exist
I'm guessing that should such a kernel already exist, you've have installed it by now. For humor, I'll take a look if you can show me the patch.
What am I missing, under-the-hood-wise, from this ROM? I'm mostly concerned about security and fixing broken things.
Are there items missing from the FAQ?
@androcraze thanks for this great ROM but pls add screenshots.
Barbiox Dogg said:
@androcraze thanks for this great ROM but pls add screenshots.
Click to expand...
Click to collapse
It's Vanilla AOSP!
OK, I'll see what I can do. A screenshot of what? Apps? Desktop? What items do you think will visually give more info about this ROM?
Will this be moving up to 7.0 build soon?
cell2011 said:
Will this be moving up to 7.0 build soon?
Click to expand...
Click to collapse
Soon? No. Please read the FAQ.
EDIT: I'm hoping that I can start something with 7.0 soon, but despite building and patching things, I'm not a "coder". At this point, I'm not seeing a detailed, basic list of things required get get AOSP Nougat going on the N5. Viewing git repos (for those developers that actually bother to post changes) is a cluttered mess, without much explanation about why a commit was included.
Great job..
BreckZeBoulay said:
And I make a suggestion !
Build a AOSP kernel with k-exec patch for MultiRom users !
May be it's a little off topic but it could be included in the Almost zip no ?!
Click to expand...
Click to collapse
I see the MultiROM patch and what it's for.... Do other developers make a kernel that works with Untouched and AlmostVanilla ROMs that supports MultiROM?
Right now, building a kernel looks do-able (I used to do it under Linux, and instructions for the N5 look straightforward). I wouldn't mind adding patches to change the scheduler from cfq to deadline, and drop the CPU minimum speed; it would get rid of an app that I have to install every time to do just that.
What's the advantage of including MultiROM support with this ROM vice flashing another kernel (other than the extra flashing step)?
androcraze said:
I see the MultiROM patch and what it's for....
Do other developers make a kernel that works with Untouched and AlmostVanilla ROMs that supports MultiROM?
What's the advantage of including MultiROM support with this ROM vice flashing another kernel (other than the extra flashing step)?
Click to expand...
Click to collapse
Just for information :
http://forum.xda-developers.com/google-nexus-5/orig-development/mod-multirom-v24-t2571011
EX, Blue spark, Franco and may be others...
Just to have a stock AOSP kernel up to date.
At this time, I use EX because I need a kernel with k-exec patch and up to date.
But a stock kernel (with patch) is enough.
Anyway, it's not a priority at all.
---------- Post added at 08:32 AM ---------- Previous post was at 08:31 AM ----------
androcraze said:
OK, I'll see what I can do. A screenshot of what? Apps? Desktop? What items do you think will visually give more info about this ROM?
Click to expand...
Click to collapse
Take the screenshots of Untouched
And your paint shoped screenshots for System tuner are uglyyyyyy
BreckZeBoulay said:
Just for information :
http://forum.xda-developers.com/google-nexus-5/orig-development/mod-multirom-v24-t2571011
EX, Blue spark, Franco and may be others...
Just to have a stock AOSP kernel up to date.
At this time, I use EX because I need a kernel with k-exec patch and up to date.
But a stock kernel (with patch) is enough.
Anyway, it's not a priority at all.
---------- Post added at 08:32 AM ---------- Previous post was at 08:31 AM ----------
Take the screenshots of Untouched
And your paint shoped screenshots for System tuner are uglyyyyyy
Click to expand...
Click to collapse
I'll take a look at the MultiROM patch. If it won't affect users in any way (other than the ability to use MultiROM), then it might be worthwhile.
I like my paint-shopped images; they convey the exact message that I wanted them to I was actually more worried about the file size and image dimensions than artistry. I'll have to make newer ones when I get a chance.
I'll get some better screen shots.
androcraze said:
I'll get some better screen shots.
Click to expand...
Click to collapse
Because you are my friend of AOSP :
https://drive.google.com/file/d/0B02Btet3um2pd0tleDgyWjZ4T00/view?usp=sharing
(if you are interested )
Tell me when I can remove it.
BreckZeBoulay said:
Because you are my friend of AOSP :
https://drive.google.com/file/d/0B02Btet3um2pd0tleDgyWjZ4T00/view?usp=sharing
(if you are interested )
Tell me when I can remove it.
Click to expand...
Click to collapse
Got 'em!
Yeah, they look a LITTLE better.... Not that home-made, I-was-busy-so-I-had-my-kid-make-them feel, but I'll struggle with them.
Thanks
pls add screenshots.
tiixman said:
pls add screenshots.
Click to expand...
Click to collapse
Will do this evening. @BreckZeBoulay was kind enough to help with creating them. I just need some time back at my desktop to play.
Today's Material Icon Day!
Yes, I have some screenshots included.
Added a new build with Material icons for Dialer, Calendar, QuickSearchBox, Music, and Gallery.
What do you think?
Man, you should've mentioned your ROM restores the stock system recovery...
Related
The thread is closed because in the last few months there is no news about rom or any work for s3 neo, there aren't developers who want to deal with our device. The thread for the moment will remain closed and will be reopened when there are new activities from other developers.
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CHANGELOGS are in a second post. You can see the attual,old and future changelogs for every info of this thread
v1.4.3 TELEGRAM CHANNEL about this thread for news and updates
*******************************************************
hello to all the users of xda I decided to simplify the search of the most popular apps on custom rom of our beloved galaxy s3 neo. First of all, I want to bring an alternative camera app:
The CyanogenMod is a popular Rom by alternative users, one of the cons of this rom is THE CAMERA. Surfing the Internet (randomly) I found a camera that runs on many CyanogenMod (lollipop, 12 / 12.1), is very stable and has many features and settings than the traditional camera (i google that plug in almost any CyanogenMod ) which is very little we used because we can not customize our photos. the discouraged people use cameras on the play store type "retrica" or "Snapchat" with several filters (that some even change daily).
if you are users who just want to do simple photo, but you can easily use this camera:
CAMERA CYANOGENMOD:
Screenshot Fotocamera CM:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This camera works only for CyanogenMod and based them. another rom (exapmple motion rom) don't work (crash,bug ecc...)
v1.1.1: updated version v2.0.005 from previous v2.0.004. See the changelogs for more info and details
CameraMX v4.1.000:
I found in play store a new type of camera compatible with any cyanogenmod and i think also rom based on motion rom (also stock rom), you can install and use it as a simple app very easily. compared to the previous issued for Rom only based on CyanogenMod, this camera has more features; you can make animated photos (also in gif format), you can apply filters and various changes either to the latest photos taken both photos in every corner of your personal gallery
DOWNLOAD LINK from play store direclty always updated
Screenshot CameraMX:
FM RADIO APP:
following the various threads of various xda here, I noticed that often look for a radio app that will work on your rom because maybe one you have installed is not working properly, or is not installed by the developer.
for sure if you have the original ROM (stock) you have the radio app provided by samsung but on other custom rom .... rom is based on cm and Rom based on motion ROM (or other) I have in almost every case that for you!
CYANOGENMOD (and rom based on them):
some build of CyanogenMod 12 and 12.1 were also given of the fm radio app (stable and functioning) other builds have not received their own, do not know why (I've tried several of 12 cm / 12.1).
in this case you have two possibilities:
- Flash a zip file containing the FM radio app created specifically for Rom cm
- Install one of the two app "spirit radio" you will find in "attached files"
MOTION ROM (and rom based on them):
for the moment as I know, there's only one way to install the app of fm radio and have it running fairly stable, by installing one of the two apps spirit2 or fm radyo (Always spirit 2 but in material design)
They are very simple to use, install as simple apk and when you open it, you just have to grant permissions, and you can now listen the radio station in your area. that's all:laugh:
pros and cons of each radio app:
CYANOGENMOD RADIO APP:
cyanogenmod is very stable and work successfully.It is an app that was written well enough without this many CyanogenMod ROM's could not get the FM radio. strongly recommend it for those who have a rom based on it (remix ressurection, blisspop ...)
Screenshot cyanogenmod radio app:
PROS:
records in high quality and you can automatically reply with the recorded time of your choice
for many countries can put their own frequency band on the settings
the upper right corner you have two choices to listen to the radio with headphones or with the speaker
CONS:
every time you change the radio band, preset radio stations will be reset automatically (I do not know if it's a bug)
the radio scan is sometimes too sensitive (only a few times, it is very rare)
MOTION ROM (or based on theme):
the motion Rom are rom mainly created to bring the features and apps in a rom a very nice phone like the Galaxy s5 (TW Motion Rom), the galaxy s6 (aditya, sammy ...) or the last galaxy s7 ( project lucky). some have entered the fm radio, others do not. on the thread of each rom there are users who share their app radio or give advice on which one to use.
"SPIRIT2":
it is a common alternative radio app when you have the radio in the rom and the developer he has not created a. also it works for Rom based cm, as the app works well enough, I recommend
Screenshot spirit2:
PROS:
work on every motion rom based on them and work also on some cm rom
shows the power of the radio signal in the upper left in Dbm measure
in the past for some old motorola and xperia models also it served as fm transmitter
you can see the station you are listening to and change it from lock screen
CONS:
radio band only limited in two categories EU or US
has some settings that are not supported on s3 neo for hardware incompatibility (example transmit radio fm)
some app example shazam, when you have the radio on, may not work because the microphone is in use from the app
the app show google advertising (ads) removed on v1.1 (see the changelog)
"FM RADYO"(ever spirit2 but in material desing):
Screenshot Fm radyo:
PROS:
work on every motion rom based on them and work also on some cm rom
material desing
you can see the station you are listening to and change it from lock screen
CONS:
radio band only limited in two categories EU or USA
it has a few settings
if you touch the screen at random, changing radio station (possible bug)
some app example shazam, when you have the radio on, may not work because the microphone is in use from the app(bug, born to spirit2 to transmit really fm radio wave for xperia and motorola models (old device for today)
CHRONUS: new app for weather widget (work very good):
the weather widget are about 4 months in many cm build fails to reach the yahoo server to make the updated data of the weather in their city. this thing I found it boring and I immediately installed this app to get back the same kind of weather widgets present in CyanogenMod but also with more features (need the pro version). I porter the app "chronus" finded on play store because this is really very good (and only) solution to your problem with the weather widget of your cyanogenmod. The bug it's not caused by the ROM but from a server error. This app work also in stock and another rom.
Screenshot chronus:
DOWNLOAD LINK from play store direclty always updated
v1.3.2: CALIBRATE THE BATTERY after flashing new rom (reccomended):
Calibrate the battery it is necessary after flashing a custom rom (also if you reinstall the stock rom). This error it also disapper after a flash of new kernel (or from custom to stock). This problem is caused from the file "batterystats.bin" files present on system. To fix the problem you download the app "battery calibration" from play store and you follow this rules:
descharge your phone. (Attend the battery it is 5-10%)
Plug your phone to the charger (ELETRIC CHARGER: not USB/portable charger/car charger!)
wait until the battery is charged to 100% (don't use the phone while charging for every reason. If you use it, the battery information maybe will be falsified!)
when the battery is recharged full at 100%, wait more 10-15 minutes to be sure that Every cell is fully charged.
now open the app "battery calibration", grant the root permission and click "battery calibration"
now you can unplug the phone.
This problem can be occour if you use a custom battery with high mAh (example 5000 mAh, the original it is 2100 mAh). You fix the problem every with this app following ever this rules.
Screenshot battery calibration:
DOWNLOAD LINK from play store always updated
ROOT-XPOSED FRAMEWORK-BUSYBOX- CAMERA FIX TOOL
In this part of thread you can find the root permission installer, xposed framework file, busy box and fix. I have searched and simplified the search for this material that could be useful for those who may spend a lot of time to search.
ROOT PERMISSION:
You have any problem with ROOT permission after the install? No problem you can install the ROOT permission with a file zip (install only with a custom recovery).
DOWNLOAD root installer recovery v2.45 (zip)
DOWNLOAD root installer recovery v2.78 (zip)
In cyanogenmod ROM based you have installed the ROOT permission. To have root permission go in: settings->system info->click 5-6 times "build number" and automatically you active developer option. Now turn in settings->developer option-> and you search root permission and after in his menu list click "root and ADB". Now you have root permission enabled.
To manage proper the root permission with ever cyanogenmod version (and another custom rom), i recommend to use the app "supersu" available on play store and no another app. It is secure and very stable and you haven't any bug with the custom rom.
NOTE:If you go on settings of supersu, you can use the pro version without buy the pro app or the license, at the end of settings click ENABLE PRO (it's 100% free in official app without install a cracked apk)
DOWNLOAD supersu from play store always updated
XPOSED FRAMEWORK:
FOR CYANOGENMOD 12.1 ONLY
For have xposed framework file on system you download the xposed framework.zip and flash with recovery. After you wipe cache/dalvik cache and reboot. Before flash the xposed framework file, you must install the xposed framework app for download and use the xposed app, without this app you can't use the xposed app (the app don't work)
DOWNLOAD Xposed Installer app (last updated 16/10/16)
DOWNLOAD Xposed Framework file installer (zip)
You are bored of xposed framework? Have any problem or bug with a xposed app and maybe have obtained a bootloop? No problem you flash with recovery this zip file, this file uninstall from your phone the xposed framework and the next reboot you will be able to use the phone and uninstall app than cause bootloop. Thats all
DOWNLOAD Xposed Framework uninstaller (zip)
v1.4.3: XPOSED FRAMEWORK FOR MOTION ROM BASED:
now there is a stable xposed framework for motion rom based (example project lucky) without lag, It is much more stable than the previous Xposed
follow these instructions:
0) if you already have installed xposed you must uninstall your previous xposed framework
download MAGISK v8.zip
download Xposed Framework v87-sdk22-topjohnmwu (systemless).zip
download this Xposed Framework app with systemless support
now after download all file flash via recovery by order magisk and xposed framework topjohnwu.zip. and before reboot you wipe cache/dalvik cache. if you before this xposed you have already installed another xposed, it is not necessary wipe cache/dalvik cache. After reboot you can use your xposed without any problem.
if you want uninstall all this you can uninstall xposed and with this file uninstall magisk
BUSYBOX:
Busybox is necessary for some app example kernel auditor. For install the busybox you download a app from play store, after you allow the ROOT permission and click install. 5-6 seconds and you have the busybox installed on system. After you reboot the phone.
DOWNLOAD BUSYBOX from play store always updated
CAMERA FIX:
Camera in cyanogenmod and another custom ROM don't work in some devices (no stock rom!). You fix the camera that don't work with this fix flashable with recovery. At the next reboot Every camera work very well.
NOTE:after flash the zip before reboot the system you wipe cache/dalvik cache
DOWNLOAD Camera Fix
DOWNLOAD Camera Fix2 (by nikolaa)
**************************************************
DOWNLOAD IN "ATTACHED FILES" OR "LINK":
special camera (app) [v2.0.004]
special camera (app flashable) [v2.0.004]
special camera (app) [v2.0.005]
CameraMX (link play store)
radio fm app cyanogemod (only flashable)
spirit2 (app) [or try spirit2 ads removed (on v1.1)]
fm radyo (app)
chronus (link play store)
battery calibrate (link play store)
root binary file installer (flashable)
Supersu (link play store)
Xposed installer app (app)
Xposed framework file installer - uninstaller (flashable)
Magisk installer and uninstaller (flashable)
Busybox (link play store)
Camera fix (flashable)
INFO:
(app): you can install the app as a normal apk.
(link play store): you can download the app from play store and have always updated the app. Click "DOWNLOAD LINK" you will be redirect automatically to the app
(flashable): the app or file can only be installed with a recovery (cwm, TWRP, Philz ...)
EVERY screenshot i have not selected from the web, I take them myself. If this thread was useful please press the "thanks" buttongood, it costs nothing and is worth so much to me. Screenshots are in Italian but the app use the language used in the system. The app "Spirit2" and "Fm radyo" use only the english language
Solution of custom rom telegram channel for news and updates
THREAD STATUS: CLOSED (4/8/17)
CHANGELOG:
CURRENT VERSION:
Code:
v1.4.3 (5/2/2017):
- first update of year
- added new type of Xposed Framework: this is created mainly for motion rom based and work very well (systemless)
- added magisk v8 installer for use Xposed Framework (Systemless)
- deleted telegram group for give support
- added telegram channel about this thread for news and updates
OLD VERSION:
Code:
v1.0 (1/8/16):
- initial release
- port a alternative camera founded on internet for cyanogenmod
- port the best app radio fm for s3 neo: cm radio fm app, spirit2, fm radyo
v1.1 (2/8/16):
- ads removed from the app "spirit2". There is little chance that they remained. I tried to make the completely offline application
v1.1.1 (3/6/16):
- finded and ported the cm camera v2.0.005. I have tested this version it's stabile and work. ONLY CONS: ISO button removed from the right panel at center (present on v2.0.004)
v1.2.0 (5/8/16):
- ported a new alternative camera (CameraMX v4.1.000) for cyanogenmod rom based (it work also on motion rom based and stock rom) with more features : edit foto, apply a filter, animated foto (also in gif format or video). for momentlyI'me app haven't any bug, it's stabile, and work
- made some changes to the thread and fixed the second screenshot of the app "fm radyo" than in this thread was not shown for an error direct link
v1.2.1 (19/8/16):
-updated the app "CameraMX" to the latest version of google play store (v4.1.102). his previous version (4.1.100) it's removed
-no another updated of the thread or other app/files on it
v1.3.0 (21/8/16):
-ported a new app for a weather widget "CHRONUS" latest version v5.8.0.5 to use the weather. In cm ROM the weather widget can't refrash because there are a problem with the yahoo server and not a problem with the ROM.
-modified thread: show only the screenshot than you choose: click "show the content" to wiew the screenshot than you want see
-modified the changelogs style: click "show the content" to wiew only the changelog than you want see (attual, old and future)
v1.3.1 (22/8/16):
- removed the apk of apps "CameraMX" and "Chronus", but added his link of play store. you can download always this app, directly from play store always updated.
- small changes of thread
v1.3.2 (24/8/16):
- add fix for calibrate the battery
- renamed the thread in "SOLUTION for custom rom" from "CAMERA-FM RADIO APP-NEW WEATHER WIDGET for custom ROM
v1.4.0 (24/9/16):
- thread reopened (19/9/16)
- add tool in the thread for root the device, install xposed framework, busy box, fix the camera
- fixed some problem with the thread (direct link)
v1.4.1 (13/10/16):
- updated xposed installer app
- fixed all download link of TOOL
- added a second fix for camera
- created a telegram group. If you have any problem or solution, enter in my group
v1.4.2 (23/10/26):
- added a second file of root installer recovery (v2.78)
- updated Xposed Installer app at 16/10/16
NEXT VERSION:
In next version I put what could get coming or update but I do not guarantee anything at 100%
Code:
v1.∆(.../.../...):
* * * * * * * * * * * * * * * * * * * *
- if i found a update o i have a alternative solution, i will update the material.
- / .........if you find another bug you comment and i try to a solution. If you post a new type of this app i metion you in a thread for your good work. THANKS
Thread reopened
Mate can you upload these apps again in a site which supports fast downloading. I am not able to download these.
regards
Edit
Downloaded.
kbhuvi said:
Mate can you upload these apps again in a site which supports fast downloading. I am not able to download these.
regards
Click to expand...
Click to collapse
Hi kbhuvi i tryed now to download the files. At me the files download them in a few seconds. Check your internet connection. if you had some other problem you reply. Regards
Thread reopened by OP request.
emabertax said:
in this period I have not much time to do updates but I will endeavor to make as much as possible
CHANGELOGS are in a second post. You can see the attual,old and future changelogs for every info of this thread
v1.4.3 TELEGRAM CHANNEL about this thread for news and updates
*******************************************************
hello to all the users of xda I decided to simplify the search of the most popular apps on custom rom of our beloved galaxy s3 neo. First of all, I want to bring an alternative camera app:
The CyanogenMod is a popular Rom by alternative users, one of the cons of this rom is THE CAMERA. Surfing the Internet (randomly) I found a camera that runs on many CyanogenMod (lollipop, 12 / 12.1), is very stable and has many features and settings than the traditional camera (i google that plug in almost any CyanogenMod ) which is very little we used because we can not customize our photos. the discouraged people use cameras on the play store type "retrica" or "Snapchat" with several filters (that some even change daily).
if you are users who just want to do simple photo, but you can easily use this camera:
CAMERA CYANOGENMOD:
Screenshot Fotocamera CM:
This camera works only for CyanogenMod and based them. another rom (exapmple motion rom) don't work (crash,bug ecc...)
v1.1.1: updated version v2.0.005 from previous v2.0.004. See the changelogs for more info and details
CameraMX v4.1.000:
I found in play store a new type of camera compatible with any cyanogenmod and i think also rom based on motion rom (also stock rom), you can install and use it as a simple app very easily. compared to the previous issued for Rom only based on CyanogenMod, this camera has more features; you can make animated photos (also in gif format), you can apply filters and various changes either to the latest photos taken both photos in every corner of your personal gallery
DOWNLOAD LINK from play store direclty always updated
Screenshot CameraMX:
FM RADIO APP:
following the various threads of various xda here, I noticed that often look for a radio app that will work on your rom because maybe one you have installed is not working properly, or is not installed by the developer.
for sure if you have the original ROM (stock) you have the radio app provided by samsung but on other custom rom .... rom is based on cm and Rom based on motion ROM (or other) I have in almost every case that for you!
CYANOGENMOD (and rom based on them):
some build of CyanogenMod 12 and 12.1 were also given of the fm radio app (stable and functioning) other builds have not received their own, do not know why (I've tried several of 12 cm / 12.1).
in this case you have two possibilities:
- Flash a zip file containing the FM radio app created specifically for Rom cm
- Install one of the two app "spirit radio" you will find in "attached files"
MOTION ROM (and rom based on them):
for the moment as I know, there's only one way to install the app of fm radio and have it running fairly stable, by installing one of the two apps spirit2 or fm radyo (Always spirit 2 but in material design)
They are very simple to use, install as simple apk and when you open it, you just have to grant permissions, and you can now listen the radio station in your area. that's all:laugh:
pros and cons of each radio app:
CYANOGENMOD RADIO APP:
cyanogenmod is very stable and work successfully.It is an app that was written well enough without this many CyanogenMod ROM's could not get the FM radio. strongly recommend it for those who have a rom based on it (remix ressurection, blisspop ...)
Screenshot cyanogenmod radio app:
PROS:records in high quality and you can automatically reply with the recorded time of your choice
for many countries can put their own frequency band on the settings
the upper right corner you have two choices to listen to the radio with headphones or with the speaker
CONS:every time you change the radio band, preset radio stations will be reset automatically (I do not know if it's a bug)
the radio scan is sometimes too sensitive (only a few times, it is very rare)
MOTION ROM (or based on theme):
the motion Rom are rom mainly created to bring the features and apps in a rom a very nice phone like the Galaxy s5 (TW Motion Rom), the galaxy s6 (aditya, sammy ...) or the last galaxy s7 ( project lucky). some have entered the fm radio, others do not. on the thread of each rom there are users who share their app radio or give advice on which one to use.
"SPIRIT2":
it is a common alternative radio app when you have the radio in the rom and the developer he has not created a. also it works for Rom based cm, as the app works well enough, I recommend
Screenshot spirit2:
PROS:work on every motion rom based on them and work also on some cm rom
shows the power of the radio signal in the upper left in Dbm measure
in the past for some old motorola and xperia models also it served as fm transmitter
you can see the station you are listening to and change it from lock screen
CONS:radio band only limited in two categories EU or US
has some settings that are not supported on s3 neo for hardware incompatibility (example transmit radio fm)
some app example shazam, when you have the radio on, may not work because the microphone is in use from the app
the app show google advertising (ads) removed on v1.1 (see the changelog)
"FM RADYO"(ever spirit2 but in material desing):
Screenshot Fm radyo:
PROS: work on every motion rom based on them and work also on some cm rom
material desing
you can see the station you are listening to and change it from lock screen
CONS: radio band only limited in two categories EU or USA
it has a few settings
if you touch the screen at random, changing radio station (possible bug)
some app example shazam, when you have the radio on, may not work because the microphone is in use from the app(bug, born to spirit2 to transmit really fm radio wave for xperia and motorola models (old device for today)
CHRONUS: new app for weather widget (work very good):
the weather widget are about 4 months in many cm build fails to reach the yahoo server to make the updated data of the weather in their city. this thing I found it boring and I immediately installed this app to get back the same kind of weather widgets present in CyanogenMod but also with more features (need the pro version). I porter the app "chronus" finded on play store because this is really very good (and only) solution to your problem with the weather widget of your cyanogenmod. The bug it's not caused by the ROM but from a server error. This app work also in stock and another rom.
Screenshot chronus:
[/STRIKE] DOWNLOAD LINK from play store direclty always updated
v1.3.2: CALIBRATE THE BATTERY after flashing new rom (reccomended):
Calibrate the battery it is necessary after flashing a custom rom (also if you reinstall the stock rom). This error it also disapper after a flash of new kernel (or from custom to stock). This problem is caused from the file "batterystats.bin" files present on system. To fix the problem you download the app "battery calibration" from play store and you follow this rules:
descharge your phone. (Attend the battery it is 5-10%)
Plug your phone to the charger (ELETRIC CHARGER: not USB/portable charger/car charger!)
wait until the battery is charged to 100% (don't use the phone while charging for every reason. If you use it, the battery information maybe will be falsified!)
when the battery is recharged full at 100%, wait more 10-15 minutes to be sure that Every cell is fully charged.
now open the app "battery calibration", grant the root permission and click "battery calibration"
now you can unplug the phone.
This problem can be occour if you use a custom battery with high mAh (example 5000 mAh, the original it is 2100 mAh). You fix the problem every with this app following ever this rules.
Screenshot battery calibration:
DOWNLOAD LINK from play store always updated
ROOT-XPOSED FRAMEWORK-BUSYBOX- CAMERA FIX TOOL
In this part of thread you can find the root permission installer, xposed framework file, busy box and fix. I have searched and simplified the search for this material that could be useful for those who may spend a lot of time to search.
ROOT PERMISSION:
You have any problem with ROOT permission after the install? No problem you can install the ROOT permission with a file zip (install only with a custom recovery).
DOWNLOAD root installer recovery v2.45 (zip)
DOWNLOAD root installer recovery v2.78 (zip)
In cyanogenmod ROM based you have installed the ROOT permission. To have root permission go in: settings->system info->click 5-6 times "build number" and automatically you active developer option. Now turn in settings->developer option-> and you search root permission and after in his menu list click "root and ADB". Now you have root permission enabled.
To manage proper the root permission with ever cyanogenmod version (and another custom rom), i recommend to use the app "supersu" available on play store and no another app. It is secure and very stable and you haven't any bug with the custom rom.
NOTE:If you go on settings of supersu, you can use the pro version without buy the pro app or the license, at the end of settings click ENABLE PRO (it's 100% free in official app without install a cracked apk)
DOWNLOAD supersu from play store always updated
XPOSED FRAMEWORK:
FOR CYANOGENMOD 12.1 ONLY
For have xposed framework file on system you download the xposed framework.zip and flash with recovery. After you wipe cache/dalvik cache and reboot. Before flash the xposed framework file, you must install the xposed framework app for download and use the xposed app, without this app you can't use the xposed app (the app don't work)
DOWNLOAD Xposed Installer app (last updated 16/10/16)
DOWNLOAD Xposed Framework file installer (zip)
You are bored of xposed framework? Have any problem or bug with a xposed app and maybe have obtained a bootloop? No problem you flash with recovery this zip file, this file uninstall from your phone the xposed framework and the next reboot you will be able to use the phone and uninstall app than cause bootloop. Thats all
DOWNLOAD Xposed Framework uninstaller (zip)
v1.4.3: XPOSED FRAMEWORK FOR MOTION ROM BASED:
now there is a stable xposed framework for motion rom based (example project lucky) without lag, It is much more stable than the previous Xposed
follow these instructions:
0) if you already have installed xposed you must uninstall your previous xposed framework
download MAGISK v8.zip
download Xposed Framework v87-sdk22-topjohnmwu (systemless).zip
download this Xposed Framework app with systemless support
now after download all file flash via recovery by order magisk and xposed framework topjohnwu.zip. and before reboot you wipe cache/dalvik cache. if you before this xposed you have already installed another xposed, it is not necessary wipe cache/dalvik cache. After reboot you can use your xposed without any problem.
if you want uninstall all this you can uninstall xposed and with this file uninstall magisk
BUSYBOX:
Busybox is necessary for some app example kernel auditor. For install the busybox you download a app from play store, after you allow the ROOT permission and click install. 5-6 seconds and you have the busybox installed on system. After you reboot the phone.
DOWNLOAD BUSYBOX from play store always updated
CAMERA FIX:
Camera in cyanogenmod and another custom ROM don't work in some devices (no stock rom!). You fix the camera that don't work with this fix flashable with recovery. At the next reboot Every camera work very well.
NOTE:after flash the zip before reboot the system you wipe cache/dalvik cache
DOWNLOAD Camera Fix
DOWNLOAD Camera Fix2 (by nikolaa)
**************************************************
DOWNLOAD IN "ATTACHED FILES" OR "LINK":
special camera (app) [v2.0.004]
special camera (app flashable) [v2.0.004]
special camera (app) [v2.0.005]
CameraMX (link play store)
radio fm app cyanogemod (only flashable)
spirit2 (app) [or try spirit2 ads removed (on v1.1)]
fm radyo (app)
chronus (link play store)
battery calibrate (link play store)
root binary file installer (flashable)
Supersu (link play store)
Xposed installer app (app)
Xposed framework file installer - uninstaller (flashable)
Magisk installer and uninstaller (flashable)
Busybox (link play store)
Camera fix (flashable)
INFO:
(app): you can install the app as a normal apk.
(link play store): you can download the app from play store and have always updated the app. Click "DOWNLOAD LINK" you will be redirect automatically to the app
(flashable): the app or file can only be installed with a recovery (cwm, TWRP, Philz ...)
EVERY screenshot i have not selected from the web, I take them myself. If this thread was useful please press the "thanks" buttongood, it costs nothing and is worth so much to me. Screenshots are in Italian but the app use the language used in the system. The app "Spirit2" and "Fm radyo" use only the english language
Click to expand...
Click to collapse
Hi, i have made lineageos for my device note4,but the beta sim not work,how can I fix it, something wrong with kernel? Many thanks!:crying:
Thread closed by OP request.
This is LineageOS built from official sources (cm14.1 and lineage-15.0 branches), featuring two patches that allow for Signature Spoofing and Network Location providers to be used outside of /system. These two conditions allow for easy installation of microG and related-services, along with the modular location provider platform UnifiedNlp.
I also include a few other extras (see ROM Features below), and experiment with things every now and then. Suggestions are welcome!
What is microG and UnifiedNlp? microG is a free re-implementation of Google's proprietary apps and libraries. UnifiedNlp serves as a replacement to Google Location Services and helps your device find its location (more info).
Benefits of microG and UnifiedNlp:
FLOSS
Lightweight
Modular
Can run with relatively-limited permissions
Improved device performance and battery life
Lower data usage
Faster GPS locks and better location accuracy
Significantly more control over privacy
No max-brightness bug (related to Google Location Services; when you wake the screen and it goes max-bright for a short period of time)
ROM Features:
Upstream up-to-date LineageOS builds
Location Providers can be installed outside of /system (intended for UnifiedNlp and allows microG to provide that)
Can toggle Signature Spoofing on or off for applications that can use it (intended for microG and FakeStore)
Native 493 DPI (see compatibility notes below)
Steven Black's Unified Hosts File built-in (gambling and fakenews filters)
Various Tweaks
Latest Nougat Version (recommended):
2017/10/31
Latest Oreo Version (testing):
2017/11/02
Older Versions:
Google Drive Archive
Instructions:
Can be found in the 2nd post down or by clicking here
Recommendations and Tips
Can be found in the 3rd post down or by clicking here
Known Issues
Can also be found in the 3rd post down or by clicking here
Reporting Problems and Issues
I'm not too knowledgeable in Android development and likely can't help directly with most ROM, kernel, and/or hardware issues
The best advice I can give is to post issues in this thread and hope others can share a solution, and/or report the issue upstream to LineageOS developers/maintainers if applicable
Changelog:
Nougat/cm14.1 (at the bottom of the page)
Oreo/lineage-15.0 (at the bottom of the page)
LineageOS shamu Changelog
Compatibility Notes:
The latest Nougat/cm14.1 version of this ROM passes SafetyNet (last checked: 2017/10/31)
The latest Oreo/lineage-15.0 version does not pass SafetyNet (last checked: 2017/10/29)
LineageOS and the default kernel support F2FS, however, the unofficial TWRP projects that support F2FS for shamu currently don't support F2FS decryption. Unless you know what you're doing, I suggest using a custom kernel with forced-encryption disabled if you want to have Data and Cache partitions with F2FS
493 DPI is used on this ROM. The default DPI for a Nexus 6 is 560. Some apps from Play Store may not show when the DPI is not set to an expected value. Theoretically, apps acquired from F-Droid and Yalp Store (when spoofing a N6) are not affected by this, but reports about this are welcome (a quick fix is wm density 560)
Other Notes:
This ROM should work fine with GApps, but I don't test this kind of set-up. If you choose not to use microG nor go GApp-less, I recommend using Open GApps
This ROM is signed with my key and the build type is userdebug
I use this ROM daily with microG and primarily to play Pokemon GO and Ingress; I should be able to notice any SafetyNet, location, or other issues quickly but all reports are welcome!
The patches and my notes for compiling (below) should be easily adaptable for any device capable of running LineageOS, or any ROM theoretically (change the Motorola manifest for other non-moto devices or remove it and supply your own vendor blobs if applicable)
Modifications Done:
Notes for Nougat/cm14.1
Notes for Oreo/lineage-15.0
Additional Support:
microG on xda-developers
UnifiedNlp on xda-developers
microG Website
microG Wiki
Other Resources:
How this ROM is built
My Nexus 6 configuration and other notes
Reddit guide for setting up microG + UnifiedNlp
Shadow53's notes on flashable zips for microG and Play Store, Google Cal/Contact sync, and other information
Shadow53's NO GAPPS initiative
XDA:DevDB Information
LineageOS for easy microG + UnifiedNlp, ROM for the Nexus 6
Contributors
espionage724
ROM OS Version: 7.x Nougat
ROM Kernel: Linux 3.10.x
Based On: LineageOS
Version Information
Status: Nightly
Created 2017-07-06
Last Updated 2019-01-06
Instructions
Initial Instructions:
Wipe device (TWRP -> Wipe all partitions and Format Data)
Flash ROM (copy the zip over to the Internal Storage of the N6 over USB)
Format Data and Cache to F2FS (optional; need a supporting TWRP; note you cannot decrypt F2FS-encrypted partitions in TWRP currently)
Flash GApps (optional; DO NOT do this if wanting to use microG)
Flash a custom Kernel (optional)
Flash Magisk (optional)
Reboot to System
Update Instructions:
Boot to TWRP
Flash updated ROM zip
Flash custom kernel (optional; but if you've used a custom kernel before, it'll be replaced with the default LineageOS one when you update; I recommend using the same kernel or an updated version of it)
Reboot to System
Core microG + UnifiedNlp Apps Package
This will provide the microG Services Core, Services Framework Proxy, DroidGuard Helper, NominatimNlpBackend, and MozillaNlpBackend APKs for convenience (these can also be downloaded from F-Droid)
These are the core applications needed to get the most out of microG and can be installed either over adb or just manually installed one-by-one on the phone
You will still need to read the instructions below in order to get things working
F-Droid will update packages as needed; no need to worry if the date on this package appears old
Compatible with both Nougat and Oreo builds
2017/10/31
microG Application Descriptions:
microG Services Core: Core services and UnifiedNlp (required)
microG Services Framework Proxy: Google Cloud Messaging (GCM) support
microG DroidGuard Helper: SafetyNet support
UnifiedNlp Application Descriptions:
NominatimNlpBackend: Looks up location based on geo-data (required)
LocalGsmNlpBackend: Notes cellular towers you connect to and refers to a local database (created from online sources) to determine location
LocalWifiNlpBackend: Scans nearby WiFi APs, links them to GPS coordinates, and stores them in a local database to determine location
Apple UnifiedNlp: Scans nearby WiFi APs and uses Apple's database to determine location
MozillaNlpBackend: Scans nearby WiFi APs and uses Mozilla's database to determine location (less work to set-up than LocalGSM and LocalWifi)
microG + UnifiedNlp Instructions:
Install F-Droid
Enable Unstable Updates (F-Droid Settings -> Expert mode -> Unstable updates; it's currently required to install the latest unstable microG Services Core)
Add the microG repository (visit https://microg.org/download.html)
Install the following: microG Services Core, NominatimNlpBackend, location backend(s) of choice, and other microG applications of choice for additional features (see the above list)
Enable Signature Spoofing for microG Services Core (Settings -> Apps -> ⚙ -> App permissions -> Spoof package signature)
Grant all permissions available for microG Services Core and location backend(s) of choice Settings -> Apps -> (application) -> Permissions)
Open microG Settings and enable desired features (if using Google SafetyNet, you must do ⋮ -> Advanced -> Use official server)
Configure UnifiedNlp Settings (check Nominatim from address lookup backends, and check desired location backend(s) under location backends)
Verify Self-Check has confirmation on all checks (UnifiedNlp being registered in system may require a reboot to start working)
Recommended microG + UnifiedNlp Packages:
Install microG Services Core, microG Services Framework Proxy, microG DroidGuard Helper, NominatimNlpBackend, and MozillaNlpBackend
If you want to run location resolution locally, install LocalGsmNlpBackend and LocalWifiNlpBackend instead of MozillaNlpBackend, or alternatively, install all three and keep MozillaNlpBackend disabled until required
App Store Notes:
You'll likely either want Yalp Store and FakeStore, or legitimate Google Play Store
If you're trying to avoid Google services, Yalp Store + FakeStore is what you'll want
Play Store will likely be wanted if you want a higher chance at being able to use paid apps and IAP (no guarantees; untested)
Play Store needs to be installed as a privileged application to work properly, and also assigns itself high permissions
You can also choose to install Play Store and Yalp Store; note that FakeStore should not be installed at the same time as Play Store though
You can also use any other app store(s) instead of Play Store or Yalp Store or even choose to not install a store at all, but any apps you install that check if Play Store exists will need FakeStore installed still
Yalp Store Application Descriptions:
FakeStore: Fakes the existence of Google Play Store for applications that require it
Yalp Store: Allows downloading and updating of apps from Google Play Store, serves as an alternative to official Google Play Store, and if signed-in with your real Google account, allows for paid-apps to be downloaded; apps that do license checks post-install will fail, and IAP isn't possible currently
Yalp Store Instructions:
Open F-Droid
Install FakeStore and Yalp Store
Enable Signature Spoofing for FakeStore (Settings -> Apps -> ⚙ -> App permissions -> Spoof package signature)
Configure Yalp Store (⋮ -> Settings -> Pretend to be a Nexus 6; this is potentially required to avoid this)
Download desired applications
Enable only updating of applications acquired through Yalp Store (optional; sometimes versions differ from Play Store and F-Droid; ⋮ -> Settings -> Change app white list -> (select apps), and also set the Black or white list of apps for update to Only the chosen apps will be checked for updates)
Play Store Application Description:
Phonesky.apk: This is the name of the Play Store apk; allows for traditional Play Store behavior; apps that do post-install license checks and IAP are personally untested (feedback from anyone who tests this would be awesome)
Play Store Instructions:
Download the latest open_gapps-arm-7.1-pico archive (GitHub or the main site) (use 8.0 for Oreo; untested)
Extract it somewhere temporary
Go into the Core folder and find vending-all.tar.lz
Extract its contents
Go into the vending-all/240-320-480/priv-app/Phonesky folder
Take Phonesky.apk and move it somewhere temporary or just note its location
Reboot your device to Recovery
Mount /system on the Android device and use adb push to copy Phonesky.apk from local storage to /system/priv-app/Phonesky.apk
Reboot to System
Issues, Recommendations, and Tips
Known Issues (Nougat/cm14.1):
PowerHAL errors flood the log when using a custom kernel with mpdecision removed such as FrancoKernel
Known Issues (Oreo/lineage-15.0):
Cannot decrypt storage from TWRP if using Encryption
vndbinder SELinux denial and crash occurs every 5 seconds (should be fixed with 2017/11/01)
Double-tap to wake is unreliable
Security patch level is old (August 5, 2017)
Recommended Apps:
Email: K9 (incompatible with webmail encrypted providers like Tutanota and ProtonMail)
Store: F-Droid, Yalp Store
Calendar and Contacts: DAVdroid (with a self-hosted Radicale server or a provider like Posteo)
Social: AndStatus with Mastodon or GNU social (choose a server or self-host one)
Chat: Conversations (choose a XMPP server or self-host one with something like Prosody)
Browser: Firefox Klar (Klar is on F-Droid and is also known as Focus; both are the same thing)
Weather: Forecastie
Password Database: KeePassDroid
2FA: andOTP
Maps: OsmAnd~
Recommended Settings:
Developer Options -> Disable Mobile data always active (Oreo/lineage-15.0)
Oreo/lineage-15.0 Findings (2017/10/29):
AsteroidOS Sync with a LG G Watch (dory) seems to work fine
A good bit of LineageOS-specific settings are missing (no Caffeine tile, no Expanded Desktop settings, no lockscreen digit scramble)
SELinux is Enforcing by-default
Only one wallpaper is included
When previewing a Ringtone, it starts out super quiet, then goes full volume (full being whatever the Ring volume is set at)
Thanks for the support.... What are some benefits of
"microG and UnifiedNlp" and/or how is different? I read the link about Floss which is really cool.
Sent from my Nexus 6 using Tapatalk
andrewjt19 said:
Thanks for the support.... What are some benefits of
"microG and UnifiedNlp" and/or how is different? I read the link about Floss which is really cool.
Click to expand...
Click to collapse
I notice GPS locks and accuracy seem to be a bit better; I use the LocalGSM and LocalWifi backends.
I particularly like that microG doesn't require a lot of permissions. Plus since I don't entirely use a lot of Google services, I don't need to have them installed or running in the background either.
I also like the better control over location. With the local backends, my location data doesn't have to be sent off to an online server somewhere. I grab a large database for cell towers from OpenCellID and Mozilla, and that has me covered for the GSM backend. And for Wifi, I just scan for access points as I travel around and build my own database. For first-time visits, I have to rely on the GSM backend first, but for return visits, the Wifi backend should work.
And finally, it's also just kind of neat using this kind of set-up I've tried to go without GApps in the past, but ever since I started playing Pokemon GO and Ingress, I didn't like having to lose those games. Plus there was a few apps I wanted from Play Store too. But now, I can be without GApps, and also have PoGO and Ingress, and even more surprisingly, I pass SafetyNet.
New build available; changes include resync with sources, 493 DPI set (I don't believe this will be a problem outside of Play Store app compatibility; in which case, it can be set back to 560 from the Local Terminal), and the target build changed from userdebug to user.
New build: Resync, previously removed default apps are re-added, and now the ROM includes Steven Black's Unified Hosts File built-in with the gambling, fakenews, and porn filters enabled
Interesting.... I may try this out.
For those who don't know, I provide flashable zips that ease the installation process of microG and/or the Play Store. I'm actually the site linked to on that Reddit post (kinda curious who linked to me).
The microG zips should completely check all boxes in the self-check checklist EXCEPT for the one about setting up the UnifiedNlp backends. The zips come with the Mozilla location backend and the Nominatim geocoder backend, I just haven't figured out how to get them enabled yet.
Those who are stuck using Google to sync contacts/calendar have an add-on zip that can be flashed to be able to sync those. Note that, as of last testing, you may need to go into Settings > Apps and manually enable permissions on one or both sync adapters in order to get it to work.
Finally, @espionage724, if it helps any I also provide a standalone PlayStore zip for people who want to install microG as a user app. It is the patched PlayStore from NanoMod that *should* support (in-)app purchases.
Links:
My own No Gapps/microG setup guide: https://shadow53.com/no-gapps/setup-guide/
FAQ for common issues while setting up microG:
https://shadow53.com/no-gapps/faq/
Table displaying alternatives to "all" Google apps:
https://shadow53.com/no-gapps/alternatives/
And the zip installer downloads
https://shadow53.com/no-gapps/downloads/
New build (2017/07/09) available: Resync with sources, and Steven Black's host file now only uses the default lists (removed gambling, fakenews, and porn filters)
Shadow53 said:
Interesting.... I may try this out.
For those who don't know, I provide flashable zips that ease the installation process of microG and/or the Play Store. I'm actually the site linked to on that Reddit post (kinda curious who linked to me).
The microG zips should completely check all boxes in the self-check checklist EXCEPT for the one about setting up the UnifiedNlp backends. The zips come with the Mozilla location backend and the Nominatim geocoder backend, I just haven't figured out how to get them enabled yet.
Those who are stuck using Google to sync contacts/calendar have an add-on zip that can be flashed to be able to sync those. Note that, as of last testing, you may need to go into Settings > Apps and manually enable permissions on one or both sync adapters in order to get it to work.
Finally, @espionage724, if it helps any I also provide a standalone PlayStore zip for people who want to install microG as a user app. It is the patched PlayStore from NanoMod that *should* support (in-)app purchases.
Links:
My own No Gapps/microG setup guide: https://shadow53.com/no-gapps/setup-guide/
FAQ for common issues while setting up microG:
https://shadow53.com/no-gapps/faq/
Table displaying alternatives to "all" Google apps:
https://shadow53.com/no-gapps/alternatives/
And the zip installer downloads
https://shadow53.com/no-gapps/downloads/
Click to expand...
Click to collapse
Thanks for the links and information!
Last Updated 2017-07-09
The Latest Version is not found on google drive.
gmzhouh said:
Last Updated 2017-07-09
The Latest Version is not found on google drive.
Click to expand...
Click to collapse
Thanks; I thought that URL looked like it was missing a bit of text, but it loaded fine for me when I added it at the time.
Fixed the URL in the first post, and it (2017/07/09) can be found here: https://drive.google.com/file/d/0B9CekGWwY1hjMEdhYmJoeGE2TlU/view?usp=sharing
New build (2017/07/11); just a resync from sources
Do I need to use MicroG to pass Safetynet? And do I need to use f2fs?
xNotta said:
Do I need to use MicroG to pass Safetynet? And do I need to use f2fs?
Click to expand...
Click to collapse
I believe you'll need either microG (and DroidGuard) or GApps to pass SafetyNet, otherwise, apps can't check for SafetyNet compatibility (Magisk's test throws an error if I try doing the check without either).
As for F2FS; you don't have to use it. By-default, /data and /cache partitions use ext4 which works fine.
espionage724 said:
I believe you'll need either microG (and DroidGuard) or GApps to pass SafetyNet, otherwise, apps can't check for SafetyNet compatibility (Magisk's test throws an error if I try doing the check without either).
As for F2FS; you don't have to use it. By-default, /data and /cache partitions use ext4 which works fine.
Click to expand...
Click to collapse
Thank you.
I was going to use BeansGApps full to flash gapps.
So, I can just ignore all the MicroG stuff and still pass Safetynet and have a working rom that plays Pokemon go?
I'm not ready to try f2fs yet.
xNotta said:
Thank you.
I was going to use BeansGApps full to flash gapps.
So, I can just ignore all the MicroG stuff and still pass Safetynet and have a working rom that plays Pokemon go?
I'm not ready to try f2fs yet.
Click to expand...
Click to collapse
Yep you can ignore the microG stuff, flash a GApps package, and pass SafetyNet, but if this is your only objective, you can also accomplish this on most other ROMs (including official LineageOS).
On the note of Bean GApps though, unless there was an update, the June Full package is broken. You'll have to use either May's Full package, or June's Mini package. I'd probably just recommend a variant of Open GApps depending on what packages you want.
eh this is great thanks, and thanks the people with microG and UnifiedNlp too. I didn't know anything about these. This is great
I trust that this will work fine for Verizon users?
Christopher8989 said:
eh this is great thanks, and thanks the people with microG and UnifiedNlp too. I didn't know anything about these. This is great
I trust that this will work fine for Verizon users?
Click to expand...
Click to collapse
I believe it should be fine for Verizon users (at least as fine as a regular LineageOS build would be anyway), but I haven't tried it.
New build (2017/07/13): https://drive.google.com/file/d/0B9CekGWwY1hjcWlFX01sRk12MmM/view?usp=sharing
New build (2017/07/16): https://drive.google.com/file/d/0B9CekGWwY1hjYXFyX0o2QWlJRGs/view?usp=sharing
I believe upgrades will be unaffected by this, but for fresh installs, I forgot to set 493 DPI. If you want this (or any other value; replace 493), you can run the following over adb shell while booted in TWRP (can be at any point after you flash the zip but before rebooting into System):
Code:
mount '/system' && sed -i 's/'ro.sf.lcd_density=560'/'ro.sf.lcd_density=493'/g' '/system/build.prop'
Or you can do it after booting into the ROM via normal means:
Code:
wm density 493
Andycar N4 MX ROMOnly for Samsung Note 4 Snapdragon processorBased on the latest N910GDTS1DQH2 from Samsung
“If you respect your time as we do, come with us for something fast and lightweight.
We even do it without losing stock TW ROMs functionality, enhancing it in a way!”
Code:
***N4 MX ROM was tested by me before this release.
But I hold no responsibility for the thermonuclear war, failed alarm sounds on your phone or any of your files lost.
The decision to make mods to your for is made by YOU, not me.
Introduction
I thought it might be good to demonstrate my concept, which is:
Odexed custom ROM (the first TW MM ROM of this kind, to my best knowledge)
Very fast initial load (no ART cache building, so less than one minute boot time)
Embedded signature spoofing (switchable)
SafenyNet Pass and Magisk out-of-the-box
Every system app updated, including the latest Google apps
Can be switched microG instead of gapps (with Contacts/Calendar sync)
Some Multi-dpi system apps included (SamsungCamera3, Contacts - thanks to HardRock83)
And finally it comes with RAM RC6 kernel permissive by Ram121 modified for permissive adb pre-installed
Click to expand...
Click to collapse
Images
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
For more screenshots, please visit this folder - link on yandex drive.
Click to expand...
Click to collapse
Features
What you SHOULD expect from this ROM:
Odexed custom MM (6.0.1) TW ROM – pre-optimized for speed + max. storage space.
Original WHITE theme enabled by default.
VoLTE works by default from CSC profiles in some countries.
FingerPrint register and unlocking FP works by default.
Knox 0x0 (magisk patch); Official SysScope Status; SafetyNet Pass
Android Pay will work out of the box
Switchable SystemUI styles due tothe ROM Manager for Note 4 by Robert CM.
Debloated fully: if you need some app, you can install it from Play Market
Gapps by default, can be switched to microG(for those users, who want minimal microG functionality)
Click to expand...
Click to collapse
Installation instructions
Check your bootloader and modem version. Best of all N910GDTS1DQH2 (or at least N910GDTU1DQL1) or N910FXXU1DQL2 are required (links below).
Flash ROM in recovery. Magisk, busybox and Ram kernel will be installed automatically.
I don't guarantee correct operation of this ROM with dirty flashing, but you can try it
The ROM is Multi-CSC "out-of-the-box" due to the advanced install "DevBase" installation system by Alexndr
CSC of your phone model will be flashed automatically (for details, see in the link)
Reboot device. First boot usually takes about one minute.
Set up clocks, potato battery, other status bar goodies in ROMControl app by Robert CM.
(OPTIONAL) Open «Developement settings» (you can enable them in Settings- About device- tap 7 times on the ROM version).
(OPTIONAL) Under «Developement settings», scroll to the very bottom, «signature spoofing» should be enabled.
(OPTIONAL) (microG only)In MigroG settings, Device Registration and "Google Cloud Messaging" should be enabled
(this can be switched off after Google Account setup, if required)
Setup Google account normally. In some cases, wiping data of Play Store may be needed after Google Account was set.
(OPTIONAL) Enable UnifieldNlp (Network Location providers) in GPS settings. (microG only)
If you decide to switch to stock kernel, you can do it by flashing the stock kernel from one of the links below.
Click to expand...
Click to collapse
Changelog
MX N4 1.3 (27th of December 2018) - 5th public release version
- Based on the latest N910GDTS1DQH2 firmware from Samsung
- Once again , reworked te internal reodexing system and system apk's. (boots in less than 1 min after the clean flash)
- Built install zip using the new advanced "DevBase" system.img installation system by Alexndr
- Multi-CSC (regions: ACR,AFG,AFR,ALE,ARO,ATO,AUT,BAL,BTU,CAC,CAM,CAU,CDR,CHO,COM,COO,CPW,CRC,CTP,CTU,CYO,DBT,ECT,EGY,EON,ETL,EUR,GLB,H3G,ILO,ITV,KEN,KOR,KSA,LEB,LUX,MAT,MEO,MET,MID,MRU,MTZ,MWD,NEE,ORX,PAK,PCI,PCW,PEO,PET,PGU,PHE,PHN,ROM,SEB,SEE,SER,SIO,SKZ,SMA,TCE,TDR,THL,THR,TPA,TPD,TPH,TTT,TUR,UPO,VGR,VIA,XEF,XEH,XEO,XFE,XFM,XFU,XME,XSG,XTC,XTE,XXV,ZTO); (Underlined - experimental VoLTE support)
- Updated Magisk to 8.0
- Switched to grxTouchWizMod instead of TouchWiz. You can use Galaxy Icon Themer by xperiacle to change icons if you wish (screenshot of my desktop with an example of S9 Theme pack is below)
- Fixed a few glitches in Multi-CSC SystemUI (S-View cover window, but not all of them)
MX N4 1.2 (2nd of September 2018) - 4th public release version
- Rebased on the latest N910GTU1DRD1 from Samsung
- Reodexed and resigned each apk in the ROM with my own key
- Added/fixed theme support files: SecThemeChooser2, S8_Dream
- Fixed some glitches in SystemUI
- Added special version of hacked Google Play Market by aerolinru with sig-spoofing (requires sig-spoofing to be active)
- Fixed odd behaviour with Samsung (Galaxy) Store
- Added Spen, Spen Notes, AirCommand by default
- Changed magisk version to v17 (SafetyNet passes again)
MX N4 1.0 (22nd of April 2018) - 2nd public release version
- Added theme support files: SecThemeChooser2, S8_Dream, Oreny
- Added SPrintSpooler6
- Updated Google Play Store to version 9.7.11-all [0] [PR] 193079539
- Updated Google Play services to version 12.5.29 (040300-192802242)
- Updated Game Optimizing Service to version 1.2.07.1
- Updated framework-res.apk with some new colors, etc
- Patched forceAuthorized() in com.sec.enterprise.knox.seams (sec_edm.jar) - No more FC in Settings!
- Patched checkForServiceAuthorization() in ServiceKeeper (services.jar) - No more FC in Settings!
- Updated and optimized internal reodex scripts for the whole ROM
- Updated MAGISK to v.16
MX N4 1.0 (10th of February 2018) - 1st public release version
- Patched framework files and odexed the whole ROM
- Added Patched SysScope app to display System Status "official" always
- Added N7 Icons to Settings
- Added Sig-Spoof Patch to Settings
- Added New Icons to the Power Menu
- Added UPSM by adding 3 Emergency* system apps
- Updated WebViewGoogle to the latest version
- Updated Google Play Store to the latest version
- Updated Google Play services for instant apps (FAKE) to v.9999999 (no more "updating..." msg)
- Added widget (Google Search round corners)
- Added ROMControl app by Robert CM from xda-developers
- Fully Based on N910GTU1DQL1 official Samsung sources base with the necessary res and smali edits.
- Ditched microG in favor of full gapps (latest). The microG option will be in addons.
- Added Total Commander
- Added 5-ways reboot plus screenshot, torch and screen recording to the power menu
Additional System APKs
> Signature Spoofing Checker (lanchon.sigspoof.checker) Version: 1.0
SystemUI mods (Thanks to Robert CM):
> AOSP
> Stock Samsung
> S7 MM Style
> S7 Nougat Style
> Hidden Quick Launch Button enabled
> Zero-width notification_side_padding
> System Recents List Background transparent
TODO
> 0.5x transitions of system animations by default
> TO Unlock additional items in the volume panel
> No sound when pressing "Vol+" or "Vol-" buttons (TW_Volume_control_.ogg)
> To provide multi-dpi graphics for S-View cover
TouchWizHome Mods
> 5x6 Apps Grid
Click to expand...
Click to collapse
Downloads
HERE: https://yadi.sk/d/Gfn2PHFioap-dQ
MAIN ROM zip file: Andycar_N4_MX_ROM_N910G_DRH2_v1-3_google.zip
Additional: N910GDTS1DRH2_stock kernel.zip
Additional: BL_modem_apnhlos_N910GDDS1DQA4.tar
Download section (old files, only for reference) is here:
https://forum.xda-developers.com/devdb/project/?id=24936#downloads
Main ROM zip file:
https://forum.xda-developers.com/devdb/project/dl/?id=29203
It is mandatory that you also install the latest DQL1 N910G BL and modem:
https://forum.xda-developers.com/devdb/project/dl/?id=28553
The stock kernel: https://forum.xda-developers.com/devdb/project/dl/?id=28554
CSC for different regions of the world:
INDIA: https://forum.xda-developers.com/devdb/project/dl/?id=28560
RUSSIA & CIS: https://forum.xda-developers.com/devdb/project/dl/?id=28561
EUROPE (N910F) https://forum.xda-developers.com/devdb/project/dl/?id=28562
AUSTRALIA (TEL) https://forum.xda-developers.com/devdb/project/dl/?id=28563
ADD-ONS
- To be done
Click to expand...
Click to collapse
FAQ/TIPS
- Enable "Development settings" by clicking on the "Build number" 7 times in "About device". Signature - spoofing is at the bottom.
- microG GmsCore - lightweight free software clone of Google Play Services (About)
- This ROM comes with Native Signature spoofing. You can switch it ON/OFF in developer settings
- Something to read about Signature Spoofing (LINK)
- Something more to read about microG: (LINK)
- If you want to try this N910F, please use the latest DQL2 BL/modem for N910F, also use CSC_N910F_European.zip
- T.B.D.
Click to expand...
Click to collapse
THANKS
And special thanks to:
- Samsung Electronics for TW 6.0.1 firmware and kernel sources
Thanks to all wonderful people in XDA and 4pda.ru communities!
- Robcore for his support, and great enthusiasm in every little thing
- tdunham for THE GALAXY S5 UNIFIED MODS THREAD, and many others
- sagitt67 from 4pda.ru for his smali and resources editing guides
- MaR-V-iN for his great microG GmsCore - lightweight free software clone of Google Play Services
- mariozawa for Potato Gradient Code and Clock code
- Lanchon for his amazing DexPatcher/HayStack (https://github.com/Lanchon/) to patch framework
- ALEXANDR for his amazing update-binary script that i used to make multi-CSC files.
- All the guys in our Telegram group: Corduroysack, RolloX, and Robcore for continous inspiration.
- JasonRR for supporting my reodexing initiative.
If I forgot somebody, please PM me, and I will add credits
Click to expand...
Click to collapse
XDA:DevDB Information
ANDYCAR MX N4, ROM for the Samsung Galaxy Note 4
Contributors
Andycar
ROM OS Version: 6.0.x Marshmallow
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Check your bootloader and modem version. N910GDTS1DQH2 or N910FXXU1DQL2 is required
Version Information
Status: Beta
Current Beta Version: 1.2
Beta Release Date: 2018-09-02
Created 2018-02-10
Last Updated 2018-12-27
Reserved
Add-ons package
(AROMA SELECTABLE)
link:https://forum.xda-developers.com/devdb/project/dl/?id=28591
Contents:
Accessibility
adblock
AirCommand
AllShare
BabyCrying Detector
BeamingService
Bootanimations (AndroidM, Note7, S7)
ColorBlind
Default System Font choice (Android or Samsung)
Dictionary
DriveMode (Car app)
EasyMode ((Easy launcher and widgets))
Email
emoji (iOS)
FindMyMobile by Samsung
GameTuner
GooglePlayServices (stock Google apps)
HearingAdjust
Kies
LiveWallpaperPicker
Magnifier
MessageApp (Samsung or Google)
MicroG (micro google apps)
MirrorLink (Car app)
MyMagazine (Desktop News app)
NFCSmartcard
OpticalReader
PowerSaving (UPSM launcher and UPSM+ tuner)
QuickConnect
Samsung Fonts
Samsung Push Client
Samsung Galaxy Store
Samsung FileManager 2016
Samsung Service (cloud sync, etc)
Samsung Factory Phone Test
Samsung Browser
Samsung cloud
Samsung SFinder
Samsung SideSync
Samsung SmartManager
SmartRemote
SmartSwitch
SNote
SPenKeeper
SPrint
SVoice
TTSVoices
VideoEditor
VoiceNote
VoLTE
VPN
Weatherwidget
YouTube OG (warning: only apply when signature-spoofing enable)
==================================================
Themes Support and a few themes
LINK in Downloads section
P.S. For better results on high dpi on the home screen, set the grid to 5x5.
==================================================
Other System BLOAT package
(NOT an AROMA zip package, only manual installation)
link:https://yadi.sk/d/eDRgtr6z3SHadp
Contents:
app\TasksProvider\
app\SPlannerWidget_M_OS_UPG_Transparent\
app\SmartClipService\
app\DualClockDigital_MUPG\
app\atfwd\
app\minimode-res\
priv-app\WallpaperCropper\
priv-app\VRSetupWizardStub\
priv-app\TrimApp_phone_light\
priv-app\SharedStorageBackup\
priv-app\SecLiveWallpapersPicker\
priv-app\ResourceManager\
priv-app\OutOfFocusViewer_WQHD_K\
priv-app\MusicCommonUtility_M\
priv-app\MultiWindowTrayService\
priv-app\MagicShot_WQHD_T\
priv-app\LocationWidget_M\
priv-app\KeyguardWallpaperUpdator\
priv-app\FotaAgent\
priv-app\3DTourViewer_WQHD_lightTheme\
==================================================
FOR N910F flash the latest BQL2 bootloader
(https://androidfilehost.com/?fid=746010030569951729)
For N910T, N910W8 flash their respective datafixes and bootloaders
Links for N910T datafix: https://mega.nz/#!qcdnySyB!55DemVnZNSXDGiDFA_Gv4Ftb7Ra1ba0u4_V60fn5mKo
LINK : N910T, N910W, N910V & N910P datafix zip packages by louforgiveno <- these are meant to be used on S7 port ROMs, so you'd be better off editing build.prop manually to your N910(T/W/V/P) model.
To clear things up, Samsung has released software base recently almost at the same time for N910G and N910F devices.
In fact, these two bases are very close to each other.
===============
How to resolve "Triple clock issue"?. DO this:
1. In ROM manager app (Status bar) set up clocks. E.g. I had potato clock centered,while having stock clock disabled.
2. After the second clock will still be present in status bar; reboot!
3. After reboot, only one clock will be there. Enjoy.
Thanks for new rom
This will work on Tmobile N910T ?
Trex888 said:
Thanks for new rom
This will work on Tmobile N910T ?
Click to expand...
Click to collapse
This is only for N910G/F.
Andycar said:
This is only for N910G/F.
Click to expand...
Click to collapse
I flashed with datafix and boot up flawless and simcard mobile data works too.
But why launcher is not changing dpi from 530 to 570 or 640 when i change dpi in rom control ?the rest is changing such as systemui notification panel etc
India csc updating showing error in recovery
good job !
does xposed work with this seamlessly ?
Trex888 said:
I flashed with datafix and boot up flawless and simcard mobile data works too.
But why launcher is not changing dpi from 530 to 570 or 640 when i change dpi in rom control ?the rest is changing such as systemui notification panel etc
Click to expand...
Click to collapse
Oh, nice!
Regarding launcher I'm planning to make it more flexible.
aaki_rocker said:
good job !
does xposed work with this seamlessly ?
Click to expand...
Click to collapse
Thanks!
I haven't tried xposed with my odexed ROMs, but other xda members were getting success on Lollipop odexed custom ROM.
promosh said:
India csc updating showing error in recovery
Click to expand...
Click to collapse
ALL CSС zip files were updated. Thanks!
hi @Andycar !
this rom is really smooth.
just if you could add some "usable" bloat like air command and other stuff which is really required by some users like me as a separate flashable zip.
will report battery life after a few days of testing.
thank you
---------- Post added at 01:11 PM ---------- Previous post was at 01:11 PM ----------
hi @Andycar !
this rom is really smooth.
just if you could add some "usable" bloat like air command and other stuff which is really required by some users like me as a separate flashable zip.
will report battery life after a few days of testing.
thank you
Hi!
Thanks, that's appreciated.
In fact I have all those useful system apk sorted in folders.
Just started making an AROMA installer with those addons, stay tuned.
Thanks OP for this new ROM but before I try it can someone please explain the advantages of the included Kernel above an beyond stock stock one (that I have always tried to use as it tends to be less buggy)?
Aiadi said:
Thanks OP for this new ROM but before I try it can someone please explain the advantages of the included Kernel above an beyond stock stock one (that I have always tried to use as it tends to be less buggy)?
Click to expand...
Click to collapse
RamKernel will allow to pass Safety Net test with magisk, so you'll be able to, say, use Android Pay while keeping root. If you care about this...
Adbd permissive will allow you to run adb shell in permissive root mode always by default.
If you not care about this, you indeed may try the stock Kernel
Hey, i was meaning to try this rom out as i was looking all over the place for a good stock-based rom but i seem to be having problems flashing the modem+bootloader in odin. throws an error if flashing with AP or BL (i assumed AP at first since it's a combo of both). not sure what im doin wrong. i'm trying to flash from lineageos btw (i didnt have problems with flashing modem+bootloader there)
plrusek said:
Hey, i was meaning to try this rom out as i was looking all over the place for a good stock-based rom but i seem to be having problems flashing the modem+bootloader in odin. throws an error if flashing with AP or BL (i assumed AP at first since it's a combo of both). not sure what im doin wrong. i'm trying to flash from lineageos btw (i didnt have problems with flashing modem+bootloader there)
Click to expand...
Click to collapse
when coming from roms other than stock, it is recommended to flash full firmware and then flash stock based custom roms
aaki_rocker said:
when coming from roms other than stock, it is recommended to flash full firmware and then flash stock based custom roms
Click to expand...
Click to collapse
it shouldn't matter what stock i choose, right?
plrusek said:
it shouldn't matter what stock i choose, right?
Click to expand...
Click to collapse
What is your model?
nemesis.sisemen said:
What is your model?
Click to expand...
Click to collapse
SM-N910F, hence why im here. i just downloaded the UK stock rom found on xda and will be flashing it shortly
***
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Wiz *** Pixelize your Galaxy S8
"Extreme debloat: Go where Samsung has never gone before"
*** Development of this ROM has stopped *** (reason: switched to One+ device)
This is an extremely debloated Samsung oreo rom with absolutely minimal Samsung functionality mimicing the look and feel of a Google pixel. The basic apps (dialer, messaging, contacts, gallery, keyboard) are from Google. ROM works on G950F (S8) and G955F (S8+) (I only tested S8 as I do not own an S8+). Should work on SM-950FD as well as reported in https://forum.xda-developers.com/showpost.php?p=75844308&postcount=332. Personally I very much like the Samsung phones/hardware but I am not so fond of the software and bloatware. If you want Samsung stuff, stop reading, press the BACK button on your browser, and use another ROM !!!
Upfront "warning"
This ROM is integrated with (a) the NX kernel and (b) a slightly patched version of Magisk. Flashing another kernel on this ROM might BREAK things. Same holds for Magisk. I always use the latest versions of the kernel / Magisk in the new releases so there is no need to upgrade kernel / Magisk yourself. You have no benefit whatsoever in doing that anyway.
Features
The ROM contains (only) the following Samsung applications: Settings (you can't get rid of this), Camera (because it uses all hardware capabilities of the phone at best); camera patched to use Google Photos as "gallery"; camera can be removed via the googlewiz.config file (see below), Lockscreen & AOD (Always On Display), Fingerprint & iris scanning, Blue light filter (optional), Smartmanager (optional).
Android Oreo 8.0
Google
pixel launcher (https://play.google.com/store/apps/details?id=com.google.android.apps.nexuslauncher) or Nova launcher (https://play.google.com/store/apps/details?id=com.teslacoilsw.launcher)
play services (which can be put into doze mode)
play store (https://play.google.com/store)
gBoard (https://play.google.com/store/apps/details?id=com.google.android.inputmethod.latin) or SwiftKey keyboard (https://play.google.com/store/apps/details?id=com.touchtype.swiftkey)
photos (used as gallery; integrated with camera) [as of v23] (https://play.google.com/store/apps/details?id=com.google.android.apps.photos)
dialer (https://play.google.com/store/apps/details?id=com.google.android.dialer)
contacts (https://play.google.com/store/apps/details?id=com.google.android.contacts)
messaging (https://play.google.com/store/apps/details?id=com.google.android.apps.messaging)
text-to-speech (https://play.google.com/store/apps/details?id=com.google.android.tts)
Google Sans fonts (https://storage.googleapis.com/g-design/static/product-sans-specimen.pdf)
android P emoji (https://arstechnica.com/gadgets/201...ds-on-heres-all-157-new-emoji-some-ui-tweaks/)
pixel boot animation (https://www.youtube.com/watch?v=ooFrL4innVM)
pixel icons in settings, statusbar, quick settings
pixel ringtones, notifications, UI sounds
pixel navbar (with possibility to have black navbar)
camera2 API enabled
PDF viewer from Google
Google optional features & apps (can be configured via googlewiz.config file; see below)
gmail (https://play.google.com/store/apps/details?id=com.google.android.gm)
keep (https://play.google.com/store/apps/details?id=com.google.android.keep)
drive (https://play.google.com/store/apps/details?id=com.google.android.apps.docs)
maps (https://play.google.com/store/apps/details?id=com.google.android.apps.maps)
chrome (https://play.google.com/store/apps/details?id=com.android.chrome)
clock (with Spotify integration) (https://play.google.com/store/apps/details?id=com.google.android.deskclock)
calendar (https://play.google.com/store/apps/details?id=com.google.android.calendar)
calculator (https://play.google.com/store/apps/details?id=com.google.android.calculator)
files go (https://play.google.com/store/apps/details?id=com.google.android.apps.nbu.files)
search app integrated with Nova search bar (https://www.google.com/search/about/)
assistant (https://www.apkmirror.com/apk/google-inc/google-assistant/) (only works if language = English)
tasks (https://play.google.com/store/apps/details?id=com.google.android.apps.tasks)
datally (https://datally.google.com/)
translate (https://play.google.com/store/apps/details?id=com.google.android.apps.translate)
earth (https://play.google.com/store/apps/details?id=com.google.earth)
trips (https://play.google.com/store/apps/details?id=com.google.android.apps.travel.onthego)
fit (https://play.google.com/store/apps/details?id=com.google.android.apps.fitness)
podcasts (https://play.google.com/store/apps/details?id=com.google.android.apps.podcasts)
cloud Printing (and local printing) (https://www.google.com/cloudprint/)
now cards integrated with Nova launcher (see https://forum.xda-developers.com/showpost.php?p=75591011&postcount=4)
lens photo analysis in photos app (only when language = English; read hints and tips section for other languages)
lens app (https://www.apkmirror.com/apk/google-inc/google-lens/)
at a Glance widget (part of Google search app)
news (https://www.apkmirror.com/apk/google-inc/google-news/google-news-5-0-0-release/)
chromecast (aka Google home) (https://play.google.com/store/apps/details?id=com.google.android.apps.chromecast.app)
youtube (https://play.google.com/store/apps/details?id=com.google.android.youtube)
plus (https://play.google.com/store/apps/details?id=com.google.android.apps.plus)
pay (https://play.google.com/store/apps/details?id=com.google.android.apps.walletnfcrel)
pixel icon pack for Nova launcher
pixel wallpapers (download: https://forum.xda-developers.com/showpost.php?p=77020268&postcount=1989)
markup (https://9to5google.com/2018/03/07/android-p-dp1-markup-screenshot-editor/)
measure (https://www.engadget.com/2018/06/22/google-measure-arcore-android-phone/?guccounter=1)
weather (just type "weather" in the google search app; it will offer you to get an icon on the desktop)
music (https://play.google.com/store/apps/details?id=com.google.android.music&rdid=com.google.android.music)
trusted contacts (https://play.google.com/store/apps/details?id=com.google.android.apps.emergencyassist&hl=en)
android auto (Google's car mode) (https://www.android.com/auto/)
snapseed photo editor (https://www.lifewire.com/what-is-snapseed-1616444)
photoscanner (https://play.google.com/store/apps/details?id=com.google.android.apps.photos.scanner&hl=nl)
docs (https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.docs)
slides (https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.slides)
spreadsheets (https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.sheets)
streetview (https://play.google.com/store/apps/details?id=com.google.android.street)
my maps (https://play.google.com/store/apps/details?id=com.google.android.apps.m4b)
musicfx (equalizer) (accessible via Settings > Sound > Sound quality and effects)
google backup
No weird Samsung background services
No need for a Samsung account; only a Google account
Rooted with Magisk (see https://forum.xda-developers.com/apps/magisk)
Magisk manager (see https://forum.xda-developers.com/apps/magisk)
Working Magisk SafetyNet
Configurable installer (no aroma; simple text file) which allows to remove some Google apps if you don't like them (see below) and tweak some options
Auto enablement of overlays at boot time
Know warranty 0x0
Modified build.prop (performance tweaks)
Based on October 2018 security update from Samsung (base G950FXXU4CRJ5)
Configurable BIXBY key (by default mapping to Nova home screen)
Configurable immersive mode (none, hide navbar, hide navbar and statusbar)
MTP (optional)
MMS (optional; some people still seem to use this tech)
Knox and tima removed fully ... no, I really mean FULLY ... also from kernel ramdisk where possible
/etc/init.d and /etc/services.d (in case you want to add custom scripts put them in /sdcard/init.d/)
/omr and /preload mounting removed (if you don't know what this is, don't worry)
ROM does not contain country specific CSCs; all settings generic
Fix lack of voice in Google app when reading answers to a search
NX kernel (see credits below)
Bluetooth aptx
bash shell (with bashrc and bash_aliases in /etc/bash/)
AdAway (optional)
Black nav bar (optional; only useful if you plan to have dark/black themes with Substratum)
BusyBox v1.29.2
Improved dozing & reduced battery consumption in sleep mode
Fast ... very fast ... no useless Samsung background daemons; processes optimized via cgroups ... and many optimization settings and tweaks
Good battery life
OEM unlock on by default (cannot be turned off; will be shown as OFF in Settings => don't worry about this)
Netflix fix
Manage SMS/text messages from your browser (https://messages.android.com/)
Auto cleanup and sqlite DB optimization at boot time
What is NOT in the ROM
I have left out loads of stuff ... mainly because I don't use these features ... and/or they are Samsung specific. Don't ask me to integrate Samsung specific features because I won't: Samstuff stuff (all left out), Live wallpapers, Wear and Gear (but read further below please), Multiwindow, Clearcover, Edge, Docking, DEX, No call recording for now, Samsung dual messenger, VoIP (wifi calling) and VoLTE (but read further below for VoLTE), ...
Telegram
No telegram group; I don't have time for that, so stop asking please.
Bootloaders
See post #2 below; https://forum.xda-developers.com/showpost.php?p=75590991&postcount=2
Changelog
See post #3 below; https://forum.xda-developers.com/showpost.php?p=75591002&postcount=3
Hints & tips
See post #4 below; https://forum.xda-developers.com/showpost.php?p=75591011&postcount=4
(Re)Using this work
Other devs, please feel free to (re)use this for your own work ... I am not asking anything from anybody, no donation, no thanks, no beer ... you don't even have to mention that you (re)use this. We are here on XDA to share and learn from eachother.
Disclaimer
I will try to support questions / feedback. I will not answer questions such as "Can you please add Samsung feature X,Y,Z" ... I have deliberately removed them. If you want Samsung, go and use a Samsung ROM. There are instructions further down on how to create your own variant of the ROM so you can do this yourself if you want to add stuff. I will not answer PMs (don't have time to look at them). I have attached also a bash script (as .txt file). This is the script which I personally use to generate the ROM starting from a standard Samsung system.img. If you are a DEV, you can study this to see how I create this ROM. Again, feel free to (re)use. The usual applies: no warranty, installing this will trip KNOX, install at your own risk, ... I am not responsible for soft or hard bricks. Your phone must have TWRP to install this ROM. If your phone is bricked, your best guess is to try and flash the ORIGINAL Samsung firmware with Odin. Do repeat{ search, read }.
Download (multiple versions):
https://www.androidfilehost.com/?w=files&flid=239365 (up to release v65). Files are called: googlewiz_oreo_vXX.zip.
As of release v66, ROM has been uploaded to mega.nz: see https://mega.nz/#F!WUQ2DYpJ!5l3fVDpoXSdHO8p2IfKCvA
See post #3 for a changelog. Please read it as it may answer some of your questions.
Theming
ROM has no Samsung themestore. Install Substratum (https://play.google.com/store/apps/details?id=projekt.substratum) and a samsung compatible substratum theme (e.g. https://play.google.com/store/apps/details?id=com.brit.swiftblack.layers)
Splash screen
To make your phone more "GoogleWiz", try the google splash screen. See: https://forum.xda-developers.com/showpost.php?p=75714051&postcount=189
WARNING: ONLY FOR G950F !!! Do *NOT* flash this on other models; your phone WILL go into soft brick - I warned you.
Other stuff
For heart rate / stress monitor: install SHealth (https://play.google.com/store/apps/details?id=com.sec.android.app.shealth) from the play store.
Known bugs / issues
"Game" battery saving mode is not working (due to Samsung stuff removed from ROM); will FC settings app
Device encryption will not work (as it relies on Samsung KNOX which has been fully removed
Android for work will not function
Advanced functions in settings: most of them don't work
On a clean install, first screen might show a Magisk error, just ignore it
Installation
Make sure first that "OEM unlock" is enabled in your developer settings (if you don't understand what this means then this ROM is not for you).
Make sure to flash the Oreo bootloader (see post #2) if you come from Nougat.
- click WIPE and then FORMAT DATA (do this ONCE when you come from Nougat) => then reboot into TWRP
- Wipe /system, /data and /cache (for a normal clean install)
- put the googlewiz_oreo_vXX.zip onto your /sdcard
- wipe data, system, dalvik, cache
- flash bootloader (if you come from Nougat)
- flash ROM
- reboot
Please mention the device and release you are on when reporting bugs.
ROM updates
The ROM only touches the /system partition. ROM does not update bootloader, nor modem (baseband). Most ROM updates can be dirty flashed except when the release notes mention clearly that you need to do a clean install (in that case, wipe your /data). Instructions for flashing a modem can be found in: https://forum.xda-developers.com/showpost.php?p=77759235&postcount=3196
Adblocking
For adblocking without AdAway (everywhere: both in browser and apps) do the following:
> adb shell
# su
# hl
The "hl" command will replace the hosts file with a huge (> 200000) hosts which refer to IP address 0.0.0.0; this will make ads go away in your browser and applications. No ad-blocking app is required. If you want to restore the original hosts file, use the command "hs" (ads will come back then). The "hl" command is agressive; some web pages or apps might not work properly. To use a less aggressive ad blocking use the command "hm" (this uses a hosts file similar to adaway without having the need to install that app).
/etc/init.d, /etc/services.d and /sdcard/init.d
/etc/init.d scripts are running once /data is mounted; do not rely on any Android functionality in those scripts as Android is not fully initialized when these scripts run. Use /etc/services.d if you want to rely on Android functionality; scripts in /etc/services.d are ran later than /etc/init.d; see post https://forum.xda-developers.com/showpost.php?p=76901055&postcount=1771 for more details. You can put user scripts on /sdcard/init.d/; they will be ran last.
Writeable /system partition
Use "sysrw" and "sysro" in an adb shell to make the /system partition writeable/read-only; note that Magik's safeynet will NOT work if the /system partition is writeable (this is normal behavior).
Building a variant of this ROM
Attached (linux; bash) script gives you a clue of how the ROM was created starting from a stock system.img ext4 image file from Samsung.
Kernel
This ROM uses NX kernel and optimizations tightly coupled to it. Installing another kernel may have all sorts of side effects which I will not support you with. You have been warned.
Screenshots
Screenshots in attach. Black screenshots taken from my own fully installed phone, after theming with substratum (https://play.google.com/store/apps/details?id=projekt.substratum) and using the following theme: https://play.google.com/store/apps/details?id=com.brit.swiftblack.layers. All launcher screenshots (except the last one) are with the Nova launcher. Last screenshot shows the Google Pixel launcher.
Configurable installer
You can remove apps from the ROM and do some customizations. Create a simple text file with the content below. The file must be called "googlewiz.config". You should push it via adb onto /sdcard BEFORE installation. Then install the ROM via TWRP. The installer will read this file and remove the google apps which have "=0". There should be no spaces, i.e. "clock=1" instead of "clock = 1". I think you get the idea. It's not rocket science. If the file is not on /sdcard, everything remains in the ROM (with Nova as launcher and Swiftkey as keyboard). This config mechanis is very simple, avoids aroma, and still allows a bit of configuration. So as an absolute minimum (assuming you remove all above) you will have in your app drawer: Messaging, Camera, Contacts, Photos, Settings, Magisk, Nova Google Companion, Nova settings, Play Store, Swiftkey, Phone. (Nova Google companion icon will go away once clicked and OK).
Code:
clock=1
calendar=0
filesgo=1
search=0
assistant=1
print=0
calculator=1
mtp=0
bluelightfilter=0
smartmanager=1
googlenow=0
launcher=nova
keyboard=swiftkey
wallpapers=0
iconpack=0
adaway=0
news=1
tasks=0
blacknavbar=1
chromecast=1
markup=0
immersive=full
lens=1
icons=samsung
camera=1
photos=1
mms=0
measure=1
gmail=0
keep=1
drive=0
maps=0
datally=0
chrome=1
youtube=0
plus=1
trips=1
translate=1
earth=1
fit=0
podcasts=0
music=0
trustedcontacts=1
auto=0
snapseed=1
photoscanner=0
docs=1
slides=0
sheets=1
streetview=0
mymaps=1
musicfx=0
googlebackup=1
clock = Google clock; calendar = Google calendar; filesgo = Google files Go; search = Google app; assistant = Google Assistant; print = Google cloudprinter and printing framework; calculator = Google calculator; mtp = MTP connectivity to PC; bluelightfilter = Blue Light Filter; smartmanager = Device Maintenance (in Settings); googlenow = Nova companion app for Google now cards; wallpapers = Google wallpaper app; iconpack = Google pixel icon pack; adaway = Adaway; news = Google News; tasks = Google Tasks; blacknavbar = Black Nav Bar (not installed by default; set to 1 if you want it); chromecast = Google home (not installed by default; set to 1 if you want it); markup = Google markup extension to Google photos; lens = Google lens app; camera = Samsung camera; photos = Google photos; mms = MMS; measure = Google measure; gmail = Google gmail; drive = Google drive; keep = Google keep; maps = Google maps; chrome = Google chrome browser; youtube = Google youtube; plus = Google+; earth = Google earth; translate = Google translate; trips = Google trips; fit = Google fit; podcasts = Google podcasts; music = Google music; trustedcontacts = Google trusted contacts; auto = Android car mode; snapseed = Google photo editor; photoscanner = Google photo scanner; docs/slides/sheets = Google office; streetview = Google street view; mymaps = Google my maps; musicfx = Google equalizer; googlebackup = Google backup
For Nova launcher (default); put "launcher=nova" in the config file. For Google Pixel launcher, put "launcher=pixel" in the config file.
For Swiftkey keyboard (default); put "keyboard=swiftkey" in the config file. For Google Gboard, put "keyboard=gboard" in the config file.
Switching between keyboards across releases may cause keyboard not to work properly when you dirty flash; if you decide to switch keyboard across 2 releases, do a clean flash.
The pixel icon pack only works with Nova launcher. If you use the Pixel launcher the icon pack will not be installed (even if you have "iconpack=1" in the configuration).
Screen usage option: "immersive". Possible values are "none", "navbar" and "full". "none" means that both navbar and statusbar are always visible. "navbar" means that the navbar is not visible (swipe from the bottom of the screen to display the navbar). "full" means that both navbar AND statusbar are invisible (swipe from the top or bottom of the screen to make them visible).
The ROM uses pixel icons in the settings, statusbar, tiles, navbar; if you (really?) prefer the original Samsung icons, put "icons=samsung" in the googlewiz.config file.
If you want to know how this works, unzip the ROM and look at scripts/simpleconfig.sh. It is a very simple config mechanism which avoids a complex installer with aroma.
Configurable BIXBY key
By default, the BIXBY ket is set to HOME: the nova launcher home screen. You can put a line in googlewiz.config: "bixby=X" with X being one off {HOME, BACK, CAMERA, CONTACTS, MESSAGE, CALL, SEARCH, CALENDAR, APP_SWITCH, SCREENSHOT, ASSISTANT}
example: "bixby=CAMERA" or "bixby=CALENDAR"
If you put "bixby=NONE" the bixby key remains unbound. This should allow 3rd party button remappers to work.
Code:
HOME = Nova launcher home screen
BACK = go one step back (same as back key in navbar)
CAMERA = open camera; once in the camera pressing the bixby key takes a picture
CONTACTS = open Google Contacts app
MESSAGE = open Google Messaging app
CALL = open Google Phone app
SEARCH = perform search in the current application
CALENDAR = open Google Calendar
APP_SWITCH = open screen where you can switch between running apps (same as "recents" key in navbar)
SCREENSHOT = take a screenshot
ASSISTANT = Google assistant (of course will not work if you have "assistant=0" in your googlewiz.config)
NONE = do not bind the bixby key; should allow 3rd party remappers to work
VoLTE
Many people ask for VoLTE. I can't do it properly ... sorry ... not for now ... my provider does NOT support VoLTE ... which means that I cannot test anything. In addition, VoLTE is CSC specific configuration and all CSC config has been currently removed from the ROM. It is tricky to bring this back into the ROM ... especially if I cannot test anything. I would just be working in total darkness. Please understand this. If there is a DEV wiling to help let me know. However, see post: https://forum.xda-developers.com/showpost.php?p=77598885&postcount=2888 and post https://forum.xda-developers.com/showpost.php?p=77597891&postcount=2885, these might give some hints to try and make it work.
Good news: Some people have VoLTE running; see the following posts; thanks to @meldrak and @kuduku
https://forum.xda-developers.com/showpost.php?p=77663720&postcount=2966
https://forum.xda-developers.com/showpost.php?p=77669115&postcount=2984
Android wear and Samsung gear
Android wear is not working. Same point as for VoLTE. I do not own a wear device which means that I cannot test anything. If there is a DEV wiling to help I can explain what to try. Samsung gear is working but you need to flash additional package on top of the ROM; see post https://forum.xda-developers.com/showpost.php?p=76412043&postcount=1102. I have not personally tested this (as I don't own a device); but user zoltain73 tested it (https://forum.xda-developers.com/showpost.php?p=76417301&postcount=1120).
Live wallpapers
No live wallpapers in the ROM. However, if you really want this, flash the package attached to the following post: https://forum.xda-developers.com/showpost.php?p=76887206&postcount=1752
Bluetooth and audio
Some users are reporting bluetooth audio issues with Bose headsets. Enable developer settings and set the bluetooth audio coded to SBC. Check again if audio works.
Google ChromeCast
Screen mirroring to a Google ChromeCast works out of the box. You need to install the Google Home app (put "chromecast=1" in the googlewiz.config file before installing the ROM). If you really(?) want Samsung's mirror link, flash the zip file attached to post https://forum.xda-developers.com/showpost.php?p=77390484&postcount=2610.
Google Pay
Google Pay confirmed working (of course your bank/card has to support it). See https://forum.xda-developers.com/showpost.php?p=78057564&postcount=3716
Credits
topjohnwu for Magisk (https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445)
BSDgeek_Jake for the adblock hosts file MoaAB (https://forum.xda-developers.com/showthread.php?t=1916098)
jayantraj for the pixel boot animation (https://forum.xda-developers.com/ga...-google-pixel-boot-animation-samsung-t3528179)
Noxxxious for the NX Kernel (https://forum.xda-developers.com/ga...ice-development/kernel-nox-kernel-v1-t3721469)
ambasadii for pointing me out the copy/paste fix, thanks a lot man! (https://forum.xda-developers.com/member.php?u=4074799)
Marne Jr. for testing on SM-950FD (https://forum.xda-developers.com/showpost.php?p=75844308&postcount=332)
ohayubaka for the Google pixel icons for settings, statusbar, tiles (https://play.google.com/store/apps/dev?id=8125305976905979352)
zaac for the navbar overlay (https://forum.xda-developers.com/galaxy-s8/themes/theme-systemui-overlays-samsung-t3735167)
Saurabh Gupta for the Google pixel icon pack (https://play.google.com/store/apps/details?id=com.themezilla.pixelui)
Tyler Nymeh for the way to change doze settings (https://www.reddit.com/r/GalaxyNote...tool_comatose_standby_battery_drain_solution/)
amirzaidi for the rootless pixel launcher (https://github.com/amirzaidi/Launcher3)
crossbreeder team for cgroup optimizations (https://forum.xda-developers.com/showthread.php?t=2113150)
Google for the Product Sans fonts (https://storage.googleapis.com/g-design/static/product-sans-specimen.pdf)
Google for the pixel wallpapers and media sounds
XDA:DevDB Information
GoogleWiz, ROM for the Samsung Galaxy S8
Contributors
foobar66
ROM OS Version: 8.x Oreo
Version Information
Status: Stable
Created 2018-03-17
Last Updated <today>
Bootloaders
Before flashing this ROM, please make sure that you first flash the Oreo bootloader (see zip file attached to this post).
If you want to go back from Oreo to Nougat, you must revert to the Nougat bootloader (see zip file attached to this post).
If you accidently flash the wrong bootloader, please do not panic. Nougat ROM will not boot with a Oreo bootloader. Oreo ROM will not boot with a Nougat bootloader. If your device is stuck do the following: Press BIXBY + VOL DOWN + POWER and keep them pressed for about 10 sec. You will see a turkoise screen with a big white "Warning" on top. Press volume down. Immediately press BIXBY + VOL UP + POWER and keep them pressed until your device is back into TWRP. Now flash the proper bootloader. So, it is highly recommended that you put both zip files attached to this post on your /sdcard !!!
Changelog
For older releases ... see attached txt file.
v76 (2018-09-03):
- update: Google photos
- update: Google play services
- update: Google messaging
- update: Google gmail
- update: Google clock
- update: Google app
- update: Google contacts
- update: Google dialer
- update: Google messaging
- update: Google maps
- update: Google gboard
- update: Swiftkey
- update: Samsung AOD
- update: Samsung camera
- update: Magisk manager
- update: Magisk v17 (safetynet should be working again)
- new: Google youtube (put "youtube=0" in googlewiz.config if you don't want it)
- new: Google plus (put "plus=0" in googlewiz.config if you don't want it)
- corrected multiple recurring errors in logcat
v77 (2018-09-06):
- update: Google clock
- update: Google youtube
- update: Google chrome
- update: Google plus
- update: Google photos
- update: Google play store
- update: Google gboard
- update: Google drive
- update: Google app
- update: Google news
- new: Google trips (put "trips=0" in googlewiz.config if you do not want this app)
- new: Google translate (put "translate=0" in googlewiz.config if you do not want this app)
- new: Google earth (put "earth=0" in googlewiz.config if you do not want this app)
- new: Google fit (put "fit=0" in googlewiz.config if you do not want this app)
- new: Google podcasts (put "podcasts=0" in googlewiz.config if you do not want this ap)
- new: Google PDF viewer
- update: Samsung device maintenance
- update: busybox (1.29.2)
- updated 'dss' script updated and now also disables useless activities and knox/tima receivers
- fix Magisk installer re-installing apk to /data/app
v78 (2018-09-10):
- update: Google play store
- update: Google photos
- update: Google youtube
- update: Google fit
- update: Google news
- update: Google chrome
- update: Google plus
- update: Google app
- update: Google trips
- update: Pixel launcher
- update: Samsung camera
- new: Google play music (put "music=0" in googlewiz.config if you don't want this app)
- fix font file issues
- disable gm downloadable fonts provider (otherwise contacts/phone app download their own fonts)
- remove /cpefs filesystem (is empty anyway)
v79 (2018-09-15):
- update: Google drive
- update: Google photos
- update: Google calendar
- update: Google datally
- update: Google chrome
- update: Google play services
- update: Google gmail
- update: Google youtube
- update: Google play store
- update: Google measure
- update: Google app
- update: AOD
- update: Samsung device maintenance
- fix missing Clock2017R.ttf font file & AOD font for clock widget selection
- add device idle control boot script
- further build.prop tweaks
v81 (2018-07-21):
- update: Google webview
- update: Google play services
- update: Google chrome
- update: Google youtube
- update: Google earth
- update: Google play store
- update: Google photos
- update: Google app
- update: Google keep
- update: Google gmail
- update: Swiftkey
- update: Samsung device maintenance
- update: Magisk manager
- changes to camera-feature-v7.xml file
- update: NX kernel R17
v82 (2018-09-28):
- update: Google: drive, lens, news, youtube, chromecast, pixel launcher, calendar, photos, playstore, calculator, ARcore, search app, play services, translate, maps, gboard
- update: Samsung device maintenance
- update: AOD
- update: Magisk 17.2
v83 (2018-10-05):
- update: Google: maps, translate, play store, dialer, messaging, photos, music, plus, youtube, drive, keyboard, drive, play store, calendar, dialer
- update: Swiftkey
- add init.d script for scsi cache control
- trim caches during boot
- disable the lookup logic involved with IO merging requests
- optimize read/write wakeup thresholds
- small wifi optimization
- gps.conf file update
- updates to LS99sysctl script
- moved ramdisk patches into init.d scripts
- extra clean script at boot time
- set swap to ON by default
Previous releases had swap disabled. I have re-enabled it at the cost of a small performance penalty. But apps should be held longer in memory. If you want to disable swap, then put "swap=0" in the googlewiz.config file and reboot.
It should be possible as of this release to install another kernel.
I have only tried with the stock kernel.
After flashing a kernel you will loose root. You must reflash the file Magisk.zip (this is included in the ROM in the directory called "root"). Unzip the ROM zip file and you will see that directory.
v84 (2018-10-13):
- update: Google: calendar, news, youtube, contacts, playstore, app, chromecast, clock, AR core, maps
- update: Pixel icon pack
- update: Samsung device management
- update: Contacts provider
- new: Google trusted contacts
- remove boost script for interactive governor
- some systl settings finetuning
- move overlays to /system/vendor/overlay/
- October security update (base: G950FXXS4CRIA)
v85 (2018-10-18):
- update: Google: earth, play store, contacts, news, chromecast, messaging, keep, youtube, translate, chrome, plus
- a bit of debloat
- update: Swiftkey
- update: Samsung camera
- fix bug with "icons=samsung" not properly deleting overlays
- new base: G950FXXU4CRJ5
v86 (2018-10-22):
- update: Google: play store, messaging, translate, search, play services, webview
- update: Magisk manager 6.0.1
- update: Magisk 17.3
- new: Google auto, Google voice action services
- build.prop updates
- updates to LS99sysctl, LS99cleaner scripts
- improve installation script
- improve script for integrating APKs from /data to /system
v87 (2018-10-28):
- update: Google: music, messaging, play services, datally, chromecast, search, contacts, lens
- new: Google Snapseed, Google Photoscan, Google Docs, Google Slides, Google Sheets, Google Streetview
- update: Swiftkey
- use Google Sans as system font
- Pixel 3 sounds, notifications, ringtones
- enable Google Photos preload feature (from Pixel)
- enable Google Lens in Google Assistant
- fixed 'bixby=NONE' option (was not working in previous releases)
- At boot time the following properties are "reset" from the standard build.prop:
ro.product.model=Pixel 2 XL
ro.product.brand=Google
ro.product.manufacturer=Google
- The following features are set:
<feature name="com.google.android.apps.photos.PIXEL_2018_PR ELOAD" />
<feature name="com.google.preload_photos" />
- Google Photos app will think you are a pixel phone and give unlimited free storage at original quality until 16/01/2021.
v88 (2018-11-04):
- update: Google: search, voice actions, streetview, chromecast, calendar, chrome, lens, youtube, pay, maps, tasks, translate, AR core, calendar provider, gmail, gboard, webview
- improve mechanism for setting bixby key
- disable dialog with safe volume warning (not 100% that this will always work)
- update dss script with additional services to disable
- build.prop changes (remove duplicates and redefines)
- further debloat (allshare and multiwindow libraries + permissions)
- remove empty directories from ROM
v89 (2018-11-09):
- update: Google: streetview, play services, drive, news, cloud print, photos, sheets, docs, slides, gboard, youtube, translate, gmail, keep, AR core
- update: Swiftkey
- optimize all ROM XML files (remove comments, whitespace, empty tags)
- remove applock from advanced settings
- New: Google musicfx
v90 (2018-11-20):
- update: Google: pay, play store, dialer, maps, files, news, dialer, photos, chromecast, calendar, contacts, slides, messaging, play services, youtube, search, plus, trips, chrome
- update: Samsung device maintenance
- update: Samsung camera (v8), CMHprovider
- update: dss script for disabling services
- new: PixelBridge app (for Rootless Pixel Launcher left swipe)
- camera supports taking selfie by touching heart rate sensor (enable in camera settings)
- change in build.prop for Google Backup to work
- add /system/bin/bmgr to interact with backup manager via cmd line
- fixes for Google Backup
- pixel style navbar instead of AOSP
- November security update (G950FOXM4CRK1)
v91 (2018-12-23):
- December security update
- NX kernel R18
- Various Google app updates
Miscellaneous, Hints & Tips
Speed up Nova launcher
Open Nova settings, Look & Feel, then set "Scroll speed" and "Animation speed" to "Faster than light".
Google Assistant
Google assistant only works with English/UK as main language and you must have internet connection.
Google now cards (see attached picture)
Swipe from home screen left border to display Google card feed (enable in Nova settings > Integrations > Google Now Page; also open the Google search app to initialize it). After a reboot, the first swipe will show an empty screen, just tick on the search bar to make the cards appear.
Google Lens photo analysis
Google Lens photo analysis is supported from the photos app but only if your language is set to English. Read this: https://support.google.com/photos/answer/7539151?hl=en&co=GENIE.Platform=Android. To make lens work with other languages, look at post https://forum.xda-developers.com/showpost.php?p=76528084&postcount=1280
Google Lens app
As of v53 the ROM also support early versions of the Google Lens app; I have the impression it is not 100% stable. I guess Google is rolling it out to get user feedback so that the AI machine learning algorithms can be trained with more and better data.
Google cloud printing
The Google cloud printer is included in the ROM; this means - for example - that applications which support print function you can print a PDF file onto Google drive.
Google markup
Google markup is a small photo editor which allows you to draw on a photo. To use it, open the photos app, click on a photo, then on the menu with 3 dots in the upper right corner and "Edit with markup". It's handy for marking something on a screenshot. Note that the share button in the markup app does not work. This comes from Android P developer preview 2.
Hi,bro
If I uninstall google play service And flash xposed with minirom v11,it will boot loop.
maybetheydont said:
Hi,bro
If I uninstall google play service And flash xposed with minirom v11,it will boot loop.
Click to expand...
Click to collapse
Why are you posting this now ... I am still preparing the notes of post#1,#2,#3 ... there is nothing here yet ...
Post in the right thread.
foobar66 said:
Why are you posting this now ... I am still preparing the notes of post#1,#2,#3 ... there is nothing here yet ...
Post in the right thread.
Click to expand...
Click to collapse
It is my false.Sorry for interrupting you
foobar66 said:
Bootloaders
Before flashing this ROM, please make sure that you first flash the Oreo bootloader (see zip file attached to this post).
If you want to go back from Oreo to Nougat, you must revert to the Nougat bootloader (see zip file attached to this post).
If you accidently flash the wrong bootloader, please do not panic.
Nougat ROM will not boot with a Oreo bootloader.
Oreo ROM will not boot with a Nougat bootloader.
If your device is stuck do the following:
Press BIXBY + VOL DOWN + POWER and keep them pressed for about 10 sec.
You will see a turkoise screen with a big white "Warning" on top.
Press volume down.
Immediately press BIXBY + VOL UP + POWER and keep them pressed until your device is back into TWRP.
Now flash the proper bootloader.
So, it is highly recommended that you put both zip files attached to this post on your /sdcard !!!
Click to expand...
Click to collapse
Nougart BL&Modem are working on oreo so is not necessary to update! anyway good job this i wil try as soon as i can this :good:
Download link ?
In your folder i cant see any oreo word !
Thanks !
xtmzone said:
Download link ?
In your folder i cant see any oreo word !
Thanks !
Click to expand...
Click to collapse
Read the |OP| dude ... What does the first sentence say?
foobar66 said:
Read the |OP| dude ... What does the first sentence say?
Click to expand...
Click to collapse
Sorry
Thread re-opened.
Thanks
Wood Man
Forum Moderator
Wood Man said:
Thread re-opened.
Thanks
Wood Man
Forum Moderator
Click to expand...
Click to collapse
Thanks ...
Sorry guys, due to some domestic issues release only came today.
Please read |OP| properly before installing.
Working now on traditional install procedure which should make installation faster.
foobar66 said:
Thanks ...
Sorry guys, due to some domestic issues release only came today.
Please read |OP| properly before installing.
Working now on traditional install procedure which should make installation faster.
Click to expand...
Click to collapse
The download is very slow.
---------- Post added at 02:20 PM ---------- Previous post was at 02:19 PM ----------
I have got high expectations with this rom, the last google rom edition i used on nougat was amazing.
Hope the safety net passes?
bobandar said:
The download is very slow.
---------- Post added at 02:20 PM ---------- Previous post was at 02:19 PM ----------
I have got high expectations with this rom, the last google rom edition i used on nougat was amazing.
Hope the safety net passes?
Click to expand...
Click to collapse
No, unfortunately still has the SafetyNet bug ...
foobar66 said:
No, unfortunately still has the SafetyNet bug ...
Click to expand...
Click to collapse
But fortunately we have magisk hide, that will let me use snapchat on this rom right?
---------- Post added at 02:10 PM ---------- Previous post was at 01:32 PM ----------
Flashed successfuly , Works great.
bobandar said:
But fortunately we have magisk hide, that will let me use snapchat on this rom right?
---------- Post added at 02:10 PM ---------- Previous post was at 01:32 PM ----------
Flashed successfuly , Works great.
Click to expand...
Click to collapse
Try snapshat ... I don't use it ... so I don't know if it will work ...
v1 (2018-02-17):
- Back to old install method, much faster
- Updated SwiftKey to latest version
- Removed Fusedlocation (not needed)
- Fix spacing of icons in statusbar
- Fixed the setting of the GoogleDialer as default
- Zip file is 300MB smaller than v0
v1 upload completed.
Wipe before flashing.
for me the always on display function doesn't seem to work ... any ideas? ... apart from that really nice work
will try again with v1
always on display working with v1 also for me
s-r said:
for me the always on display function doesn't seem to work ... any ideas? ... apart from that really nice work
Click to expand...
Click to collapse
Weird, for me it works fine. If you know how ... check the logcat when you turn the screen off.
Full Guide and Download, on GitHub, HERE.
This is for a ROOTED version of Windows Subsystem For Android with the Google Play Store, Services and framework installed. Essentially giving you a rooted android device inside you Desktop. Great for DevOps, CyberSec & DefEng. (Defense Engineering)
Key Points:
-For best results fork and clone.
-SHOULD also work by simply downloading.
-Uses Magisk by @topjohnwu for root.
-Uses The Open GApps Project for playstore.
-Your system MUST support Hyper-V.
-Simple Installation process.
-Working ADB.
-Open-Source (yes, if you want to help, please do - just go check out the Github.
TO-DO:
-System UI
-Allow for replicating Device-Specific Set-Ups (I.e, Mocking a particular devices' security framework, for instance, emulating KNOX, Google FRP, QTI, Etc.)
-VPN Fix
-Cellular network (for this who want to test their apps on live networks)
- Make it self-updating.
Please Post any issues on the github or here and be as detailed as possible and include screenshots. May take some time for a response but will do my best.
Good luck -
-k0mrad3
Never mind, my bad
Hack & install method is so dirty
Repo removed by Github. Might want to find another host