{
"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"
}
WHAT?
This updater package contains Google Apps for Android 4.0.x, successfully tested with Evervolv and CM9 ROMs.
Download Zip to SD, boot into recovery, install Zip from SD. Now here comes the magic. In recovery mode, a Touchinterface-Installer starts, which lets you choose which Google Apps you want to install (Screen caps of installation process are attached to this post).
NOTE: You do NOT need a touch recovery to use the touch installer!
Click to expand...
Click to collapse
SELECTABLE APPS
Genie Widget
Gmail
Google Gallery3D
Google Maps (+Streetview)
Google Play Magazines
Google Play Music
Google Play Store
Google TTS
Quick Search
Talk
Voice
Voice Search
YouTube
Click to expand...
Click to collapse
DOWNLOAD
Download via dev-host.org (49.42 Mb)
Download via code.google.com (49.42 Mb)
Click to expand...
Click to collapse
CHANGELOG
gapps.ics.20120703-2-aroma.zip
- Added Google Gallery3D back in (v1.1.30682)gapps.ics.20120703-aroma.zip
- Added Google Play Magazines (v1.0)
- Updated Google Play Music (v4.1.513 -> v4.3.605.392829)
- Updated Google Maps (v6.7.1 -> v6.9.1)
- Added Streetview for Maps (v1.8.2.0)
- Updated YouTube (v3.5.5 -> v4.0.8)gapps.ics.20120624-aroma.zip
- Added libs to fix Google Talk Video Chat
- Added lib to fix Google TTS Engine
- Removed Gallery (because it's the same as included in system by default)gapps.ics.20120530-aroma.zip
- Initial release
Click to expand...
Click to collapse
NOTE
Some Apps, like SetupWizard, ServicesFramework or LoginService, are NOT in the custom selection list. These Apks are being installed no matter what apps you select (because you need them anyway).
Click to expand...
Click to collapse
LEGAL
The publisher is not involved with the creation of the Google Apps packages. The packages are found on the Internet, tested by a variety of community members, and if they pass testing and fill a need, they are marked as recommended by the Android community, and provided for download via trusted mirrors such as code.google.com. The Google Apps are the intellectual property of Google Inc., and are provided to restore the applications which come on devices which are licensed to have Google's proprietary code.
Click to expand...
Click to collapse
Credits to amarullz for AROMA!
Nice idea Bexton.
Sent from my Nexus One using Tapatalk 2
Will it work with other recoveries? Ty
no , if it's touch Installer , it's only for 4ext recovery
unfortunately 4ext didnt work for me when i was flashing flashable custom blackrose hboot resizing. but since am over that ill try 4ext again. by the way OT - how do i delete 4ext rec rom backups? i cant find them on file manager? ty
Great Job on the OP, ahihihihi
1st post:
[...] (You do NOT need a touch recovery to use the touch installer!)
Click to expand...
Click to collapse
lolobabes said:
Will it work with other recoveries? Ty
Click to expand...
Click to collapse
I tested it successfully with 4Ext Recovery Touch (v1.0.0.5 RC5), with latest CWM (recovery-clockwork-5.0.2.0-passion.img) and with the modified CWM version that Texasice initially released with his first Alpha. Those three are definitely working.
lolobabes said:
unfortunately 4ext didnt work for me when i was flashing flashable custom blackrose hboot resizing. but since am over that ill try 4ext again. by the way OT - how do i delete 4ext rec rom backups? i cant find them on file manager? ty
Great Job on the OP, ahihihihi
Click to expand...
Click to collapse
To delete ROM Backup (i've asked the same question to Madmaxx , creator of 4ext )
1)go sd card
2) find clockworkmod folder
3)go in Backup folder
4)All ROMs are in this folder
Thx button if i helped
Came across this and glad I did because this is really nice. Had to play around with being able to get the touchscreen config going for the Dinc but got it going now using these values: 1.85, 43, 1.12, 39
We're thinking of using this for the gapps we link to for Evervolv. The only issue I see is the need for different touchscreen configs for the different devices. If I read the aroma info correctly though, you can read in from a prop file so could get the value of ro.product.device and set the config based on that.
Anyways, thanks for making this great way to install gapps! And btw, no need to have my name in the splash and such...I just bundle up the gapps stuff that works for our Evervolv builds. You and amarullz are the ones to thank for this
Edit: tweeted about it - link
MongooseHelix said:
Came across this and glad I did because this is really nice. Had to play around with being able to get the touchscreen config going for the Dinc but got it going now using these values: 1.85, 43, 1.12, 39
We're thinking of using this for the gapps we link to for Evervolv. The only issue I see is the need for different touchscreen configs for the different devices.
Click to expand...
Click to collapse
Yea, you've probably read my comment in the aroma-config file. and a bit of research shows that many aroma-users have to struggle with getting a working touchscreen calibration. best way seems to be using the calibration tool a few times and take an average value. Also, i've found a post by amarullz, suggesting, when use the calibration tools, to tap and wait about 1/2 second before you release it.
MongooseHelix said:
If I read the aroma info correctly though, you can read in from a prop file so could get the value of ro.product.device and set the config based on that.
Click to expand...
Click to collapse
You don't have to deal with prop files for this.
The prop files are being generated on the fly by aroma-config. that's because aroma-config and updater-script run in different processes and can't share it's memory resource. also, updater script's functions are mainly limited to the filesystem - except for file_getprop. So the only possible way to communicate is with temporary files. aroma-config saves results from installer ui (via writetmpfile) to a temporary prop file and updater-script can then (via file_getprop) read these files.
But you can use sysprop directly from within aroma-config file. Something like the following should work
Code:
if sysprop("ro.product.device")=="passion" then
calibrate("7.80","28","7.80","28");
endif;
if sysprop("ro.product.device")=="bravo" then
calibrate("8","-20","8","-20");
endif;
So, if you want to create a cross-device-compatible installer you would need to get a list of working calibration data foreach device and then just do like above.
Awesome work brotha! Glad now we can use what GAPPS we want, when installing ROMs without any Gapps...
xeloni said:
To delete ROM Backup (i've asked the same question to Madmaxx , creator of 4ext )
1)go sd card
2) find clockworkmod folder
3)go in Backup folder
4)All ROMs are in this folder
Thx button if i helped
Click to expand...
Click to collapse
Frankly when reading your response i was a bit skeptical but youre right! Why would it be in cwm folders? Lol
lolobabes said:
Frankly when reading your response i was a bit skeptical but youre right! Why would it be in cwm folders? Lol
Click to expand...
Click to collapse
4ext checks if you have ROM Manager installed. If so, it will place backups in the clockwordmod directory, so they are available to ROM Manager.
What's the difference between MongooseHelix's gapps and the 20120429 Goo.IM gapps? Why should I install MH's version?
acdbx said:
What's the difference between MongooseHelix's gapps and the 20120429 Goo.IM gapps?
Click to expand...
Click to collapse
The GApps at http://goo.im/gapps are packed by CM. MongooseHelix is part of the Evervolv team. He bundles up the GApps stuff that works for their Evervolv builds.
acdbx said:
Why should I install MH's version?
Click to expand...
Click to collapse
Nobody asked you to install a certain package?! Feel free to install whatever package you want. However, if you'd ask me and if you're running an Evervolv (based) ICS build, i'd recommend using MongooseHelix's GApps packages to ensure full compatibility.
Bexton said:
The GApps at http://goo.im/gapps are packed by CM. MongooseHelix is part of the Evervolv team. He bundles up the GApps stuff that works for their Evervolv builds.
Nobody asked you to install a certain package?! Feel free to install whatever package you want. However, if you'd ask me and if you're running an Evervolv (based) ICS build, i'd recommend using MongooseHelix's GApps packages to ensure full compatibility.
Click to expand...
Click to collapse
Are MH's packages using newer gapps that haven't made it to goo.im? I'm just curious if I'm missing out on the latest/greatest by sticking to goo.im gapps.
acdbx said:
Are MH's packages using newer gapps that haven't made it to goo.im? I'm just curious if I'm missing out on the latest/greatest by sticking to goo.im gapps.
Click to expand...
Click to collapse
Both are build off of the 4.0.4 source. It's really more about compatibility, i think.
Bexton said:
4ext checks if you have ROM Manager installed. If so, it will place backups in the clockwordmod directory, so they are available to ROM Manager.
Click to expand...
Click to collapse
totally makes sense, ta... ahihihihi
hhmm google music play.. does not ask for my user.. so no syncronization stuff
Sent from my Nexus One using xda premium
yeradis said:
hhmm google music play.. does not ask for my user.. so no syncronization stuff
Sent from my Nexus One using xda premium
Click to expand...
Click to collapse
Thanks for your feedback. Google Music isn't available in Germany so i did not recognized that issue, when i tested the installer. A couple of questions: 1.) Have you tried to install the "original" GApps package from MongooseHelix? And if so, does Google Music performs the sync then? 2.) Is your Google Account connected at all? If not, have you tried to connect to your Google Account via different App (like Market, Gamil etc) and then try to sync Music?
Related
◥███◣ CriskeloRom◥███◣[JKAY-ICS Theme-BLN-CallREC][DD-02/28][XWKL1-Base][KH7-Modem][03/05][FINAL/STABLE/BATTERY FRIENDLY]
{
"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"
}
Folks, enjoy one of the highly rated ROMs in I9100 Forum, CriskeloRom; find all in and out information about this ROM from the link given below.
[FONT="]
[/FONT][FONT="]Original ROM link in I9100 Forum: http://forum.xda-developers.com/showthread.php?t=1168836[/FONT]
Before you install this ROM:
1. Take a Nandroid Backup [To keep a copy of the Backup on a PC/Mac is best practice].
2. Use Titanium Backup or Astro File Manager to backup your Apps,etc.
How to install:
***Please carefully read release notes of respective Version before flashing***
You must have CWM already installed.
1. Download Criskelo_v2.1_full.zip and place it on your SD card.
2. Boot into Recovery
3. Wipe data/factory reset
4. Wipe cache partition
5. Go to advanced
6. Wipe dalvik cache
7. Install Criskelo_v2.1_full.zip
8. Boot up phone
9. Initial Boot will take a while, please be patient.
Download links:
Version:2.1 ( Full and Final)
Thin version, please read release notes for list of removed stuff.
Link#1: https://docs.google.com/uc?id=0B9m6MUci5lmiNmNXUjJ0c1VRVFdBOF91SUhQLXZYQQ&export=download
Link#2: http://dev-host.org/GeU
Update: new file name and new download links.
reserved.
Release Notes
Version 1 [02/16/2012]
Just Hellraised, no changes to original ROM work
To install, follow “Before you install this ROM” and “How to Install” in OP.
Version 2 [02/23/2012]
Entropy’s latest Daily Driver Kernel (02182012-B)
Removed some craps to make this version light weight (FmRadio, Sns*, SevenEngine, SocialHub, PanningTryActually, LiveWallpapers, Microbesgl, Swype, WlanTest, lcdtest,CriskeloROM add-on,etc)
Fixed wifi region issues – Thanks to Entropy
If you are already on Version 1, this version does NOT need full wipe/factory reset, you can simply flash Version 2 on top of Version 1, coming from different ROM or flashing CriskeloROM first time, then follow "Before you install this ROM" and "How to Install" in OP.
[FONT="]Thanks to evodon84 and micjenks for testing version 2[/FONT]
Version 2.1 [03/05/2012] <<=======[ *******FINAL RELEASE**********]
This is final version.
Default language was changed to English from Spanish ( Sorry, I heard you curse me )
Build.prop tweaks are applied and tested.
Entropy’s DD Kernel (02282012)[This is stable/battery friendly/last tested on this ROM].
Removed some more apps in addition to that of V2 (FactoryTest, alarmsolo, googlefeedback, memo, SelftestMode, Polarisoffice)
If you are already on previous versions of this ROM, this version (2.1) does NOT need full wipe/factory reset, you can simply flash Version 2.1, coming from different ROM or flashing CriskeloROM first time, then follow "Before you install this ROM" and "How to Install" in OP.
Big thanks to everyone who supported this ROM.
I'm running this right now, hellraised through flashaholics. Did you make any difference from the default Criskelo?
Thanks for sharing
Yeah for google docs
Thanks for sharing and a big thanks for using google docs to share.
It's getting hard to find stuff anymore with all the sharing sites closing their doors.
naturallyfrozen said:
I'm running this right now, hellraised through flashaholics. Did you make any difference from the default Criskelo?
Click to expand...
Click to collapse
No..this is pure CriskeloRom..with no flashaholics options like init.d ,etc selected.
Okaaaaayyyy. Never used google docs before... how do we download the rom again?
Sent from my GT-I9100 using xda premium
Said r copy of flash cards?
Sent from my SGH-I777 using Tapatalk
kamots said:
Okaaaaayyyy. Never used google docs before... how do we download the rom again?
Sent from my GT-I9100 using xda premium
Click to expand...
Click to collapse
There is download link in OP, click on it and top right corner of the download page you will see download button.
<disregard>
Just flashed, thanks OP
Really liking this Rom so far it is super polished and has tons of features built in. Thanks OP!
evodon84 said:
Really liking this Rom so far it is super polished and has tons of features built in. Thanks OP!
Click to expand...
Click to collapse
Good to hear you liked it, meanwhile please share your experience with ROM in this thread as and when available.
Love to try this rom but cant access google docs.
gadget069 said:
Love to try this rom but cant access google docs.
Click to expand...
Click to collapse
download link is not working?
if download link takes you to download page, on top right corner you will see download button.
rav4kar said:
download link is not working?
if download link takes you to download page, on top right corner you will see download button.
Click to expand...
Click to collapse
All i get is this
The connection has timed out
The server at www.google.com is taking too long to respond.
The site could be temporarily unavailable or too busy. Try again in a few
moments.
If you are unable to load any pages, check your computer's network
connection.
If your computer or network is protected by a firewall or proxy, make sure
that Firefox is permitted to access the Web.
Click to expand...
Click to collapse
gadget069 said:
All i get is this
Click to expand...
Click to collapse
Hmm.. this is weird, I just checked and was able to download zip file, can you try it later ..or some else should confirm if it's a link issue or download/network/firewall issue at your end.
rav4kar said:
Hmm.. this is weird, I just checked and was able to download zip file, can you try it later ..or some else should confirm if it's a link issue or download/network/firewall issue at your end.
Click to expand...
Click to collapse
My phone can access it with the google doc app, but i ant figure out how to download it to the phone so i tried using my pc to download, i do have a new router that might be causing this but doubt it.
just flashed and on initial boot up. All I get is black. dunno if the phone is on or off. is this normal?
Alucardis666 said:
just flashed and on initial boot up. All I get is black. dunno if the phone is on or off. is this normal?
Click to expand...
Click to collapse
huh, it worked for me on the first try, I came from Hellraised HydroAOSP, and Shep's MIUI prior to flashing.
{
"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"
}
WHAT?
This updater package contains Google Apps for Android 4.1.x, successfully tested with Evervolv and CM10 ROMs.
Download Zip to SD, boot into recovery, install Zip from SD. Now here comes the magic. In recovery mode, a Touchinterface-Installer starts, which lets you choose which Google Apps you want to install (Screen caps of installation process are attached to this post).
NOTE: You do NOT need a touch recovery to use the touch installer!
Click to expand...
Click to collapse
SELECTABLE APPS
Gmail
App Version: 4.1.2
Version Code: 403
Google Calendar
App Version: 4.1-403059
Version Code: 201206270
Google Gallery3D
App Version: 1.1.40000
Version Code: 40000
Google Maps + Streetview
App Version: 6.11.1 / App Version: 1.8.1.0
Version Code: 610002002 / Version Code: 18100
Google Now (optional install /w or /wo offline voice recognition)
App Version: 2.0.5.443668
Version Code: 210020005
Google Play Books
App Version: 2.5.83
Version Code: 20583
Google Play Magazines
App Version: 1.0
Version Code: 121741136
Google Play Movies
App Version: 2.0.21
Version Code: 20210
Google Play Music
App Version: 4.3.606.400900
Version Code: 606
Google Play Store
App Version: 3.7.15
Version Code: 8013015
Google Talk (optional installable video chat plugin)
App Version: 4.1-392829
Version Code: 330
Google TTS Engine
App Version: 4.1-392829
Version Code: 16
TalkBack (Accessibility Service)
App Version: 3.1.1
Version Code: 68
SELECTABLE WIDGETS
Genie Widget (News & Weather)
App Version: 1.3.11
Version Code: 1311
Google Ears Widget
App Version: 1.0.1
Version Code: 2
Click to expand...
Click to collapse
DOWNLOAD
gapps-jb-aromainstaller-20120802-signed.zip (60.7 Mb)
gapps-jb-aromainstaller-20120816-signed.zip (85.6 Mb)
gapps-jb-aromainstaller-20120902-signed.zip (87.6 Mb)
Click to expand...
Click to collapse
CHANGELOG
2012/09/02
- Changed Google Calendar to 4.1.1-403059 version
- Updated Google Maps
- Updated Google Now
2012/08/16
- Updated all core adapter and service apps
- Updated framework files
- Added libpatts_engine_jni_api.so to fix speech services
- Certain Apps are being installed to /data, instead of /system partition
- Added Google Genie Widget
- Added Google Latin Ime Dictionary Pack
- Updated Google Maps
- Updated Google Now
- Added option to install Google Now /w or /wo offline dictation
- Added Google Play Books
- Added Google Play Magazines
- Added Google Play Movies
- Updated Google Play Music
- Updated Google Talk
- Added optional video chat pugin for Google Talk
- Added Google Talkback
- Added Google TTS
2012/08/02
- Initial release
Click to expand...
Click to collapse
NOTE
Some Apps, like SetupWizard, ServicesFramework or LoginService, are NOT in the custom selection list. These Apks are being installed no matter what apps you select (because you need them anyway).
Click to expand...
Click to collapse
LEGAL
The publisher is not involved with the creation of the Google Apps packages. The packages are found on the Internet, tested by a variety of community members, and if they pass testing and fill a need, they are marked as recommended by the Android community, and provided for download via trusted mirrors such as code.google.com. The Google Apps are the intellectual property of Google Inc., and are provided to restore the applications which come on devices which are licensed to have Google's proprietary code.
Click to expand...
Click to collapse
Credits to amarullz for AROMA!
Im getting an error when trying to install this....what am I doing wrong?
ctfrommn said:
Im getting an error when trying to install this....what am I doing wrong?
Click to expand...
Click to collapse
Rom? What error?
Sorry....Drew's JB rom, and when I tried to flash in recovery it simply said error opening and quit. I am using 4EXT recovery.
ctfrommn said:
Sorry....Drew's JB rom, and when I tried to flash in recovery it simply said error opening and quit. I am using 4EXT recovery.
Click to expand...
Click to collapse
To get it right; you were not able to even start the installer, correct? If you have signature verification enabled; have you tried to disable it and try again?
Bexton said:
To get it right; you were not able to even start the installer, correct? If you have signature verification enabled; have you tried to disable it and try again?
Click to expand...
Click to collapse
Yes, that is correct. It would not start and sig verification is off, even if it does say its signed I always leave it off. I may try downloading the file again, I suspect it might be a corrupted download.
I downloaded and it installed correctly and the rom is working fine...
Thanks bexton (hit thanks button also )
But i am using the CM10 rom... Only problem i have is in that rom
Play Store is giving FC's.. Cant do anything there.. Cant understand.
Sorry, was obviously user error....not the 1st time there Is working fabulously, thank you sir!
I assume these are the latest Gapps correct? The 7/26 ones?
ctfrommn said:
Yes, that is correct. It would not start and sig verification is off, even if it does say its signed I always leave it off. I may try downloading the file again, I suspect it might be a corrupted download.
Click to expand...
Click to collapse
I downloaded the file from the link to check whether the upload was corrupted. But for me it works fine with Evervolv JB + 4Ext. No idea..!?
gregferns said:
I downloaded and it installed correctly and the rom is working fine...
Only problem i have is in that rom Play Store is giving FC's.. Cant do anything there.. Cant understand.
Click to expand...
Click to collapse
Hmm, hard to say. Maybe try to delete the cache + dalvik-cache via recovery, and/or try to fix permissions and if that won't work try to delete everything via adb and push again the attached apk.
Code:
adb remount
adb shell rm /system/Phonesky.apk
adb shell rm /data/app/com.android.vending-1.apk
adb shell rm -rf /data/data/com.android.vendig
adb reboot
adb remount
adb push /local/path/to/Phonesky.apk /system/app
adb shell chmod 644 /system/app/Phonesky.apk
adb reboot
ctfrommn said:
Sorry, was obviously user error....not the 1st time there Is working fabulously, thank you sir!
Click to expand...
Click to collapse
Welcome. Glad to hear you got it working. So, what was the error (just in case others might have that error, too)?
ctfrommn said:
I assume these are the latest Gapps correct? The 7/26 ones?
Click to expand...
Click to collapse
Not really.. It's basically the 7/13 ev package. But updated play store (from 3.7.11 to 3.7.15) and added latest gmail and play music.
Bexton said:
Welcome. Glad to hear you got it working. So, what was the error (just in case others might have that error, too)?
Not really.. It's basically the 7/13 ev package. But updated play store (from 3.7.11 to 3.7.15) and added latest gmail and play music.
Click to expand...
Click to collapse
I am guessing the download or the file transfer was incomplete or corrupt. The re downloaded file was slightly larger.
I have been using the 7/26 Gapps straight from Goo.im, I will be interested to see if there is any noticeable difference. The package is a lot smaller so that should help.
Is this package usable with desire? If yes thank and if not I ask you: can you do it for desire please?
Only if it's fast for you
Sent from my HTC Desire using xda app-developers app
ctfrommn said:
I am guessing the download or the file transfer was incomplete or corrupt. The re downloaded file was slightly larger.
Click to expand...
Click to collapse
Okay.
ctfrommn said:
I have been using the 7/26 Gapps straight from Goo.im, I will be interested to see if there is any noticeable difference. The package is a lot smaller so that should help.
Click to expand...
Click to collapse
My package is a lot smaller because this is not a multi-device-compatible package, like the one at goo.im. The one(s) at goo.im include specific libs for non-neon devices (~15 Mb) and files for face-unlock (~25 Mb). We don't need those files for the Nexus One. Also, this package does not include Genie-Widget, Talkback and Google-TTS, which are included in the packages at goo.im. In return, my package includes google play music, which is not included in the goo.im-packages. That's the reson for the different file sizes. The app versions should be identical, though.
Hope this helps.
paolo-red1 said:
Is this package usable with desire?
Click to expand...
Click to collapse
To be honest: no idea!? maybe, maybe not
good job bexton!!!
Bexton said:
Okay.
My package is a lot smaller because this is not a multi-device-compatible package, like the one at goo.im. The one(s) at goo.im include specific libs for non-neon devices (~15 Mb) and files for face-unlock (~25 Mb). We don't need those files for the Nexus One. Also, this package does not include Genie-Widget, Talkback and Google-TTS, which are included in the packages at goo.im. In return, my package includes google play music, which is not included in the goo.im-packages. That's the reson for the different file sizes. The app versions should be identical, though.
Hope this helps.
Click to expand...
Click to collapse
Thanks for the clarification....and all the hard work on this!
Bexton said:
Okay.
My package is a lot smaller because this is not a multi-device-compatible package, like the one at goo.im. The one(s) at goo.im include specific libs for non-neon devices (~15 Mb) and files for face-unlock (~25 Mb). We don't need those files for the Nexus One. Also, this package does not include Genie-Widget, Talkback and Google-TTS, which are included in the packages at goo.im. In return, my package includes google play music, which is not included in the goo.im-packages. That's the reson for the different file sizes. The app versions should be identical, though.
Hope this helps.
Click to expand...
Click to collapse
hello thanks for all the work you put in,
just wondering if its possible to add the Genie widget as a selectable option?
BloodBaron said:
hello thanks for all the work you put in,
just wondering if its possible to add the Genie widget as a selectable option?
Click to expand...
Click to collapse
Atm I'm trying to get voice control for Google Now working in German. Let me finish this first before pushing an updated installer version. And since Genie widget is just a tiny one, I can include that in the updated version, too.
Bexton said:
To be honest: no idea!? maybe, maybe not
Click to expand...
Click to collapse
I tested it. It works. Thanks
I had installed the 07 13 g apps available on TexasICe JB thread,
I would like to know whether i can flash your zip directly on this or I need to wipe some thing or I need a fresh installation of the ROM and than ur zip.
Pls guide
Thanks in adv.
Sent from my Nexus One using xda premium
{
"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 THE GOOGLE APPS IN ONE PACK
THIS IS A WORK IN PROGRESS -- PLEASE MAKE A BACKUP BEFORE TRYING
What is gExperience?
Its a pack that has ALL the Google Apps in one single place for which you can select individually what you want to install! This pack not only has the standard Google Apps but also what is available at the Play Store, including restricted apps not available in every country. It also has inverted versions for available apps. It also tries to install all possible apps to /data partition so you don't end up with no space in /system. Finally, you can choose to uninstall undeed files for your language (like Offline Google Now, Pico TTS). All of this fully customizable thanks to Aroma Installer.
What is included exactly?
You can check a list here. Please note that as of now there are some apps not available for install (even though they show up in the installer).
These unavailable apps are:
All Google TV apps (if someone knows where to get them, please PM me)
Google Catalogs (if someone knows where to get it, please PM me)
Google Apps Device Policy
Google Apps Lookup
Google Chrome to Phone (1 request so far)
Google Analytics
Google Authenticator
Google Finance
All Google IME
Google IO 2012
Orkut
Schemer
If I receive 5 or more request for any of these apps I will try to include them
How do I install this?
Just like any script in CWM Recovery. Just select the zip and let Aroma guide you through the rest.
Can I install on my NOT Defy device?
Is my understanding that this script should work with no problems with Bravo and Milestone 2 devices. It should work with other devices as there's no device dependent scripting. Please note that this pack DOES NOT includes FaceLock as it is not supported for my device.
Currently known supported devices:
Defy
Is there anything else I should know?
YES, please be aware that whatever you choose NOT to install will be DELETED from your device (if you have that app installed obviously). This only applies for apps installed with gExperience.
Can I install on top of my full size gapps?
You can, but it can lead to unexpected results. One thing you have to understand is that the app name can have any name (it will not affect the name of the app when you install it). For example, I can name the YouTube apk as "XDAYT.APK". It will install normally and with no problems but there's no way for the script to know the name of the file of every app installed so this script will only install and uninstall apps installed by itself. You're probably better off installing this on a fresh ROM with no gapps installed.
Can I translate it to my language?
Sure you can! Please point your browser here: http://www.getlocalization.com/gEx/
Languages supported:
English (by me) | UP TO DATE
Spanish (by me with some help from edqu) | UP TO DATE
Polish (thanks to trurl3) | 0.2 beta
Portuguese (Brazil) (thanks to GustavoMartins1 / claudiobastos) | UP TO DATE
Hungarian (thanks to hunya) | UP TO DATE
Chinese (Taiwan) (thanks to wjh) | 0.2 beta
Can I send you my calibration_matrix data?
You don't need to do it anymore! Amarullz updated the Aroma Installer and now calibration is not required anymore!:victory:
I want to report a bug! What shall I do?
Try to give me as much information as possible (like gExperience version, device, apps selected, etc). Also you could save the log right after the script finishes. You will see a "Save Log" button on the bottom left hand side.
This is too much for me! Is there a lighter version?
Yes, please see this thread.
Credits:
AnTerNoZ's for the custom gapps for Defy
Bexton for the Offline Voice Recognition for Google Now uninstall script
Amarullz for the Aroma Installer
TUN_SD for the inverted gapps
Articudos for the Galaxy Nexus 4.1.2 gapps
DOWNLOAD gExpencience 0.3b beta (~215MB):
http://goo.gl/oa8C6
PLEASE BEAR IN MIND I'VE BEEN A FATHER RECENTLY AND PROBABLY ABOUT TO LOSE MY JOB SO I WILL UPDATE THIS WHENEVER I HAVE A CHANCE
Changelog
0.3b beta (16/10/2012)
Updated Play Store to 3.9.16
0.3 beta (14/10/2012)
Updated GAPPS base to 4.1.2
System Information screen can be translated now
Updated Aroma Installer to 2.56 (capacitive buttons working again)
Updated Drive / My Tracks / Streetview / YouTube / Gesture Search
Updated Google+ / Google Earth / Google Translate / Google Play Music
Removed spaces from installed apps
Fixed installation of Google Voice instead of Voice Search
Added deletion of data on sdcard for Google Play Books/Magazines/Videos
Updated inverted versions
0.2 beta (03/10/2012)
Updated Aroma Installer to 2.55 (no more calibration required)
Added Portuguese (Brazil) language (user contributed)
Added Hungarian language (user contributed)
Added Chinese language (user contributed)
Removed debug info
Improved mounting/unmounting script
Fixed splash animation
Fixed a few cosmetic issues
0.1b (30/09/2012)
Initial beta release
Based on Custom GAPPS script
List of current known bugs, glitches, etc
Some apps unavailable even though they appear on the list (check OP)
Some apps FCs on Galaxy Nexus (1 report so far)
Google Play Movies FCs
GoogleEars frozen for users outside United States (can be unfrozen by ie Titanium Backup)
Is it possible to use on different devices?
Sent from my Galaxy Nexus using XDA Premium HD app
Good work and great effort, will try when flashing the next build.
Sent from my MB526 using xda premium
Great Work!
You've done a superb job of bringing together all possible Gapps...
Loved your older release...
Will flash this one as soon as the next JB build from Quarx comes out.
firered365 said:
Is it possible to use on different devices?
Click to expand...
Click to collapse
I would like to think so, yes. It should work with every device available but right now is a work in progress. I've posted in the Defy subforum as I have a Defy and I can support it. You can try and let me know how it goes! (Please do a backup first).
J_M_V_S said:
I would like to think so, yes. It should work with every device available but right now is a work in progress. I've posted in the Defy subforum as I have a Defy and I can support it. You can try and let me know how it goes! (Please do a backup first).
Click to expand...
Click to collapse
Tried it out, but some apps force close.
Sent from my Galaxy Nexus using XDA Premium HD app
firered365 said:
Tried it out, but some apps force close.
Click to expand...
Click to collapse
Ok, can you let me know which apps FC? This way I can improve the script! Thanks.
J_M_V_S said:
Ok, can you let me know which apps FC? This way I can improve the script! Thanks.
Click to expand...
Click to collapse
All of them except: Androidify, Chrome, Gmail, Google search, Google+, maps+bundled apps, Play Store, Navigation, talk.
Sent from my Galaxy Nexus using XDA Premium HD app
Thanks for this, looks very useful. I have to make the first request: Chrome to phone.
firered365 said:
All of them except: Androidify, Chrome, Gmail, Google search, Google+, maps+bundled apps, Play Store, Navigation, talk.
Click to expand...
Click to collapse
Thanks for reporting. Would it be possible for you the save the log and send it to me? ("Save Logs" button appears right after finishing installation).
mato_d007 said:
Thanks for this, looks very useful. I have to make the first request: Chrome to phone.
Click to expand...
Click to collapse
I'll note that down. If more people is interested in Chrome to Phone I'll add it
J_M_V_S said:
Thanks for reporting. Would it be possible for you the save the log and send it to me? ("Save Logs" button appears right after finishing installation).
Click to expand...
Click to collapse
I didn't save it.
Sent from my Galaxy Nexus using XDA Premium HD app
firered365 said:
I didn't save it.
Click to expand...
Click to collapse
Yeah..I supposed so. Too bad...well, if you ever try it again try to remember to save the logs
Would it be possible to send me you calibration_matrix info for Aroma?
J_M_V_S said:
Yeah..I supposed so. Too bad...well, if you ever try it again try to remember to save the logs
Would it be possible to send me you calibration_matrix info for Aroma?
Click to expand...
Click to collapse
Can you tell me where it is at?
Sent from my Galaxy Nexus using XDA Premium HD app
firered365 said:
Can you tell me where it is at?
Click to expand...
Click to collapse
Just updated the OP with this info:
Can I send you my calibration_matrix data?
Yes please. I will add it to the installer so you don't have to calibrate Aroma installer every time! Just download calibration.zip and then install it via CWM like any other script (Press Power button on first dialog to select no). After finishing the new data will be written to calibration.zip. Send it to me and let me know which device are you using! YOUR SYSTEM WILL NOT BE MODIFIED. IT WILL ONLY GET YOUR CALIBRATION DATA AND FINISH
J_M_V_S said:
Just updated the OP with this info:
Can I send you my calibration_matrix data?
Yes please. I will add it to the installer so you don't have to calibrate Aroma installer every time! Just download calibration.zip and then install it via CWM like any other script (Press Power button on first dialog to select no). After finishing the new data will be written to calibration.zip. Send it to me and let me know which device are you using! YOUR SYSTEM WILL NOT BE MODIFIED. IT WILL ONLY GET YOUR CALIBRATION DATA AND FINISH
Click to expand...
Click to collapse
Where is it located? Can't find it in sdcard nor system.
Sent from my Galaxy Nexus using XDA Premium HD app
New version 0.2 beta is up! Now you don't need calibration anymore! Also added a few more translations (thanks to all that contributed) and fixed a few bugs! Check OP for download link.
Hi and GG it looks so cool, but why not include ALL gaaps and during installation tick what you want/don't want ?
thanks
{
"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"
}
Flashing tips by @ramjet73, this should be read by everyone
http://forum.xda-developers.com/showpost.php?p=55228784&postcount=12583
This is an enhanced version of the 81c developer preview that google released.
It has currently been ported for Mako and Deb and improved for Hammerhead and Flo
It offers a permissive selinux policy, aosp merged in and rock solid stabilty along with drastic improvements in speed and smoothness.
It offers updated proprietary files, updated google apps, fonts, res files and animations from the newer sdks.
Click to expand...
Click to collapse
Deb does not have a working mobile radio yet, radio turns on but without access to the settings, we can't configure it. A work around is being worked on
Big thanks to @defconoi , @zyr3x , @percy_g2 , @ben1066 [MENTION=1050103] for improving and originally helping with the old lpv79 port to Mako.
Right now I rebased the entire project to clean it out and smooth it out
Huge thanks to @ramjet73 @bitstra @manueltts @skiman10 @psycho693 @jayfallen for helping me get it over to the other devices I don't have and testing everything I threw at them and the huge brainstorming and trying things I couldn't. It would have not been possible without these guys so please thank them
Click to expand...
Click to collapse
Warning. This has heavy ramdisk mods that are essential for it to work. You can flash current up to date "kit Kat kernels or L updaters only" but not full boot.imgs as this will break the ROM. If you do happen to flash a a boot.img, you can pull it out if the rom and fastboot flash boot boot.img
Hammerhead can only use L preview Kernels.
Remember, this is a port of a developer preview, there is already bugs in the official version from google and without the L code, we can not fix google's bugs. There are fixes to known problems in N7 2013 and N5 forums so if you do find them, please provide them with the bug
Click to expand...
Click to collapse
INSTALLATION INSTRUCTIONS
FIRST TIME FLASHING
Put the file onto your Internal Storage
Reboot into Recovery (CWM/TWRP]
"wipe data/factory reset"
"mounts and storage" -> "format system"
"install zip" -> "install zip from sdcard" -> choose the mako-bla-bla-zip and confirm flashing procedure
"reboot into system"
first boot may take up to 10 minutes - be patient
UPDATING
Put the latest L-bla-bla.zip onto your Internal Storage
Reboot into Recovery (CWM/TWRP)
"wipe data/factory reset"
"install zip" -> "install zip from sdcard" -> choose the [filename.zip] and confirm flashing procedure
"reboot into system"
Updater-script wipes the cache files so no need to wipe cache
Sources
Mako
GPL KERNEL SOURCE - github.com/Android-L-Porting-Team/android_kernel_mako
Flo, Deb and Hammerhead use the modifed stock preview with the kexec-hardboot patch directly provided by @tassadar to provide multirom support. Flo and Deb use the same kernel.
Hammerhead - http://forum.xda-developers.com/showpost.php?p=48508468&postcount=2
Flo - http://forum.xda-developers.com/showpost.php?p=45886584&postcount=2
We are using the rebase repos right now since they are cleaned out
Github https://github.com/Android-L-Porting-Team
Downloads
Stable - 9001
Full
Afh - https://www.androidfilehost.com/?fid=95747613655040641
Google Drive - https://drive.google.com/file/d/0By0vn8iv_zrVYUlFbmVrMEtHcDA/edit?usp=sharing
Dev-Host-
Mega-
Click to expand...
Click to collapse
Downloads
Stable - 9001
Slim -
Afh - https://www.androidfilehost.com/?fid=95747613655040642
Google Drive - https://drive.google.com/file/d/0By0vn8iv_zrVS1hDakt6VWM3WGc/edit?usp=sharing
Dev-Host
Mega-
Click to expand...
Click to collapse
slim builds have excess google apps cut out for those on a bandwidth budget or like to pick and choose their google apps from the play store
OT talk is welcomed in my threads and development is done in the open. I encourage involvement in the project in any way.
Please do not complain about OT, it encourages a fun and relaxed environment
Like the work I did, consider donating. I'm currently not working so it helps feed me
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BPFLE54YPRV92
Yes, my PayPal account is thatguy32404, I like to keep my banking stuff separated from my social account
nexus devices threads
Mako
http://forum.xda-developers.com/nexus-4/development/lpv-79-mako-port-beta-t2807446
deb
http://forum.xda-developers.com/nex...e/l-android-lpv-dev-deb-t2856915#post55016443+
flo
http://forum.xda-developers.com/nex...id-lpv-dev-flo-enhanced-t2856920#post55016534
hammerhead
http://forum.xda-developers.com/google-nexus-5/development/l-android-lpv-dev-n5-enhanced-t2856934
Changlelog.
Changlelog.
Stable-9001
Now over 9000!!!!!!
Updated selinux security policy
tracked down some missing permissions
did some other work but can't remember
B7.0.1
Flo & Deb
removed some excess apps that were replaced and I missed in b7
B7
updated fonts, res files, animations from the latest sdk
updater-script wipes cache files
updated some more google apps.
now using smart-art
force dns to google's public dns
B6
6 finishes up the rebasing work from 5 (5.9 was just a stepping stone and getting it out to other devices so we could work out all the kinks)
(Mako only info)
The rebasing work meant a lot of clean up and trying to get it as efficient as possible so from 5 to 6 is a big step and will be quite noticeable
(mako, flo, deb)
updated egl drivers are from qcom developer are in here which are newer then the preview ones
(Hammerhead )
Proper working sound now
(All)
Built in Busybox should be working. I tested the functions and seemed good to me.
Got rid of all the looping code and debugging code to speed everything up.
Updated the preview proprietary binaries to the latest version (some can't go all the way up and are stuck on a previous set or even original preview versions)
(Hammerhead has the latest preview egl drivers)
Built in google apps have been updated.
Introduction of slim builds for those on a bandwidth budget.
Can't think of what else.
Most kinks have all been worked out
Click to expand...
Click to collapse
B5.9
Rebased completely from scratch on 81c
improved reliability and stability.
Ported to Deb, Flo and Hammerhead
Beta 5
fully permissive sepolicy based on aosp, cleaned out a lot of crud
removed reliance on n5 frameworks, merged in some current aosp
improved smoothness and increased reliability, daily driver status
Beta 4
New Kernel
more smashy smashy bugs
Dpat09 said:
For all camera issues please try this: go to the Dev settings and disable nuplayer! I'm posting it again because I think it will be lost in all the posts! If it works hopefully the contributing devs will catch it and put it in the main post
Click to expand...
Click to collapse
reserved for @defconoi kernel info
Installed it now, works great. Thank you for bringing this to deb.
Now all we gotta do is figure out how to access the radio setting outside of the setting app since they aren't there.
I had to track down the radio files and pulled them out of 4.4.3 to get the radio to start but I don't have a deb so I can't troubleshoot it as well.
I'm using the n7 as a base for mako along with all the framework files but had to use the n5's apps. The problem with deb is that if you try to use non tablet apps, it breaks the multi user feature so that might not be am option there so a script or an app that replicates the setting and configure it to the network might have to be done
sykopompos said:
Now all we gotta do is figure out how to access the radio setting outside of the setting app since they aren't there.
I had to track down the radio files and pulled them out of 4.4.3 to get the radio to start but I don't have a deb so I can't troubleshoot it as well.
I'm using the n7 as a base for mako along with all the framework files but had to use the n5's apps. The problem with deb is that if you try to use non tablet apps, it breaks the multi user feature so that might not be am option there so a script or an app that replicates the setting and configure it to the network might have to be done
Click to expand...
Click to collapse
What's the difference between your port and my
http://forum.xda-developers.com/nexus-7-2013/development-lte/android-lpv81c-deb-t2849013
Just so you all know it was me who actually did all this stuff, @sykopompos is taking all the credit ? no but really without sykopompos and his wizardly ways there would be no way this would have gotten done. He was nice enough to help with the project, then "take it over" and get it done the right way. Make sure to give him a big thanks for taking time out of his day and working on this through the nights. Without him this might have never happened. Thanks a lot man!
Sent from my Nexus 7 LTE using Tapatalk
Ansanen said:
What's the difference between your port and my
http://forum.xda-developers.com/nexus-7-2013/development-lte/android-lpv81c-deb-t2849013
Click to expand...
Click to collapse
Give it a flash and come back and give me an answer.
Oh BTW, this should have been out like a month ago but I didn't realize my really stupid derp of not modifying the bootclasspath so it wouldn't boot. I didn't realize this till after I started work on flo so if @skiman10 was helping you, you might have a part of my earlier work in yours.
Also do you have the radio files in yours?
Hoping that you guys could figure out the radio issue, soon~ thanks!
jayfallen said:
Hoping that you guys could figure out the radio issue, soon~ thanks!
Click to expand...
Click to collapse
@skiman10 is looking into our options here since he has a deb.
This is gonna be a bit of a pain to figure out how to work around this
Being that the file is almost 500mb, I assume the gapps are included in the file?
Yes @papikev thats right.
papikev said:
Being that the file is almost 500mb, I assume the gapps are included in the file?
Click to expand...
Click to collapse
Yes... Because the L apps are speeeeecccciiiiaaaaallll. Very special.
skiman10 said:
Yes... Because the L apps are speeeeecccciiiiaaaaallll. Very special.
Click to expand...
Click to collapse
oooooh, sounds phuuuuuun, Thanks guys.
Now I need L for Nexus 10 and I'll be happy
Fatal1ty_18_RUS said:
Now I need L for Nexus 10 and I'll be happy
Click to expand...
Click to collapse
Buy me a Nexus 10 and your wish will be granted lol
Once the radio gets straightened out, this will be (yet it already is) a killer rom. Very smooth. Nice new features on L. First time running it, good stuff guys. 5 star this thread. Look forward to the future with this one.:good:
skiman10 said:
Buy me a Nexus 10 and your wish will be granted lol
Click to expand...
Click to collapse
You mean buy me one...
sykopompos said:
You mean buy me one...
Click to expand...
Click to collapse
I got this one... Your apprentice is ready!
skiman10 said:
I got this one... Your apprentice is ready!
Click to expand...
Click to collapse
Good, because it wouldn't be one bit easy
VS985 23B Lollipop 5.0.1 apps report & zips of safe to disable & DELETE 632 MB
First, thank you to:
@annoyingduck
@avicohh
@autoprime
@bweN diorD
@Chainfire
@deathsquad737
@high247
@hokiealumnus
@HolyAngel
@hsbadr
@IllegalArgument
@jgkim
@justiz33
@lexluthor
@qbking77
@quangnhut123
@Technical12
@TonyStark
@Unjustified Dev
@xdabbeb
Disclaimer: I am not responsible for anything, this is just information.
Rooted (instructions for those who are unrooted below the Rooted section)
Here's what I've uninstalled using the Debloater v3.7 (thanks @gatesjunior) and files I've removed with Total Commander (free version) with the Total Commander Android ADB v7.4 Plugin. FYI I replaced the ADB and two ADB DLLs in the plugin's bin folder with the latest from the Android SDK 21 for Lollipop and then it started working.
Here are lists, Google Sheet lists and downloads in 7-Zip format. Download the free 7-Zip or ZArchiver from the Play Store to extract what you need. The reason I use a different format than zip is because 7-Zip compresses better and also so people don't think these are flashable zips.
To restore these files, after extracting what you need, copy or move them to the equivalent folder in your root. I.E. If it's in system\priv-app here, it should go in root\system\priv-app. After copying or moving all files that belong to the app(s) you want back, change the files' permissions to be the same as other files that were already present in the same main (priv-app, app, etc) folder or subfolder.
Amazon
Full path including filename
system\app\AmazonIMDb\AmazonIMDb.apk
system\app\AmazonMobile\AmazonMobile.apk
system\app\AmazonMobile\lib\arm\libA9BarcodeDecoder.so
system\app\AmazonWidget\AmazonWidget.apk
system\priv-app\AmazonAppstore\AmazonAppstore.apk
system\priv-app\AmazonAppstore\lib\arm\liblatency.so
system\priv-app\AmazonAudible\AmazonAudible.apk
system\priv-app\AmazonAudible\lib\arm\libAAX_SDK.so
system\priv-app\AmazonKindle\AmazonKindle.apk
system\priv-app\AmazonKindle\lib\arm\libNativeLibraryWrapper.so
system\priv-app\AmazonMP3\AmazonMP3.apk
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 64 MB 7-Zip archive of these files.
audio-HelpContents-media
Full path including filename
system\app\LGVZWHelp\LGVZWHelp.apk
system\app\LGVZWHelp\lib\arm\libdummy_32.so
system\audio\ui\cam_snap_0.ogg
system\audio\ui\camera_click.ogg
system\audio\ui\camstart.ogg
system\audio\ui\camstop.ogg
system\helpContents\howtosetupbluetooth.mp4
system\helpContents\howtosetupbluetooth.vtt
system\helpContents\howtosetupemail.mp4
system\helpContents\howtosetupemail.vtt
system\helpContents\howtosetupwifi.mp4
system\helpContents\howtosetupwifi.vtt
system\helpContents\makingcalls.mp4
system\helpContents\makingcalls.vtt
system\helpContents\usingyourphone.mp4
system\helpContents\usingyourphone.vtt
system\helpContents\VerizonMessages_HowTo_720x1280.mp4
system\helpContents\VerizonMessages_HowTo.vtt
system\helpContents\VZW_My_Verizon.mp4
system\media\bootanimation.zip
system\media\shutdownanimation.zip
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 93.1 MB 7-Zip archive of these files.
Google
Full path including filename
system\app\Books\Books.apk
system\app\CloudPrint\CloudPrint.apk
system\app\Maps\lib\arm\libcrashreporter.so
system\app\Maps\lib\arm\libgmm-jni.so
system\app\Maps\Maps.apk
system\app\Music2\Music2.apk
system\app\Newsstand\Newsstand.apk
system\app\PlayGames\PlayGames.apk
system\app\PlusOne\lib\arm\libcrashreporter.so
system\app\PlusOne\lib\arm\libcronet.so
system\app\PlusOne\lib\arm\libfilterframework_jni.so
system\app\PlusOne\lib\arm\libmoviemaker-jni.so
system\app\PlusOne\lib\arm\libphotoeditor_native.so
system\app\PlusOne\lib\arm\libwebp_android.so
system\app\PlusOne\PlusOne.apk
system\app\Videos\lib\arm\libWVphoneAPI.so
system\app\Videos\Videos.apk
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 57.6 MB 7-Zip archive of these files.
LG
Full path including filename
system\priv-app\LGMusic\LGMusic.apk
system\priv-app\LGMusic\lib\arm\libdummy_32.so
system\priv-app\LGMusicWidget\LGMusicWidget.apk
system\priv-app\LGMusicWidget\lib\arm\libdummy_32.so
system\priv-app\LGQMemoplus\LGQMemoplus.apk
system\priv-app\LGQMemoplus\lib\arm\libdummy_32.so
system\priv-app\LGTTS\LGTTS.apk
system\priv-app\LGTTSPAService\LGTTSPAService.apk
system\priv-app\LGTTSPAService\lib\arm\libmTalkSF.so
system\priv-app\Maluuba_QVoice\lib\arm\libspeex.so
system\priv-app\Maluuba_QVoice\Maluuba_QVoice.apk
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 103.3 MB 7-Zip archive of these files.
Third Party Apps
Full path including filename
data\app\com.clearchannel.iheartradio.controller-1\base.apk
data\app\com.clearchannel.iheartradio.controller-1\lib\arm\libaacdecoder.so
data\app\com.clearchannel.iheartradio.controller-1\lib\arm\libAppSdk.so
data\app\com.clearchannel.iheartradio.controller-1\lib\arm\librsjni.so
data\app\com.clearchannel.iheartradio.controller-1\lib\arm\libRSSupport.so
data\app\com.zynga.FarmVille2CountryEscape-1\base.apk
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libjni.so
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libmain.so
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libmobileapptracker.so
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libmono.so
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libsvengine.so
data\app\com.zynga.FarmVille2CountryEscape-1\lib\arm\libunity.so
system\app\Chrome\Chrome.apk
system\app\Chrome\lib\arm\libchrome.2171.93.so
system\app\Chrome\lib\arm\libchromium_android_linker.so
system\priv-app\com.gotv.nflgamecenter.us.lite\com.gotv.nflgamecenter.us.lite.apk
system\priv-app\SlackerRadio\SlackerRadio.apk
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 93.3 MB 7-Zip archive of these files.
Verizon
Full path including filename
system\app\VZWAVS\VZWAVS.apk
system\priv-app\MyInfozone\MyInfozone.apk
system\priv-app\MyVerizon\MyVerizon.apk
system\priv-app\VerizonFamilyBase\VerizonFamilyBase.apk
system\priv-app\VerizonIgnite\VerizonIgnite.apk
system\priv-app\VVM\VVM.apk
system\priv-app\VZCloud\lib\arm\libdc.so
system\priv-app\VZCloud\VZCloud.apk
system\priv-app\VZMessages\lib\arm\libaviary_moalite.so
system\priv-app\VZMessages\lib\arm\libaviary_native.so
system\priv-app\VZMessages\lib\arm\libexif_extended.so
system\priv-app\VZMessages\lib\arm\libNS.so
system\priv-app\VZMessages\lib\arm\librsjni.so
system\priv-app\VZMessages\VZMessages.apk
system\priv-app\VZMobileSecurity\lib\arm\libcloud_info_client.so
system\priv-app\VZMobileSecurity\lib\arm\libeka_serialization.so
system\priv-app\VZMobileSecurity\lib\arm\libgnustl_shared.so
system\priv-app\VZMobileSecurity\lib\arm\libjnihelper.so
system\priv-app\VZMobileSecurity\lib\arm\libksn_client.so
system\priv-app\VZMobileSecurity\lib\arm\libmcs.so
system\priv-app\VZMobileSecurity\lib\arm\libmcseng.so
system\priv-app\VZMobileSecurity\lib\arm\libnative.so
system\priv-app\VZMobileSecurity\lib\arm\libscan_kavd.so
system\priv-app\VZMobileSecurity\lib\arm\libscan_kavdlib.so
system\priv-app\VZMobileSecurity\lib\arm\libsignature_checker.so
system\priv-app\VZMobileSecurity\lib\arm\libstatistics.so
system\priv-app\VZMobileSecurity\lib\arm\libuds.so
system\priv-app\VZMobileSecurity\lib\arm\liburl_reputation.so
system\priv-app\VZMobileSecurity\VZMobileSecurity.apk
system\priv-app\VZNavigator\lib\arm\libnbgm_9.0.7.so
system\priv-app\VZNavigator\VZNavigator.apk
Click to expand...
Click to collapse
Google Sheet version with descriptions of functions of files, when known.
AndroidFileHost link to 77 MB 7-Zip archive of these files.
Unrooted
If you don't root 23B, the only option to debloat is to Disable stock apps through Androids interface.
There are additionally at least two pre-installed apps that can be totally uninstalled:
Farmville
&
iHeartRadio
iHateBloat! Uninstall those the normal way to uninstall Android apps if you don't want them.
If anyone notices any more, please post about it.
How to disable apps:
1. Go to settings by swiping down from the top of the screen and choosing the gear-wheel in the top right corner above the notification toggles.
2. Scroll down to the bottom of the "Device" section of Settings, choose "Application manager". It's the second one from the end in that section, two up from the "Personal" section.
3. Swipe left three times to the "All" section.
4. You can click the three-dot menu at the top right and sort by Name or Size.
5. Click an app you hope to disable. Some apps don't let you disable them.
6. I chose "Force Stop", "Disable", "Clear data" and when necessary "Clear cache". Note that sometimes one of these options will take care of some or all of the rest, but definitely not always in my observation.
7. Press Back to get back to the apps list.
8. Repeat steps 5-7.
You can swipe left once more to see all the apps that you have Disabled.
Following are screenshots of the original list of apps that can be disabled without any trouble or rooting.
In name order:
@hokiealumnus was nice enough to type out the names of the apps so you don' t have to bother with the pics. His list is -><- in post #4 below. Thanks @hokiealumnus!
{
"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"
}
In size order:
Please feel free to share your experiences disabling these and additional apps.
Thank you!
They install Farmville on the new update?? Really?????
gpost104 said:
They install Farmville on the new update?? Really?????
Click to expand...
Click to collapse
I could be wrong but I thought I also saw it on 10B.
Thanks for taking the time to do that! I took the liberty of listing them in text so folks don't have to sift through the screenshots.
Can Be Uninstalled said:
Farmville
iHeartRadio
Click to expand...
Click to collapse
Can Be Disabled said:
Amazon
Amazon app suite
Amazon Kindle
Amazon MP3
Appstore
Audible
Cloud
DT Ignite
FamilyBase Companion
Favorite Contacts Widget
FIle Manager
Google Play Books
Google Play Games
Google Play Movies & TV
Google Play Music
Google Play Newsstand
Google+
LG TTS+
Message+
Music
Music
My InfoZone
My Verizon Mobile
NFL Mobile
SLacker
Support & Protection
Verizion Location Agent
VZ Navigator
Click to expand...
Click to collapse
How do you like it so far? I'm torn on whether to go ahead with the upgrade or to just wait for HolyAngel to be able to update SkyDragon (for which he'll need root). The lack of root probably kills it for me, but the itch to flash is strong...
hokiealumnus said:
Thanks for taking the time to do that! I took the liberty of listing them in text so folks don't have to sift through the screenshots.
How do you like it so far? I'm torn on whether to go ahead with the upgrade or to just wait for HolyAngel to be able to update SkyDragon (for which he'll need root). The lack of root probably kills it for me, but the itch to flash is strong...
Click to expand...
Click to collapse
You're welcome and Thank You! I thought about doing that but decided to be lazy. Mind if I link to that in the OP (not that it's very far down)?
Whoops, skipped answering your Question. I like it, it's very smooth. At least with Lollipop (same as AOSP/CM) when doing the initial app sync on a fresh factory reset setup, it prompts for you to select apps that you do and don't want to install from the Play Store, or choose none at all. That was one of the things I hated and always tried to catch Android before it started downloading all my apps once I got in the habit.
Even though it doesn't substitute for Titanium Backup, at least there's that helpful feature. I like it a lot better now that I disabled most of the apps I won't use.
You can always re-downgrade, mid-upgrade and restore a backup if you don't like it.
roirraW "edor" ehT said:
Mind if I link to that in the OP (not that it's very far down)?
Click to expand...
Click to collapse
You're also very welcome...and please, feel free; no problem.
gpost104 said:
They install Farmville on the new update?? Really?????
Click to expand...
Click to collapse
roirraW "edor" ehT said:
I could be wrong but I thought I also saw it on 10B.
Click to expand...
Click to collapse
It is the DT Ignite app that is installing Farmville, iHeart Radio and more in the background without notification
http://www.greenbot.com/article/285...aller-spotted-on-t-mobile-verizon-phones.html
mapatton82 said:
It is the DT Ignite app that is installing Farmville, iHeart Radio and more in the background without notification
http://www.greenbot.com/article/285...aller-spotted-on-t-mobile-verizon-phones.html
Click to expand...
Click to collapse
Ah! Makes sense. I knew DT Ignite could install apps without notice but I "never noticed" it actually do it before. LOL! Of course, I'm usually debloated.
Thanks! I'll update the OP later.
Added to OP:
Rooted (instructions for those who are unrooted below the Rooted section)
Here's what I've uninstalled using the Debloater v3.7 (thanks @gatesjunior) and files I've removed with Total Commander (free version) with the Total Commander Android ADB v7.4 Plugin. FYI I replaced the ADB and two ADB DLLs in the plugin's bin folder with the latest from the Android SDK 21 for Lollipop and then it started working:
548 MB removed - link to public Google Sheet of files in OP.
Awesome work. Been thinking about going to 23B, and now it's nice to have a place to start with for debloating. Thank you!
Thanks and you're welcome! I noticed the 23B that we have has two Spanish TTS voices included, not English. Interesting!
Happy to report SkyDragon 3.0.0 (beta testing, not publicly available yet) is totally de-bloated. The ROM download is only 1.27GB.
hokiealumnus said:
Happy to report SkyDragon 3.0.0 (beta testing, not publicly available yet) is totally de-bloated. The ROM download is only 1.27GB.
Click to expand...
Click to collapse
gpost104 said:
They install Farmville on the new update?? Really?????
Click to expand...
Click to collapse
Yes! And it's a 75 mb waste of space!
Added 7-Zip downloads of all removed apps, grouped by OEM/function
Added 7-Zip downloads of all removed apps, grouped by OEM/function to the OP.
Nicely done sir:good:
TonyStark said:
Nicely done :
Click to expand...
Click to collapse
Thank you, thank you!
You're welcome! Thanks for the shout out!