Pure AOSP 5.1.1_r24 [LMY48W]. Blobs from [LMY48T].
No code changes or extra features.
Compiled for myself but decided to share it.
The necessary changes
Added xml overlay that enable network locations (Gapps required)
Added xml overlay that enable gesture typing in AOSP keyboard (Gapps required)
Added xml overlay that enable account backup (Gapps required)
Added xml overlay that removes updates check option
AOSP default boot animation replaced by stock.
Code:
package aosp;
import disclaimer;
public class AOSP extends Disclaimer {
/**
* Your warranty is now likely void.
*
* I am not responsible for bricked devices, dead SD cards,
* spontaneous combustion, or any other host of cosmic penalties
* which may befall you, your family, animals or your phone.
*
*/
public AOSPDisclaimer(){
warranty.set(0);
}
}
Download from AndroidFileHost
Previous versions here
woland_ca said:
Pure AOSP 5.1.1_r6 [LMY48G]. No code changes or extra features.
Compiled for myself but decided to share it.
The necessary changes
Added xml overlay that enable network locations (Gapps required)
Added xml overlay that enable gesture typing in AOSP keyboard (Gapps required)
Added xml overlay that enable account backup (Gapps required)
AOSP default boot animation replaced by stock.
Code:
package aosp;
import disclaimer;
public class AOSP extends Disclaimer {
/**
* Your warranty is now likely void.
*
* I am not responsible for bricked devices, dead SD cards,
* spontaneous combustion, or any other host of cosmic penalties
* which may befall you, your family, animals or your phone.
*
*/
public AOSPDisclaimer(){
warranty.set(0);
}
}
Download from AndroidFileHost
Click to expand...
Click to collapse
Will it be pure AOSP? Any plans to add maybe layers?
russells.android said:
Will it be pure AOSP? Any plans to add maybe layers?
Click to expand...
Click to collapse
Sorry, I do not plan to mess with code. Just compiling.
I recommend this ROM + mirage kernel = new nexus 4 ! ?
Sent from my Nexus 4 using XDA Premium 4 mobile app
@woland_ca Hey bro!!!!! THANKS FOR YOUR PROJECT!!!!!!! I was in search of a ROM. It's just what I wanted! AOSP at the latest build, and clean! Work is appreciated. Greetings from Argentina.
NOTE: Now android 5.1.1 r8 is avalible Please update the ROM!
https://android.googlesource.com/platform/build/+/android-5.1.1_r8
Crs- said:
NOTE: Now android 5.1.1 r8 is avalible Please update the ROM!
https://android.googlesource.com/platform/build/+/android-5.1.1_r8
Click to expand...
Click to collapse
Syncing. Will take some time.
Nice to see at least one rom that is pure aosp for our n4. Please don't bother with feature requests and keep it pure :good:
Has anyone tested xposed with this rom? Would be great to update if xposed works
Here it is. ROM. I did not test it yet, lack of time. If someone want to try.
woland_ca said:
Here it is. ROM. I did not test it yet, lack of time. If someone want to try.
Click to expand...
Click to collapse
Testing
{
"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"
}
woland_ca said:
Here it is. ROM. I did not test it yet, lack of time. If someone want to try.
Click to expand...
Click to collapse
What are the changes?
cianz94 said:
What are the changes?
Click to expand...
Click to collapse
No idea what are the changes between r6 and r8. In git them looks like a two different branches (R6 belongs to LMxxxx builds and R8 to LVxxxx builds) most of commits are the same in both of them but not a 100%. If somebody know the difference please explain.
woland_ca said:
No idea what are the changes between r6 and r8. In git them looks like a two different branches (R6 belongs to LMxxxx builds and R8 to LVxxxx builds) most of commits are the same in both of them but not a 100%. If somebody know the difference please explain.
Click to expand...
Click to collapse
Good job. Simple and plain AOSP. Subscribing this thread
Sent from my Nexus 4 using Tapatalk
woland_ca said:
No idea what are the changes between r6 and r8.
Click to expand...
Click to collapse
After digging a little bit I found that R8 is actually a special build with Project Fi api enabled, which is useless for most of us. So it looks like there is no valuable difference between R6 and R8, and probably R6 is even better for N4. (Despite of that the R8 build is running well so far on my N4)
woland_ca said:
Added xml overlay that enable network locations (Gapps required)
Added xml overlay that enable gesture typing in AOSP keyboard (Gapps required)
Added xml overlay that enable account backup (Gapps required)
AOSP default boot animation replaced by stock.
Click to expand...
Click to collapse
When you have time, can you explain these xml changes and how we can apply them to our own AOSP builds shortly. It will be informative.
cewrld said:
When you have time, can you explain these xml changes and how we can apply them to our own AOSP builds shortly. It will be informative.
Click to expand...
Click to collapse
NP.
All files paths are relative to project root.
Xml overlay that enable network locations
By default AOSP uses only device GPS sensor. Network location (Battery saving) and hybrid (High accuracy) modes provided by the Google and in order to activate them you should edit:
device/lge/mako/overlay/frameworks/base/core/res/res/values/config.xml
Add inside <resources> tag:
Code:
<string-array name="config_locationProviderPackageNames" translatable="false">
<item>com.google.android.gms</item>
<item>com.android.location.fused</item>
</string-array>
Xml overlay that enable gesture typing in AOSP keyboard
By default AOSP keyboard has gesture typing disabled and has no decoding library. In order to enable it you should add new overlay file:
device/lge/mako/overlay/packages/inputmethods/LatinIME/java/res/values/gesture-input.xml
With code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="config_gesture_input_enabled_by_build_config">true</bool>
</resources>
And your Gapps should install proper libjni_latinime.so library. Not all Gapps have it. This one, for example, has it.
Xml overlay that enable account backup
By default AOSP will backup your account details into private debug cache. To point the backup to your Google account you should edit:
device/lge/mako/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml
Add inside <resources> tag:
Code:
<string name="def_backup_transport" translatable="false">com.google.android.gms/.backup.BackupTransportService</string>
Xml overlay that removes system update option
Copy the file packages/apps/Settings/res/xml/device_info_settings.xml to device/lge/mako/overlay/packages/apps/Settings/res/xml/device_info_settings.xml, then edit copied file and comment first section that deals with update check:
Code:
<!--
<PreferenceScreen android:key="system_update_settings"
android:title="@string/system_update_settings_list_item_title"
android:summary="@string/system_update_settings_list_item_summary">
<intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS" />
</PreferenceScreen>
-->
Replace default boot animation
Put the stock (or any other) boot animation file here:
vendor/lge/mako/prebuild/bootanimation.zip
Edit the file:
device/lge/mako/full_mako.mk
add right after:
PRODUCT_COPY_FILES := device/lge/mako/apns-full-conf.xml:system/etc/apns-conf.xml
the line:
PRODUCT_COPY_FILES += vendor/lge/mako/prebuild/bootanimation.zip:system/media/bootanimation.zip:lge
You can also fix Model number string to proper one:
PRODUCT_MODEL := AOSP on MAKO
to:
PRODUCT_MODEL := Nexus 4
Enjoy!
@woland_ca can you please update dialer and other icons to material design and release a build. They dont look good as i use the default launcher.
Thanks for your answer. Me and most users planning to learn how to compile will benefit from this.
What is different between pure aosp and Google stock rom?
Related
CyanogenMod is a free, community built distribution of Android 2.3 (Gingerbread) which greatly extends the capabilities of your phone.
Code:
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
Decadence ROM
This release is based on CM7 Nightly roms.
This is a personal rom and i want share it with xda users. I'm working for a functionally and very smooth rom.
I will try to go up the already fast CM7. The changes will be exclusively dedicated to the lightness and performance of the ROM.
I will use only the best CM7nightly, to minimize bugs and always have a rom with the latest updates.
I'm working to a personal kernel. When it will be ready i post it here and include it on my rom!
Thanks at all!
ikxdf
{
"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"
}
All features:
-CM7 nightly 78
-gapps selection at startup
-New market interface
-Hardware files optimization
-I/O Tweak
-Mobile Data speed increased (not working ?)
-SD speed increase tool (removable)
-GPS server selection tool (removable)
-Task killer tool + widget (removable)
-Es root explorer
-Removed some cyanogenmod apps
-Transparent lockscreen rotary,slide and lense
Changelog
Code:
[B]Decadence 1.0.1[/B] based on CMn78:
-SD speed increase tool (removable)
-GPS server selection tool (removable)
-Task killer tool + widget (removable)
-Es root explorer
-Removed some cyanogenmod apps
-Transparent lockscreen rotary,slide and lense
[SIZE="1"][B]Decadence 1.0.0[/B] based on CMn76:
-New market interface
-gapps selection at startup
-Hardware files optimization
-I/O Tweak
-Mobile Data speed increased
[/SIZE]
Download
Megaupload fast:Decadence 1.0.1
Megaupload fast:Decadence 1.0.0
Multiupload:Decadence 1.0.0
# first
As it's based on CM7 will it need a full wipe?
What connection are you uploading it on, 56k?
On a serious note, i'm looking forward to the new market, it looks pretty cool.
Also, what have you modified to increase mobile data speeds?
sorry, i have found a bug in my package...i'm resolving it...
ikxdf said:
sorry, i have found a bug in my package...i'm resolving it...
Click to expand...
Click to collapse
Is the ROM having the normal bugs of Gingerbread like FM, A2DP etc not working or those have been resolved.
welcome to the club
Problem solved and rom uploaded
Works very good for me. I'm using the rom for 2 ours now and it is very fast. No bugs found so far..
Sent from my Optimus 2X using Tapatalk
Can you mirror on Multiupload?
Sent from my LG-P990 using XDA App
Meltus said:
What connection are you uploading it on, 56k?
On a serious note, i'm looking forward to the new market, it looks pretty cool.
Also, what have you modified to increase mobile data speeds?
Click to expand...
Click to collapse
would like to know this too...
adding some parameters at build.prop file:
ro.ril.gprsclass=12
ro.ril.hsdpa.category=14
ro.ril.hsupa.category=7
ro.ril.hsxpa=3
with this mod you can have a big increment of download/upload speed of your data mobile connection
Upload to multiupload started.
will add link when done.
15 minutes left.
feel free to add to your post.
http://www.multiupload.com/A3S992VOI6
freudenbauer said:
Upload to multiupload started.
will add link when done.
15 minutes left.
feel free to add to your post.
http://www.multiupload.com/A3S992VOI6
Click to expand...
Click to collapse
thanks! added to first post.
downloading for test.
what we can expect from your new kernel?
ikxdf said:
adding some parameters at build.prop file:
ro.ril.gprsclass=12
ro.ril.hsdpa.category=14
ro.ril.hsupa.category=7
ro.ril.hsxpa=3
with this mod you can have a big increment of download/upload speed of your data mobile connection
Click to expand...
Click to collapse
Can you use that codes on froyo ROMs?
Do you point me what the main different between your rom and the standard CM7 nightly I see the size of both very close togeter.
mhasan90 said:
Can you use that codes on froyo ROMs?
Click to expand...
Click to collapse
yes
k101d said:
Do you point me what the main different between your rom and the standard CM7 nightly I see the size of both very close togeter.
Click to expand...
Click to collapse
you can read the changelog
i have add some performance tweak and hardware optimization.
i next release i will increment the sd speed and add some exential tool (for example gps server selection,backups ecc).
After that a will start to work at the kernel
boto said:
downloading for test.
what we can expect from your new kernel?
Click to expand...
Click to collapse
i will release a small and exential kernel with ext4 support(after that mi rom release will format your data and system partition to ext 4. i will not add the OC features: is absolutely useless and harmful
if u want you can use vorkKernel or any other.
I'm not downloading this one yet but will be keeping a close eye on your kernel dev progress. Hope it will be stable, fast and not so battery draining
ikxdf said:
adding some parameters at build.prop file:
ro.ril.gprsclass=12
ro.ril.hsdpa.category=14
ro.ril.hsupa.category=7
ro.ril.hsxpa=3
with this mod you can have a big increment of download/upload speed of your data mobile connection
Click to expand...
Click to collapse
if i understand our dr. arcee right this is completly useless...
aremcee said:
It's especially impressive when you consider the fact that it doesn't do anything on the 2X. Those parameters are for HTC RILs, they don't exist on LGE's:
Code:
[[email protected] product]$ strings bravo/system/lib/libhtc_ril.so | grep ro.ril
ro.ril.a53.%s
ro.ril.ecc.%s
ro.ril.def.agps.mode.%s
ro.ril.def.agps.feature.%s
ro.ril.def.agps.mode
ro.ril.def.agps.feature
ro.ril.oem.ecclist
ro.ril.oem.nosim.ecclist
ro.ril.enable.dtm
ro.ril.gprsclass
ro.ril.hsdpa.category
ro.ril.hsupa.category
ro.ril.hsxpa
ro.ril.enable.nitz
ro.ril.enable.network_identify
ro.ril.qos.maxpdps
ro.ril.qos.traffic.class
ro.ril.qos.max.ul
ro.ril.qos.max.dl
ro.ril.qos.guarantee.ul
ro.ril.qos.guarantee.dl
ro.ril.qos.delivery.order
ro.ril.qos.max.sdu
ro.ril.qos.delivery.err.sdu
ro.ril.qos.transfer.delay
ro.ril.qos.traffic.priority
ro.ril.always.laccid
ro.ril.fast.dormancy.rule
ro.ril.fd.scron.timeout
ro.ril.fd.scroff.timeout
ro.ril.fast.dormancy.plmn
ro.ril.enable.3g.prefix
ro.ril.3g.long.name
ro.ril.htcmaskw1.bitmask
ro.ril.htcmaskw1
ro.ril.enable.homezone
ro.ril.enable.vt
ro.ril.enable.regucid
ro.ril.enable.hsdpaind
ro.ril.enable.a52
ro.ril.enable.a53
ro.ril.enable.dcm.feature
ro.ril.enhance.htcdis
ro.ril.enable.tim.feature
ro.ril.enable.korea.stk
ro.ril.enable.hsupaind
ro.ril.enable.gea3
ro.ril.enable.managed.roaming
ro.ril.enable.enhance.search
ro.ril.disable.mcc.filter
ro.ril.search.first.pnn
ro.ril.enable.ncell.ind
ro.ril.enable.enhance.nws
ro.ril.radio.svn
ro.ril.wp.feature
ro.ril.emc.mode
ro.ril.ucsq.mode
[[email protected] product]$ strings p990/system/lib/lge-ril.so | grep ro.ril
[[email protected] product]$
Click to expand...
Click to collapse
i have see a speed improvement...is only suggestion?
how can u grep a compiled files??? this is very impressive!
if u edit the file you cannot read anything...
i want take a look at the cm7 source and verify that!
thanks for your advice!
About
{
"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"
}
I'm not going to bore you with some long ass intro.
JellyBelly is an AOSP source built ROM, it's minimal, it's superfast and mostly bugfree.
This ROM is mostly a stock AOSP build however there may be certain Android upstream bugs present, I have also added a couple of small mods.
Features
Android v4.1.1 (JRO03H) built from AOSP
Linux kernel v3.0.38
Google apps
Superuser
Busybox
Deodexed
Additional features
Advanced power menu with reboot and screenshot options
Battery percentage
Big HighMem (alternative kernels will kill this feature)
BLN
Cursor enabled keyboard with volume keys
Download any file type
Facebook contacts sync
Init.d script support
Receive any file type via Bluetooth
SIP calling over 3G
Status bar toggles
T9 Dialer
Touch to focus camera
Volume button music controls
Volume button wake
Voodoo sound
Various other tweaks and features
Installation
A wipe is required when first flashing this ROM, however, unless otherwise stated, no wipe is needed to upgrade between versions.
Download JellyBelly-xxx.zip to your sdcard storage on your Nexus S
Boot into ClockworkMod Recovery through whatever method you choose (ROM Manager, Power + Volume Up, ADB etc...)
Back up your existing installation
Select Install Zip from SD Card
Find the JellyBelly-xxx.zip file you downloaded earlier
Scroll through all the No's and hit Yes, install JellyBelly-xxx.zip
Wait for the installation to finish
Select Reboot
Enjoy!
Downloads
I'm not responsible for any damage what-so-ever done to your phone, as with any ROM, you accept this risk.
Downloads are available below.
Download here
Donate
Android development is a hobby for me, the Android community has been good to me and I enjoy what I do, I don't do it for any personal gain or gratification so if you like this ROM and would like to show appreciation for the time and effort me and other people have put into it then I would very much appreciate it if you could donate to the 'childhood leukaemia' charity I support, you can donate via Paypal or by card/cheque, thanks for taking the time to read this and thanks for donating if you choose to .
Donate via Cancer Research UK
Credits
A big thanks to the following people, I couldn't of done any of this without you guys.
thalamus / schiznik
Screenshots
Screenshots will be here at a later date.
Additional notes
PLEASE READ: I welcome bug reports or feature requests however when reporting a bug please state how exactly it happened and how to reproduce it so I can investigate it, you can email me bugs or feature requests to /dev/null
Please note if you have flashed any 3rd party kernels, I will not be able to offer support as I can not answer for problems caused by 3rd party changes, the kernel provided with JellyBelly is maintained by _thalamus who many of you know to be a respected developer, I respect and trust his work enough to incorporate it into my own. I would not include anything into any of my work if I thought it was detrimental. I want JellyBelly to be stable for both you and myself.
Changelog
1.0.0 [31/07/2012]
Added am/pm to clock when 12hr option is chosen
Fixed automatic timezone failing for some users
Fixed random reboots that affected some users
Fixed stk
Fixed su
Fixed yellow tint for that affected some i9020 users
Updated kernel * **
* Custom kernel compiled and maintained by _thalamus
** Please note with this release you will not be able to use
an alternative kernel, I will remove this limitation when
I'm satisfied that no bugs are present, this has been
placed here so I can rule out specific issues.
0.1.5.1 [28/07/2012]
Fixed gallery
Fixed music
Updated kernel *
* Custom kernel compiled and maintained by _thalamus
0.1.5 [27/07/2012]
Added cursor mod to keyboard
Added init.d script support
Added status bar toggles *
Added touch-to-focus to camera
Fixed long press back to kill
Fixed panaromaic camera mode
Fixed screen off animation
Remapped assist key back to original search key
Updated gapps
Updated su
Updated kernel **
* Enable under Settings > Developer options > JellyBelly
** Custom kernel compiled and maintained by _thalamus
0.1.4 [23/07/2012]
Added long press back to kill *
Added big highmem (experimental) **
Added volume button music controls *
Added volume button wake *
Updated Gallery to GoogleGallery ***
Updated kernel ****
* Enable under Settings > Developer options > JellyBelly
** This frees around 50mb of RAM by remapping memory, the only drawback of this is the loss of 1080p playback
*** This should enable the use of Picasa in the Gallery
**** Custom kernel compiled and maintained by _thalamus
0.1.3 [22/07/2012]
Added battery percentage *
Added nexus boot animation
Added t9 dialer mod
Fixed backup service
Enabled HSPA icon
* Enable under Settings > Developer options > JellyBelly
0.1.2 [21/07/2012]
Added BLN
Added MusicFX and JB Gmail
Set default wallpaper to static JB wallpaper on first boot
Updated kernel to v3.0.38*
* Custom kernel compiled and maintained by _thalamus
0.1.1 [21/07/2012]
Deodexed all applications and framework
Fixed modversion in About
Hell yes
But JRO03H? I thought OTA was JRO03E..
Running this ROM now. Everything is good!
Spelling error in the about screen lol "jelly bely"
I respect your work. Maybe I should give it a try .
dEris said:
Hell yes
But JRO03H? I thought OTA was JRO03E..
Click to expand...
Click to collapse
The OTA was JRO03E however 1. this isn't the OTA and 2. the Android Source at present is at a newer build JRO03H.
AdamG would you maybe pm me your default.xml for source please?
I was having problems with my .classpath. I would like to build for crespo4g. Ive been building using your sources for awhile now. I dont release any roms. They are for personal use. Big fan here.
snandlal said:
AdamG would you maybe pm me your default.xml for source please?
Click to expand...
Click to collapse
I will upload a manifest repo later, all the rest of the ROM is already at my GitHub.
This was exactly what I was looking for. Thanks Adam
Sent from my Nexus S using xda app-developers app
Wish it was deodexed. =[
dEris said:
-snip-
Spelling error in the about screen lol "jelly bely"
Click to expand...
Click to collapse
Already noticed it earlier, will fix it with a further release later, got a few more things planned to add to the ROM yet, just didn't have time
-edit
Fixed as of v0.1.1
dEris said:
Wish it was deodexed. =[
Click to expand...
Click to collapse
Will be done with next update.
-edit
Done as of v0.1.1
Love it n will try today,. Thanks adam,.
Sent from my Nexus S using Tapatalk
Is it with rom control?
Thank you Adam for this smooth ROM. Can you please add "volume wake" option? it would be perfect for people wanting to preserve their Power button like me
High Big Mem patch and "hold back to kill" would be also awesome but not really urgent
Thanks again for sharing this ROM.
AdamG said:
I will upload a manifest repo later, all the rest of the ROM is already at my GitHub.
Click to expand...
Click to collapse
Sweet thanks.
Thank you, Adam.
So why do you deodexed it, are odexed roms not faster?
nice adamg the oxygen man is back hell yeah!!!
Why therer are no GMail and Boot Animation....
dkm911 said:
Why therer are no GMail and Boot Animation....
Click to expand...
Click to collapse
Gmail is in the Play Store. You're really complaining about that? :/
{
"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"
}
Mako
This is AOSP built with root capabilities and added functionality. Fast and light!
Features
Here
Changelog
Here
Thanks to
dreamsforgotten
UBER
IT_Blackbelt
mwalt2
dhacker29 for the GAPPS
Mike Wielgosz and his Crossbones repositories, they really helped me get started on this.
Crossbones GitHub
CyanogenMod for the great code they contribute to this community.
CyanogenMod GitHub
Please, let me know what you think and report any problems! Thanks XDA!
Sources:
Google: Android 4.4.2_r1
SomethingExplosive: GitHub
Me: My GitHub
Downloads
Flashing Instructions
Download ROM (links below)
Wipe data,cache,system
Flash ROM
Flash Gapps
Profit!
NOTE: If coming from a previous build, wipe cache and dirty flash!
Current Version (Updated 1/11/14)
Downloads
Google Apps (Updated 1/11/14)
Gapps
Download
Gonna try it after work thanks
Sent from my Nexus 4 using xda premium
Glad to see another rom here. :thumbup:
Sent from my Panasonic microwave
Seems to be great! Thanks!
Deleted
"sk8 or die"
sk8oldschool74 said:
Deleted
"sk8 or die"
Click to expand...
Click to collapse
Did you still have a question?
Sent from my Galaxy Nexus using Tapatalk 2
something15525 said:
Did you still have a question?
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
No but thank you!!! =)
"sk8 or die"
sk8oldschool74 said:
No but thank you!!! =)
"sk8 or die"
Click to expand...
Click to collapse
No problem man, let me know if you have any questions.
Sent from my Galaxy Nexus using Tapatalk 2
Id really like to use this rom but it needs a little more for mods.
navillos said:
Id really like to use this rom but it needs a little more for mods.
Click to expand...
Click to collapse
I think I may have someone that can help me with this. Let me look into and see what I can do.
Do you have any mods in particular in mind? Let me know! :highfive:
Hey guys, I know it's been a while since I've posted an update, but here I am, just letting you know I'm still here! I was planning on having a build out here these past few days, but my main drive in my build server failed . I'm working on getting it back up and running, but it might be a few more days before I can get it working again. I will have a build up here as soon as possible, and thanks for hanging in there guys!
Version 1.1.0 has been released. Changelog is as follows:
### 1.1.0
* common: update to android-4.2.2_r1.2
* SoMeX: add dictionaries and gesture keyboard support (CM)
* common: add PrivacyGuard support (incognito mode) (cyanogen)
* settings: add PrivacyGuard manager (slimroms)
* common: add SMS Security support (lithid)
* phone/contacts: add T9 dialer and landscape dialer functionality
* phone: Make going to call log after call optional (CM)
* libcore: patch BOTH master-key security exploits! (AOSP)
* phone: add transparency to incall screen (fitsnugly)
Deodexed builds are up, odexed will follow later today.
Just an extra note, you should no longer need to use the modified gapps I provided for gesture keyboard, you can use the official gapps now. Link is in OP.
Odexed builds are up!
Sent from my Nexus 4 using Tapatalk 4 Beta
Hey guys, 4.3 builds are up! Test em out and let me know how they run! I tested a bit and it seems to be pretty stable, let me know if there are any issues.
Forgot to mention, the gapps have been updated for 4.3, so you need the new package (updated in OP) to flash with this zip.
Also, Google's dialpad autocomplete has replaced the CM T9 dialer, and will need to be turned on in the Phone settings if you want to use it (it's off by default).
something15525 said:
Odexed builds are up!
Sent from my Nexus 4 using Tapatalk 4 Beta
Click to expand...
Click to collapse
Which is recommended for smoothness?
Ümit said:
Which is recommended for smoothness?
Click to expand...
Click to collapse
The odexed builds are generally faster/smoother, the reason people used deodexed is since you can easily modify the system apk files for theming and such. If you don't care about that, go for odexed
Anybody have a USB OTG cable they could test something out for me on?
New build up! Changelog is as follows:
Code:
### 1.2.2
* common: update to android-4.3_r2.2
* common: enable NTFS support in kernel
* tuna: improve color display in kernel (cm)
* tuna: correct compass behavior
### 1.2.1
* build: Remove AOSP Calendar from builds
* common: Enable BLE for tuna/grouper-based devices
* tuna: fix OTG for all tuna-based devices
* grouper: fix OTG for grouper based devices
* grouper/tilapia: fix Storage menu force-closes (fattire)
* LatinIME: latinime: Add "more" keys to ALL the keys (cyanogen)
* LatinIME: Enable more keys for top row on tablets (cyanogen)
{
"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"
}
MiniCM7 is custom-built rom based on CyanogenMod 7, running Android Gingerbread.
Project Source code, bug trackers and official changelog can be found HERE
All thanks to Mini CM Team
Code:
#include
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
* If you dont like this rom, Stay away from this thread!
* If you have any problem, Contact Forum Moderator. I will only reply to him!
* Keep this thread clean!
*/
SCREENSHOTS
FEATURES
Built for LDPI (Optimized Source)
MiniCM Update notifications via c2dm (CM Settings -> System -> Update notifications)
App2sd / Dalvik2sd compatible with 2.1 app2sd (storing to ext2/3/4 pre-existing partition is detected and mounted as such)
Gingerbread's native App2sd (storing to fat)
Modular Overclocking handled CM Settings menu (by default none is active)
Extra CM Performance Settings menu for SD Read Cache Speed
Extra CM Settings display menu for Ultra brightness
Smooth 2D scrolling in menus
Native Wifi Hotspot
Native USB tethering
Flashlight toggle from lockscreen
Most of the core components are built from sources
--------------------------------------------
Device Config can be found - HERE
Project Source code, kernel source code can be found - HERE
ROM Download, Flashing Instructions and extra add-ons can be found in 2nd Post.
--------------------------------------------
PERSONAL CHANGELOG :
Initial build
Latest sources
Based on mebiteks config
Everything working
Deleted some useless stuff
Rom is super slim 70mb
Some init.d and systen.prop tweaks
CREDITS
mebitek
mini cm team
DaRk_DoG
NobodyAtAll & Team
Cyanogenmod team
you for supporting me always
Procedure To Install:
Download and push the latest MiniCM7 ROM to SD Card
Reboot to Recovery Mode
Select Wipe data and cache
Select install zip from sd card
Select choose zip from sd card
Select the new MiniCM7 ROM
Select Yes - Install update
Wait until the Installation is finish
Select Wipe data and cache
Select Wipe cache partition
Select reboot system now
DOWNLOADS :
MiniCM7-02062013-Tass-UNOFFICIAL.zip
GApps Can be found - HERE
Thanks to chemicalrage :good:
Softkey / Tablet tweak enabler - HERE
ADD-ON'S :
In given below link, you will find the crystal theme created by DarkDog. Its provided by default in the minicm sources, but due to its large size [15Mb], I removed it and providing it as an add-on. Interested users may simply download the theme, copy to sd-card and install.
The MiniCM7, crystal and OrangeHaze themes are made exclusively for the MiniCM7 ROMs.
They are not to be used with other ROMs, so DON'T rip them off. period.
You are warned. period.
Crystal Theme Download Link - HERE
Wow you rock man. CM 7.2 IMO is the most stable one. Thanks a lot !
One more thing, can you add link to Mini Gapps too ?
Sent from my GT-P3100 using Tapatalk HD
Download link is up. Its the best initial release from me coz i solved all wifi and camera related issues. Others i dint test but everything should be perfect.
edit - gapps link updated
Testing.....
softkey / tablet tweaks for mini cm7
anybody want softkeys download it from attachments and flash the package. :good:
boss AU any screenshots for Crystal Theme?
palaboy said:
boss AU any screenshots for Crystal Theme?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1174762
Thanks
A_U said:
http://forum.xda-developers.com/showthread.php?t=1174762
Click to expand...
Click to collapse
thank you boss AU i will try this one
---------- Post added at 09:41 PM ---------- Previous post was at 09:03 PM ----------
boss AU how to enable softkey i already flash but i can't find in tablet tweaks settings?
boss AU after i enable softkey the status bar is gone black now, how to fix this?
palaboy said:
boss AU after i enable softkey the status bar is gone black now, how to fix this?
Click to expand...
Click to collapse
do something to get a notification? or try to reboot
palaboy said:
boss AU after i enable softkey the status bar is gone black now, how to fix this?
Click to expand...
Click to collapse
Reboot fixed it.
For me the rom which you posted here is better than this...
CM Performance Settings menu for SD Read Cache Speed don't work on my phone... when I change the speed cache to 3072 then check in sys/devices/virtual/dbi/179.0/read_ahead_kb it's still reads the default value of 128
I'm not quite sure, but the problem might be in the ramdisk in the init.gt-s5570.rc.
Line 25 - 28
on boot
# Tweak SD card cache
write /sys/block/mmcblk0/bdi/read_ahead_kb 128
Click to expand...
Click to collapse
Try to edit init.gt-s5570.rc in the boot.img
If you have a look at init.rc in the ramdisk you see the following values:
Line 296 - 302
# Define TCP buffer sizes for various networks
# ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208
setprop net.tcp.buffersize.wifi 4095,87380,110208,4096,16384,110208
setprop net.tcp.buffersize.umts 4094,87380,110208,4096,16384,110208
setprop net.tcp.buffersize.edge 4093,26280,35040,4096,16384,35040
setprop net.tcp.buffersize.gprs 4092,8760,11680,4096,8760,11680
Click to expand...
Click to collapse
This stands against the following in the build.prop
net.tcp.buffersize.default=4096,87380,256960,4096, 16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,163 84,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,163 84,256960
Click to expand...
Click to collapse
(Which is badly misspelled by the way...)
If someone could please clarify for me which values will be applied.
Regards
Wooaarr
Discontinued?
Sent from my GT-S5570 using Tapatalk 2
hsay said:
Discontinued?
Sent from my GT-S5570 using Tapatalk 2
Click to expand...
Click to collapse
no but its kinda final..coz there's no changes in cm7 or mini cm since past august..even they left gingerbread.
so i just compiled it coz its very stable.
A_U said:
no but its kinda final..coz there's no changes in cm7 or mini cm since past august..even they left gingerbread.
so i just compiled it coz its very stable.
Click to expand...
Click to collapse
K no problems ...
Sent from my GT-S5570 using Tapatalk 2
In terms of performance and batery life what's better, this room or cm10.1?
I've just installed this - looks nice thanks.
Couple of things:
The "check for updates" section force closes on me.
Trying to change the Speech to Text (which I want to use) Force closes.
Are these known issues, and are there any suggested fixes?
Many Thanks,
Tim
{
"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"
}
DISCLAMER
Your warranty is now void.
I am not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed. Please do some research if you have any concerns about features included in this ROM before flashing it! YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.
Click to expand...
Click to collapse
LiquidSmooth is an aftermarket firmware based on the Android Open Source Project.
Dedicated to providing users with smooth, stable and fast ROMs. A Lightweight modified AOSP base, and then add the features you crave!
While we make every effort to test these builds as much as possible, we are not responsible for anything that may happen to your device.
We ask that you do your part to know your device and know how to recover from problems before you flash!
cameron581
cdub50
Cl3Kener
CPA-Poke
deadman96385
iiD4x
itsmikeramsay
Jarrid42
johnnyslt
jsnweitzel
liquid0624
mtb300gt
Ntemis
reginald476
rkpeterson
rwaempires
sandtod
Somber73
sspencer10ls
TheBr0ken
timpohladthomas
Code:
SaberMod 4.7 GCC Toolchain for Rom
SaberMod 4.10 GCC Toolchain for Kernel
O3 Strict-Aliasing & ISO C++11 Mode
ARM Optimized String Handling Routines
Code Aurora Optimaztions
Display CAF
Dynamic Color Changer
Slims DPI on the fly
Custom animation controls
TRDS 3.0 (Liquid Blackout in settings)
Active Display
Slims QuickSettings
Halo (Renamed to bubble in settings)
Ram Bar
T-Mobile Theme Engine
Privacy Guard
Built in SuperUser
Working wifi Tethering
Cell Broadcasts
Slims Configurable Power Menu
Slims Configurable Nav Bar
Custom animation controls (Listview)
LockScreen Notifications
And way more than this...
Code:
[url="https://plus.google.com/b/102153960718796996774/communities/117452480298315341829/stream/d5e8c0fe-5ee7-44df-97a5-6dd8cdcf8bb8"]Check our Google+ for a updates[/URL]
Code:
[url="http://github.com/LiquidSmooth"]LiquidSmooth Github[/URL]
[URL="https://github.com/LiquidSmooth-Devices/kernel_lge_msm8974"]Kernel Source[/URL]
Code:
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_ATT/"]D800 (ATT) Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608654"]D800 (ATT) Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_TMobile/"]D801 (T-Mobile) Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608657"]D801 (T-Mobile) Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_d802/"]D802 Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608285"]D802 Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_d803/"]D803 Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608661"]D803 Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_Sprint/"]LS980 (Sprint) Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608663"]LS980 (Sprint) Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Milestone/LG_G2_Verizon/"]VS980 (Verizon) Milestone Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608666"]VS980 (Verizon) Mirror[/URL]
[url="http://drdevs.com/devs/teamliquid/Gapps/"]Liquid Gapps Download[/URL]
[url="https://www.androidfilehost.com/?fid=95784891001608668"]Liquid Gapps 8.1 Mirror[/URL]
LG G2 (All Variants) specific bugs:
Code:
if knock on/dt2w is not working. please run this in android terminal emulator:
echo "1" > /sys/devices/virtual/input/lge_touch/firmware (then press enter)
Thanks @savoca for pointing this out
Install Instructions:
Code:
- Make sure you're running latest Recovery (I personally use TWRP)
- Copy GApps and Liquid ZIP to your internal SDCard
- Boot into Recovery
- Wipe Data / Factory Reset
- Wipe Cache & Dalvik Cache
- Flash Liquid zip from internal SDCard
- Flash GApps zip from internal SDCard
- Reboot
- Restoring Apps + Data might cause problems and is not recommended
Have questions or want answers? Head to the Q&A Thread:
Code:
[URL="http://forum.xda-developers.com/lg-g2/help/question-answer-liquid-smooth-rom-t2873537"][CENTER]LG-G2 LiquidSmooth Q&A Thread[/CENTER][/URL]
CLICK HERE TO SHOW LIQUIDSMOOTH SOME LOVE
[ROM][4.4.4][OFFICIAL][D800/801/802/803/LSVS980] LiquidSmooth [9/1]
The original OP
Official Builds of LiquidSmooth
DISCLAMER
Your warranty is now void.
I am not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed. Please do some research if you have any concerns about features included in this ROM before flashing it! YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.
Click to expand...
Click to collapse
LiquidSmooth is an aftermarket firmware based on the Android Open Source Project.
Dedicated to providing users with smooth, stable and fast ROMs. A Lightweight modified AOSP base, and then add the features you crave!
While we make every effort to test these builds as much as possible, we are not responsible for anything that may happen to your device.
We ask that you do your part to know your device and know how to recover from problems before you flash!
Liquid Members:
Liquid0624
Deadman96385
jsnweitzel
Somber73
TheBr0ken
Cdub50
Features:
Code:
Linaro 4.8 GCC Toolchain
O3 Strict-Aliasing & ISO C++11 Mode
ARM Optimized String Handling Routines
Linaro and Code Aurora Optimaztions
SaberMod 4.7 Toolchain for the kernel
Slim's DPI on the fly
Custom animation controls
TRDS 3.0 (Liquid Blackout in settings)
Active Display
Slim's QuickSettings
Ram Bar
T-Mobile Theme Engine
Privacy Guard
Built in SuperUser
Working WiFi Tethering
Cell Broadcasts
Slim's Configurable Power Menu
Slim's Configurable Nav Bar
Slim's Recents
Custom animation controls (Listview)
LockScreen Notifications
LiquidOTA
And way more than this...
Build Change Log:
Code:
**9/1**
Initial posting
Source Code:
Code:
[url="http://github.com/LiquidSmooth"]LiquidSmooth Github[/URL]
[url="https://github.com/IllusionRom/android_kernel_lge_msm8974"]IllusionROM's Kernel[/URL]
Downloads:
Code:
[url=" "]D803 ROM Download[/URL]
[url=" http://forum.xda-developers.com/showthread.php?t=2012857 "]BaNkS GApps Download[/URL]
Screenshots:
Please Support Liquid by Donating HERE
Know Issues - please do not post about bugs that you see on this list:
- Font Size picker does not work
- LCD Density force closes settings once you change the density and click the home or back buttons.
- Slim Pie needs a reboot before the trigger areas work
- There is no way to disable Nav bar and pie currently
- OTA App is still in the testing phase, so it will be buggy so do not use it.
If you see something not in this list, let me know below. :cyclops:
New Features:
Custom Progress Bar.
LG apps known to work:
RieGo's LG QuickRemote v8
My personal settings:
System DPI at 360
Navigation Height at 36
Action Launcher Pro
Kernel settings:
TCP Congestion Control: reno
I/O Scheduler: zen
CPU Governor: ondemand
CPU Max Frequency: 2265600
GPU Max Frequency: 320 MHz
Please note, I do not have this device, so let me know if you have issues or things don't seem right as I can't test this exact build.
Will test and report back
Sent from my g2 using Tapatalk
theghazi said:
Will test and report back
Sent from my g2 using Tapatalk
Click to expand...
Click to collapse
The link is live now, I was waiting for the upload to finish.
Edit: did it boot? I am very interested to hear feedback on this build!
Will test and report after
---------- Post added at 01:47 PM ---------- Previous post was at 01:30 PM ----------
OK so while flashing encountered some errors. TWRP 2.6.3.4 gives FAILED and philz gives a status 7 error. I ignored them and booted and the os was installed. Another thing is that there is no camera app. It is in system but it doesn't show up in drawer or anywhere. Thanks for the rom!
[email protected] said:
Will test and report after
---------- Post added at 01:47 PM ---------- Previous post was at 01:30 PM ----------
OK so while flashing encountered some errors. TWRP 2.6.3.4 gives FAILED and philz gives a status 7 error. I ignored them and booted and the os was installed. Another thing is that there is no camera app. It is in system but it doesn't show up in drawer or anywhere. Thanks for the rom!
Click to expand...
Click to collapse
Thank you for the feedback, I use TWRP and there has been an issue where if you wipe system TWRP has an issue formating it while it is mounted so if you manually unmount /system that should take care of it. I would guess the missing camera could be an issue with the flash.
Reginald476 said:
Thank you for the feedback, I use TWRP and there has been an issue where if you wipe system TWRP has an issue formating it while it is mounted so if you manually unmount /system that should take care of it. I would guess the missing camera could be an issue with the flash.
Click to expand...
Click to collapse
Checked in the mounts and system wasn't mounted. Ticked and unticked and it still had the same issue after flashing. I'll post here the flash log when I get home in a couple of hours
Alright, I have an updated build using IllusionRom's kernel and the SaberMod 4.7 Toolchain. This, to me, has been the fastest and most stable my G2 has run, I have had this tested on every G2 variant and so far it seems to be stable and run well. If you are feeling up to it please try the OTA, if not I will post links a bit later tonight.
Please feel free to give me feedback on the OTA experience and how the kernel works for you.
Changelog is in the OTA, to manually update go to Settings > About Phone > LiquidSmooth Updates if it does not show 3.0-20140331 use the menu to Refresh.
Thanks for checking out my build and I hope it works as well for you as it has been working for me!
I was hopping roms the last few days because of the call echo. Is that fixed in d802? I really need my daily Dosis of liquid.
Edit : nvm, looks like i can't tell the difference between d802&d803
Gesendet von meinem LG-D802 mit Tapatalk
ckyy said:
I was hopping roms the last few days because of the call echo. Is that fixed in d802? I really need my daily Dosis of liquid.
Edit : nvm, looks like i can't tell the difference between d802&d803
Gesendet von meinem LG-D802 mit Tapatalk
Click to expand...
Click to collapse
It is fixed on all of my builds. Here is the thread for the d802: http://forum.xda-developers.com/showthread.php?t=2656704 :cyclops:
Reginald476 said:
It is fixed on all of my builds. Here is the thread for the d802: http://forum.xda-developers.com/showthread.php?t=2656704 :cyclops:
Click to expand...
Click to collapse
Any d801 love?
Sent from my LG-D801 using Tapatalk
bouzouki said:
Any d801 love?
Sent from my LG-D801 using Tapatalk
Click to expand...
Click to collapse
I have one for each variant. :victory:
d801: http://forum.xda-developers.com/showthread.php?t=2656692
I know all I've been doing is posting bugs but I have to report my findings haha
When I go to Liquid OTA it says
"Unsupported Rom: The ROM developer has not enabled support for the OTA Updater! Please ask them (Kindly) to add support before using this app!
(otaupdater.otaid value empty or missing)"
I press "Ignore" and head to where the OTA should be. Pressed refresh a couple of times and it didnt show anything.
Thanks for showing interest in one of the variants that has gotten the least support compared to other variants. This looks promising!
[email protected] said:
I know all I've been doing is posting bugs but I have to report my findings haha
When I go to Liquid OTA it says
"Unsupported Rom: The ROM developer has not enabled support for the OTA Updater! Please ask them (Kindly) to add support before using this app!
(otaupdater.otaid value empty or missing)"
I press "Ignore" and head to where the OTA should be. Pressed refresh a couple of times and it didnt show anything.
Thanks for showing interest in one of the variants that has gotten the least support compared to other variants. This looks promising!
Click to expand...
Click to collapse
I must have screwed something up when I added it to the OTA.
No problem, I am just glad you are responding and giving feedback.
Edit: OTA should be fixed in the next build. The OP link has been updated.
Reginald476 said:
I must have screwed something up when I added it to the OTA.
No problem, I am just glad you are responding and giving feedback.
Edit: OTA should be fixed in the next build. The OP link has been updated.
Click to expand...
Click to collapse
Hm, I'd like to know what have been the results for other users. I flashed the latest 31/3 one and got the same failed, flashed gapps after, booted, same camera issue and when I went to the OTA updater it gave the same "device not supported" message. Apart from that, the rom is completely fine.
I took the d802 version, changed the updater-script and flashed Furnace 1.8.1 on top of it, and so far so good, no issues on the d803. Loving the work you've done on it, will use that one from now on
[email protected] said:
Hm, I'd like to know what have been the results for other users. I flashed the latest 31/3 one and got the same failed, flashed gapps after, booted, same camera issue and when I went to the OTA updater it gave the same "device not supported" message. Apart from that, the rom is completely fine.
I took the d802 version, changed the updater-script and flashed Furnace 1.8.1 on top of it, and so far so good, no issues on the d803. Loving the work you've done on it, will use that one from now on
Click to expand...
Click to collapse
Sorry, I meant the build after 31/3 will have a working OTA. If really like to hear from others as well. ~30 people have downloaded it so someone other than you should have installed it by now.
I will look at the build.prop and configs to make sure something wasn't missed in the bring up.
Sent from my LG-VS980 using Tapatalk
Reginald476 said:
Sorry, I meant the build after 31/3 will have a working OTA. If really like to hear from others as well. ~30 people have downloaded it so someone other than you should have installed it by now.
I will look at the build.prop and configs to make sure something wasn't missed in the bring up.
Sent from my LG-VS980 using Tapatalk
Click to expand...
Click to collapse
Oh my, missed that one haha
Hopefully some other users report soon!
Any reason Skype notifications would not be coming through on vs980?