How to make Location services work? - Fire HD 8 and HD 10 Q&A, Help & Troubleshooting

I was not planning to root my Fire HD 10 (7the generation) OS 5.6.2.0 so I got the 4 google account files set up as per instructions. Worked perfect. Then I installed Nova Launcher and had to add Launcher Hijack to make it stick. All worked great except no widget support. Solved that with some ADB commands also found here on XDA.
Now I discovered same as others that my location services do not work but could not find a way to make it work without undoing all I did, rooting it and then doing it all again with root. Can I avoid rooting and redoing it with any fix on top of what I already done?

MutantWizard said:
I was not planning to root my Fire HD 10 (7the generation) OS 5.6.2.0 so I got the 4 google account files set up as per instructions. Worked perfect. Then I installed Nova Launcher and had to add Launcher Hijack to make it stick. All worked great except no widget support. Solved that with some ADB commands also found here on XDA.
Now I discovered same as others that my location services do not work but could not find a way to make it work without undoing all I did, rooting it and then doing it all again with root. Can I avoid rooting and redoing it with any fix on top of what I already done?
Click to expand...
Click to collapse
This has worked consistently through numerous resets. This hasn't failed me yet. The key is to make sure location services are turned on before installing any Google apps or deleting bloatware. See here: https://forum.xda-developers.com/hd8-hd10/help/fix-how-to-google-location-services-t3813111

DragonFire1024 said:
This has worked consistently through numerous resets. This hasn't failed me yet. The key is to make sure location services are turned on before installing any Google apps or deleting bloatware. See here: https://forum.xda-developers.com/hd8-hd10/help/fix-how-to-google-location-services-t3813111
Click to expand...
Click to collapse
Thanks for the response!
I saw this before but was not sure I wanted to go down that road. Well I decided and here I go. I intend to try the following root process. Please let me know if any other preferred method is likely to be more reliable.
https://forum.xda-developers.com/hd8-hd10/general/hd-10-2017-offline-rooting-t3734860

Its done and working!

Related

Changing Launcher?

I bought one of these for my mom hoping it wouldn't be so well locked down. Has anyone managed to change their launcher from the default Amazon(Ad-laden) launcher? Sideloaded Nova but no dice there.
While Nova runs fine you can't replace the amazon launcher. I believe it was possible on pre 5.1.1 fire OS. Until we get root we'll just have make do.
If you're interested in changing the default firelauncher without rooting your device, please take a quick peak at my thread discussing the possibilties.
http://forum.xda-developers.com/hd8...zon-fire-hd-8-10-remove-firelauncher-t3286646
If you are currently rooted, which as of today is not possible on HD 8 & HD 10, you simply delete the com.amazon.firelauncher.apk in /system/priv-apps/com.amazon.firelauncher/, you will need to boot into fastboot and remount the system as rw if I am correct.
I hope this helps . Again, please check my thread for non-root information, it is currently unfinished.
Here is an updated tutorial on how to change the default launcher without rooting!
http://forum.xda-developers.com/hd8-hd10/general/tut-remove-default-launcher-amazon-fire-t3288192
Edit: Found a second method that is even better!
nyln said:
Here is an updated tutorial on how to change the default launcher without rooting!
http://forum.xda-developers.com/hd8-hd10/general/tut-remove-default-launcher-amazon-fire-t3288192
Click to expand...
Click to collapse
while you're method may work, it's far from optimal.
it's not possible to just rename another launcher and replace the FireOs launcher? i suppose that would be too easy.
if it were my tablet, i'd be more inclined to play around with it. unfortunately, my mom is content enough with it how it is, though i can see it being a beast and would **** around more if it were mine.
hopefully root comes soon. unfortunately, i can't help work towards it.
when all of that is said and done, i'll build a rom and kernel for it, np.
technope said:
while you're method may work, it's far from optimal.
it's not possible to just rename another launcher and replace the FireOs launcher? i suppose that would be too easy.
if it were my tablet, i'd be more inclined to play around with it. unfortunately, my mom is content enough with it how it is, though i can see it being a beast and would **** around more if it were mine.
hopefully root comes soon. unfortunately, i can't help work towards it.
when all of that is said and done, i'll build a rom and kernel for it, np.
Click to expand...
Click to collapse
I found a new method that actually works very very well, just run this in adb shell:
Code:
#!/bin/bash
am monitor | while read -r line; do
if [[ $line == *"firelauncher"* ]]
then
[B]am start com.newlauncher.launcher[/B]
fi
done
nyln said:
I found a new method that actually works very very well, just run this in adb shell:
Code:
#!/bin/bash
am monitor | while read -r line; do
if [[ $line == *"firelauncher"* ]]
then
[B]am start com.newlauncher.launcher[/B]
fi
done
Click to expand...
Click to collapse
Little bash script like that. I'll give it a try when I have time. Sleek enough, and if effective it's great.
technope said:
Little bash script like that. I'll give it a try when I have time. Sleek enough, and if effective it's great.
Click to expand...
Click to collapse
The only downside to the script is when you press the home button, there is a delay of 500ms or so, you see the firelauncher for that time.
It is not nohup or anything so it will stop working when you close adb shell (easy to do yourself, but I am preoccupied at the moment).
Why not root?
So I was actually able to ROOT my kindle fire hd 8 with the kingroot method.
After installing the apk.
Loaded it up let it try to find a root solution and it will not but you can try rooting with the other method and it WORKED for me. Never been so happy!
So after that I loaded adb shell in command prompt and typed "su" to see if I had root and it WORKED again, so I am even more happier!
Now after typing in "su" into command prompt I then typed in,
Code:
pm disable com.amazon.firelauncher
and it was successful..
NOTE: you must have another launcher installed before you do this! I had GOLauncher.
The End <3
P.S. I had installed the necessary files from rootjunky's "Amazon Fire Tablet Tool" or also known as installing google play store method..
Any questions hit me up, I have rebooted and still have root and things intact. Haven't had any problems as of yet. WOOT for ROOT
kanderson88 said:
So I was actually able to ROOT my kindle fire hd 8 with the kingroot method.
After installing the apk.
Loaded it up let it try to find a root solution and it will not but you can try rooting with the other method and it WORKED for me. Never been so happy!
So after that I loaded adb shell in command prompt and typed "su" to see if I had root and it WORKED again, so I am even more happier!
Now after typing in "su" into command prompt I then typed in,
Code:
pm disable com.amazon.firelauncher
and it was successful..
NOTE: you must have another launcher installed before you do this! I had GOLauncher.
The End <3
P.S. I had installed the necessary files from rootjunky's "Amazon Fire Tablet Tool" or also known as installing google play store method..
Any questions hit me up, I have rebooted and still have root and things intact. Haven't had any problems as of yet. WOOT for ROOT
Click to expand...
Click to collapse
After messing around the go launcher ex is a little buggy. I might try another, currently trying to figure out how to get widgets to work and once I do ill let you know the system file.
Any ideas what I should add to the fire os? Current goal is widgets
So after doing some research I believe it won't be possible on the fire cause the system files are missing. From what I've seen I feel like the new 5 the gen tablets are all the same, can't confirm it yet but if so you should be able to follow the instruction given on the kindle 7 5th gen able about booting up into twrp or cm and installing a new Rom. I'm not sure if I want to do this though. Adw launcher feels empty without widgets though
---------- Post added at 10:39 AM ---------- Previous post was at 10:37 AM ----------
kanderson88 said:
So after doing some research I believe it won't be possible on the fire cause the system files are missing. From what I've seen I feel like the new 5 the gen tablets are all the same, can't confirm it yet but if so you should be able to follow the instruction given on the kindle 7 5th gen able about booting up into twrp or cm and installing a new Rom. I'm not sure if I want to do this though. Adw launcher feels empty without widgets though
Click to expand...
Click to collapse
But do not follow my advice unless you know what your doing. Always back up everything.
kanderson88 said:
After messing around the go launcher ex is a little buggy. I might try another, currently trying to figure out how to get widgets to work and once I do ill let you know the system file.
Any ideas what I should add to the fire os? Current goal is widgets
Click to expand...
Click to collapse
I can confirm that with the latest KingRoot apk on my HD8 (5th Generation) the rooting worked. As a launcher I had before Nova and Google Now via Play Store installed. I prefer the Google Now Launcher. The Home button, the Wallpaper and the Widgets are working. Thanks for the hot rooting tip.
schr01 said:
I can confirm that with the latest KingRoot apk on my HD8 (5th Generation) the rooting worked. As a launcher I had before Nova and Google Now via Play Store installed. I prefer the Google Now Launcher. The Home button, the Wallpaper and the Widgets are working. Thanks for the hot rooting tip.
Click to expand...
Click to collapse
Does your google play store actually work? I can get it to load but once the front page is loaded, I can't search or get anything else to load on google play. It's just a continuous load. Could you let me know what framework you have. Also I cant get widgets to work on mine. Have Adw and cant get google now to work. If you can I think you should make a posts on the HD 8 and 10 thread letting us know what you did to get where you are now. Anyways I'm going to message you in a lil bit.
So I got google launcher installed and moved it to system app and now widgets work. Only problem I'm facing now is getting google play to stay working. Sometimes log me out or just stops loading traffic to the app. Any ideas? I've uninstalled it and reinstalled it but still no.
kanderson88 said:
So I got google launcher installed and moved it to system app and now widgets work. Only problem I'm facing now is getting google play to stay working. Sometimes log me out or just stops loading traffic to the app. Any ideas? I've uninstalled it and reinstalled it but still no.
Click to expand...
Click to collapse
I had in the past the same problems. After I had uninstalled the complet apk's and reinstalled the following apk's:
Google Account Manager_4.0.3-239410.apk,
Google Play services_4.0.34 (924341-38).apk,
Google Services Framework 4.0.4-338691.apk ,
and
Google Play Store 4.4.21.apk,
I had no trouble. The Google Play Store worked now fine on my HD8 with firmware 5.1.1.
Remark: You can download the apk' from this link: https://drive.google.com/file/d/0B3yLoupCwoyrSzJEMHc3UTkzam8/edit?pref=2&pli=1
schr01 said:
I had in the past the same problems. After I had uninstalled the complet apk's and reinstalled the following apk's:
Google Account Manager_4.0.3-239410.apk,
Google Play services_4.0.34 (924341-38).apk,
Google Services Framework 4.0.4-338691.apk ,
and
Google Play Store 4.4.21.apk,
I had no trouble. The Google Play Store worked now fine on my HD8 with firmware 5.1.1.
Remark: You can download the apk' from this link: https://drive.google.com/file/d/0B3yLoupCwoyrSzJEMHc3UTkzam8/edit?pref=2&pli=1
Click to expand...
Click to collapse
Thanks. I'm gonna have to try this once I get off work. Thank you again
kanderson88 said:
After messing around the go launcher ex is a little buggy. I might try another, currently trying to figure out how to get widgets to work and once I do ill let you know the system file.
Any ideas what I should add to the fire os? Current goal is widgets
Click to expand...
Click to collapse
Please try nova.
schr01 said:
I had in the past the same problems. After I had uninstalled the complet apk's and reinstalled the following apk's:
Google Account Manager_4.0.3-239410.apk,
Google Play services_4.0.34 (924341-38).apk,
Google Services Framework 4.0.4-338691.apk ,
and
Google Play Store 4.4.21.apk,
I had no trouble. The Google Play Store worked now fine on my HD8 with firmware 5.1.1.
Remark: You can download the apk' from this link: https://drive.google.com/file/d/0B3yLoupCwoyrSzJEMHc3UTkzam8/edit?pref=2&pli=1
Click to expand...
Click to collapse
Thanks for supplying the APKs. This should help me as right now infos are jumbled all across this forum and need to be cleaned up a bit.
I'd love to do a nice/clean .bin people can flash after the dust has settled. Hopefully without kingroot. Wish I knew the kingroot devs.
Also, everyone needs to slow down. We have root in a way, but we need to make sure everyone is on the same page. Don't let this forum become a mess.
Right now, it is a huge mess.. The original root thread is smart to post on and maybe the tips and tricks thread. Stop spreading things out too much. We need it all in one place, really
technope said:
Also, everyone needs to slow down. We have root in a way, but we need to make sure everyone is on the same page. Don't let this forum become a mess.
Right now, it is a huge mess.. The original root thread is smart to post on and maybe the tips and tricks thread. Stop spreading things out too much. We need it all in one place, really
Click to expand...
Click to collapse
Yeah sorry I'm trying my best to clean up my thread a little and easy to read as much as possible. Also I figured out how to fix google play if it isn't working. Look at tips,Tricks, and the Root thread if anyone is wondering.

UPDATED: [ROOT] How to Install the Google Play Store on Stock 4.5.5.1 -Thor

After this little adventure, I went into further testing. There is now a much simpler method of installing the Google Play Store. Fully functional. Two methods to be exact, and an experimental one.
Method 1) -Recommended if you have Safetrap 4.01
Make sure you have SuperUser (Not tested with Kingroot)
and you are running 4.5.5.1 (It'll probably work in earlier versions.)
Note: I have Superuser installed as a system app for safety.
My device is a Kindle Fire Hdx 7" (3rd gen) Thor.
-You need Safetrap (or head to method 2 for a non safe-trap procedure)
-You need to be rooted
-And you need to download from Open GApps (Platform: ARM Android: 4.4 Variant: Pico < Smallest package)
First, you must make space in System/Priv-app to flash this little package. (< There's no way around this)
I deleted [ moffice, weather, and the android.mail.apk ] (I do not need those. I actually do not need a lot of the amazon services except for books.)
Reboot into Safetrap and flash/Install the opengapps package.
Wipe Dalvik/Cache. Reboot
> If you get a "Failed" - It means you need to delete more apps.
Make sure the message reads "Insufficient space, etc" and not "incompatible,"
If you are successful, reboot.
Open the Google Play Store and simply sign in with your account. You are done.
I haven't experienced any crashing. nada.
Use Market helper for incompatible app (Although inbox by gmail isn't working for me, everything else is.)
Method 2) Recommended if you don't have Safe trap.
You might need to delete some apps from system/priv-app if you get "Insufficient space error" <For me, I didn't have to delete anything.>
You do not need Safetrap.
-You need Root and you need to follow the method described here, but with a little tweak:
Move all the apps mentioned in the guide to System/Priv-app > Account And Sync Settings, Google Services Framework, Google Login Service, and Vending.apk)
Install Google Play Services from your downloads (Normal Install) < I am using the latest ones I got off Google.>
Reboot.
Open the android market (in apps) and sign in. <
Download the latest Google Play Store (from the guide or Google)
I renamed it vending.apk for short.
Delete the vending.apk found in System/Priv-app and replace with the new one.
Reboot.
Google Play Store is functional and shouldn't crash.
--------------------------
(I highly recommend a Custom ROM. The quality and functionality can not be beaten..)
Update: Now that the kindle app on android supports exporting highlights from personal docs/side-loaded books, etc.. I've made the full switch to CM11
------
Not recommended.
The method below is now experimental. I couldn't get it to reproduce after replacing Kinguser With SuperSu.
This is a fully functional Playstore. You can search, download and update
Tested on:
Kindle Fire HDX 7" (3rd Gen) running 4.5.5.1 w/ Kingroot
* No one is more responsible for your device than you. With that in mind, back up, read carefully, don't go the extra mile just because, and be aware there is always a risk. On to the fun stuff~
You will need:
-Root
-Safetrap v4
-All 4 apks from here (Skip all the instructions there and scroll to where it says —Then install these apks—
You also need the Google Apps Minimal Edition from here.
----INSTRUCTIONS
-Move all 4 apks to sdcard/download and install each one.
-Move your Google Apps Minimal Edition.zip to sdcard/download and keep it there.
Reboot into Safetrap.
* Make sure you have a backup of your STOCK Rom !
Go to Install > Find your Google Apps Minimal Edition.zip and install it.
From the same screen once you are done wipe dalvik/cache
Reboot.
You might run into a gray screen ? Hit the home button. It is a one time thing.
Login to your existing Google account. You'll notice the App Store will crash after a minute.
Reboot. That's it. Playstore shouldn't crash anymore.
#If it works for other devices, versions, let me know. Thank you.
I tested it on my own device, and downloaded a couple of apps. If something changes I will update this.
Update: You can find the latest Google Play Store and Services here. Uninstalling both items is necessary to install the new version then you can use ccleaner to remove any Google app that says 'newer version installed'
I did method 2. This absolutely worked. I'm especially pleased, because I kept seeing that I would need Safestrap and a custom ROM in order to get the Play Store on my HDX 7. So, thanks for the instructions.
If I used Kingroot to root my device can I still use method 2?
Also can I use twrp instead of safestrap? I have no idea what each one does what.
I rooted my tablet (HDX 7 4.5.5.1) using Kingroot, and my ultimate goal is to use google services and youtube properly. And change the OS (Is Nexus rom a good idea?)
Thanks for any help guys.
talkslow4me said:
If I used Kingroot to root my device can I still use method 2?
Also can I use twrp instead of safestrap? I have no idea what each one does what.
I rooted my tablet (HDX 7 4.5.5.1) using Kingroot, and my ultimate goal is to use google services and youtube properly. And change the OS (Is Nexus rom a good idea?)
Thanks for any help guys.
Click to expand...
Click to collapse
- no twrp, only safestrap v4 (which limits roms to cm11 and HDX Nexus)
- Google Services does not play well with FireOS v4. Strongly encourage custom rom if Google/YouTube is the end game
- YouTube via browser is also an option. Opera works well (as do others). Need to sideload via Opera home page or Apkmirror.
Hello
I went through Method 2, but can't get google service running.
There's one step that I could not understand, moving the apk files to system/priv-ap, why do we have to do so?
Thank you
mohzean said:
Hello
I went through Method 2, but can't get google service running.
There's one step that I could not understand, moving the apk files to system/priv-ap, why do we have to do so?
Thank you
Click to expand...
Click to collapse
Google Play Services and FireOS v4 simply do not get along. This is just one of many threads that suggest an integration methodology that yields a suboptimal experience or (more commonly) a crippled device. Bite the bullet and go with Safestrap v4 and a compatible custom rom (cm11 or HDX Nexus).
Thanks Luxen!!! It works perfectly! Device: Kindle Fire HDX 7" gen 3.
I used method 1.
Installed Kingroot, SuperSU, Safestrap, removed several APKs (MOffice (WPS Office), Cannon, EPSON, HP, Weather) from System/Priv-app using Total Commander (ASTRO file manager does not work) to make spaces, applied Pico OpenGApps, wipe Dalvik/Cache, reboot.
Then boom, it just works, no errors, no nothing! Updated all google apps. Everything works!
Can't thank you enough, great jobs!
Best,
mxnerd said:
Thanks Luxen!!! It works perfectly! Device: Kindle Fire HDX 7" gen 3.
I used method 1.
Installed Kingroot, SuperSU, Safestrap, removed several APKs (MOffice (WPS Office), Cannon, EPSON, HP, Weather) from System/Priv-app using Total Commander (ASTRO file manager does not work) to make spaces, applied Pico OpenGApps, wipe Dalvik/Cache, reboot.
Then boom, it just works, no errors, no nothing! Updated all google apps. Everything works!
Can't thank you enough, great jobs!
Best,
Click to expand...
Click to collapse
I am glad it worked out for you. Believe it or not, since I did method 1, I am still running my custom rom since that very day. Stable and smooth sailing.
Vanb85 said:
I did method 2. This absolutely worked. I'm especially pleased, because I kept seeing that I would need Safestrap and a custom ROM in order to get the Play Store on my HDX 7. So, thanks for the instructions.
Click to expand...
Click to collapse
This is the reason I tried to experiment with several different methods. I knew there are some users that are not interested or are too intimidated by Safetrap/Custom Roms, so I am glad it worked for you! :good:
I was wondering if anyone could help me a little bit with option 2 in the op's post? I am not the most tech savvy person in the world, so I am struggling a little with it. I have Kindle HDX 7 (3rd gen). I have managed to root using Kingroot. I attempted installing Google store. Got all the files downloaded and I thought installed accurately, but it would never let me sign in. I uninstalled and was going to retry using method 2 above that says move the files to system/private app before installing. I can't figure out how to get them from download to there though. I have ES File Explorer, but downloaded the recommended WIFI Explorer Pro to see file structure on my computer. Tried dragging and dropping and that did not work. Any advice? The instructions for #2 have not been the easiest for me to follow.
leigh80 said:
I was wondering if anyone could help me a little bit with option 2 in the op's post? I am not the most tech savvy person in the world, so I am struggling a little with it. I have Kindle HDX 7 (3rd gen). I have managed to root using Kingroot. I attempted installing Google store. Got all the files downloaded and I thought installed accurately, but it would never let me sign in. I uninstalled and was going to retry using method 2 above that says move the files to system/private app before installing. I can't figure out how to get them from download to there though. I have ES File Explorer, but downloaded the recommended WIFI Explorer Pro to see file structure on my computer. Tried dragging and dropping and that did not work. Any advice? The instructions for #2 have not been the easiest for me to follow.
Click to expand...
Click to collapse
Several ways to copy/move files in ES File Explorer. Perhaps easiest is to long file and scan options that pop-up (varies by version and config) for 'copy', 'move', 'copy to', etc. If nothing obvious check in 3-dot menu. Then navigate to target folder and tap 'paste'. Multiple files can be selected and copied at once.
If the files reside on your computer you should be able to copy/move using the same technique. Or simply download the directly to your device using the built-in Silk browser then move to target folder using ES File Explorer.
Might want to consider a custom ROM which has the Play Store built-in. While Amazon and Google components get along better in FireOS 5.x it is never a happy marriage with occasional glitches as versions of both change over time.
Thank you Davey126. I will give that a try. I have debated installing a custom rom, but fear that may be a little beyond my capabilities. I am struggling enough just getting Google Play on it. I am use to Android, so it has been hard to adjust to how locked down the Kindle is. Maybe if I come across some instructions I can easily follow, I will finally give that a custom rom a try.
leigh80 said:
I was wondering if anyone could help me a little bit with option 2 in the op's post? I am not the most tech savvy person in the world, so I am struggling a little with it. I have Kindle HDX 7 (3rd gen). I have managed to root using Kingroot. I attempted installing Google store. Got all the files downloaded and I thought installed accurately, but it would never let me sign in. I uninstalled and was going to retry using method 2 above that says move the files to system/private app before installing. I can't figure out how to get them from download to there though. I have ES File Explorer, but downloaded the recommended WIFI Explorer Pro to see file structure on my computer. Tried dragging and dropping and that did not work. Any advice? The instructions for #2 have not been the easiest for me to follow.
Click to expand...
Click to collapse
Actually you need to turn ON the ROOT EXPLORER option from TOOLS on Es File Explorer. to do so... Tap on TOOLS > ROOT EXPLORER > MOUNT RW and then mark all 4 options on right side (under RW) and tap on OK. doing so you will be able to move, copy and delete files/apks from/to System folders.
Hi @Luxen and everyone! I have a Kindle Fire HD 7 3rd generation running Fire OS 4.5.5 (Aug. 2015) and want to install Google Play Store on it. After searching for several hours, I can't find any worked method since all threads I found are outdated and people reported they were no longer working. I'm wondering if the method in this thread can work with my Kindle? Thank you!
kyoceralover said:
Hi @Luxen and everyone! I have a Kindle Fire HD 7 3rd generation running Fire OS 4.5.5 (Aug. 2015) and want to install Google Play Store on it. After searching for several hours, I can't find any worked method since all threads I found are outdated and people reported they were no longer working. I'm wondering if the method in this thread can work with my Kindle? Thank you!
Click to expand...
Click to collapse
In general Amazon and Google components do not play well on FireOS v4.x. It can be made to work...sort of...but tends to be susceptible when Play components auto update which happens frequently. A more reliable approach is to install a custom rom (CM11 or Nexus) that natively supports Google Play Framework, Services and Store.
If you opt to go this route the following thread may be of interest: http://forum.xda-developers.com/kin...used-partially-fire-os-to-proper-rom-t3421623
Google Play Store for Kindle Fire HD 7 (2013) 3rd gen on Fire OS 4.5.5
Davey126 said:
In general Amazon and Google components do not play well on FireOS v4.x. It can be made to work...sort of...but tends to be susceptible when Play components auto update which happens frequently. A more reliable approach is to install a custom rom (CM11 or Nexus) that natively supports Google Play Framework, Services and Store.
If you opt to go this route the following thread may be of interest: http://forum.xda-developers.com/kin...used-partially-fire-os-to-proper-rom-t3421623
Click to expand...
Click to collapse
Great! Thank you very much! I'll try what sd_shadow suggest first
I believe that 4.5.5 can be rooted with kingroot
KingRoot thread
then see rootjunky's supersume video
https://www.youtube.com/watch?v=3O3DcpeS_Ic
or manually install supersu with a terminal emulator
http://www.w0lfdroid.com/2015/05/How...h-SuperSU.html
Click to expand...
Click to collapse
then flash mine to CM11/Nexus
New here
I have the Fire HDX 7" 3rd gen and was wanting to make it a true Android tablet due to Amazon not updating it further. I have read post after post and I am so confused as to where to even begin. I know it needs to be rooted and a custom ROM installed, I just wish there was one place I could find step by step instructions to do so. I'd rather have Fire OS than have an usable tablet. Maybe I just need to give up trying to do it.
mckev24 said:
I have the Fire HDX 7" 3rd gen and was wanting to make it a true Android tablet due to Amazon not updating it further. I have read post after post and I am so confused as to where to even begin. I know it needs to be rooted and a custom ROM installed, I just wish there was one place I could find step by step instructions to do so. I'd rather have Fire OS than have an usable tablet. Maybe I just need to give up trying to do it.
Click to expand...
Click to collapse
Take a peek at this thread to get a sense of what's involved. Not a step by step guide by any means but touches on the highlights. Post back with any immediate questions.
http://forum.xda-developers.com/kin...used-partially-fire-os-to-proper-rom-t3421623
Davey126 said:
Take a peek at this thread to get a sense of what's involved. Not a step by step guide by any means but touches on the highlights. Post back with any immediate questions.
http://forum.xda-developers.com/kin...used-partially-fire-os-to-proper-rom-t3421623
Click to expand...
Click to collapse
Can I download ES file explorer from the Amazonn app store or should it be downloaded elsewhere? I have downloaded and installed KingRoot, but I haven't ran it as of yet.
Also wanted to say thanks for pointing me in the right direction!
mckev24 said:
Can I download ES file explorer from the Amazonn app store or should it be downloaded elsewhere? I have downloaded and installed KingRoot, but I haven't ran it as of yet.
Also wanted to say thanks for pointing me in the right direction!
Click to expand...
Click to collapse
Not sure how current the version in the Amazon App store is. Best grab a copy from here.
Tip: If unsure post any questions you may have before acting. HDX is a touchy device; easy to brick and hard (often impossible) to recover if you stray too far off the trail. Several great folks monitor these forums and can help as needed.

[TOOLS Fire HD 6&7 ] Rooting, Gapps, Launchers, Block OTA & Ads + More

Download the latest tools from the AFH link near end of post. It includes the changes in the attached "jobs" zip. You only need "jobs" if you downloaded the tools before May 11
EDIT May 29: Playstore is currently unreliable. Until updated, use the workaround here.
UPDATE May 17: Install Other Launcher and Install Kingroot tools may not complete if Windows username has spaces. I'll fix in next update. Until then, if your username has spaces, use this fix.
Here are tools for the 2014 Fire HD 6 and 7. A little late, I know, but some of you who still troll the forums may find them handy. Download the tools from AFH link, extract and run RUNME.bat.
IF YOU PLAN TO ROOT, TURN OFF WIFI NOW!
Tested working on OS 5.1.2.1 and below, except:
- Current Kingroot can't root 5.1.2.1. You need to downgrade. See "ROOT OS 5.1.2", below.
- OS 4: Only OTA blocking is implemented in the Block/Unblock jobs. [5/13/16 UPDATE: Also, Play Store isn't working on OS 4.
.. I probably won't fix it unless there's some demand. Try the video guide here. OS 4 users, also see post #11 for useful info about custom launchers.]
THE TOOLS
Install Play Store
Install Nova Launcher to /priv-app [root]
Install Other Launcher to /priv-app [root]
Uninstall priv-app Launchers [root]
Install Apps
Block/Unblock: OTA, ADS, AMAZON LAUNCHER, APPSTORE, AMAZON SEARCH [root]
Root Checker
Device Info
Root Tools
Install Kingroot ~ Root ~ Block OTA
Replace Kingroot with SuperSU [root]
DESCRIPTIONS
Before running a job, look here for any tips and instructions. This info is also in the readme.txt in the zip​
INSTALL PLAY STORE - Like it says. Works on both rooted and unrooted OS 5. Not for OS 4. EDIT May 29: Playstore is currently unreliable. Until updated, use the workaround here.
INSTALL NOVA LAUNCHER - Installs Nova to /system/priv-app so widgets work. If you just rooted, make this your first custom launcher. You can replace it or add a different one later.
INSTALL OTHER LAUNCHER Installs the launcher app in user_launcher folder to priv-app. Get the apk for the launcher you want (from apkmirror.com for example) and put it into the folder and run the job. EDIT 5/16/2016: Filenames must end with ".apk" No spaces allowed; replace with "_". (The tool will find spaces and pause while while you fix.)
HOW TO INSTALL GOOGLE NOW (also in Readme.txt):
It's much easier to install Google Now if Amazon is blocked, and you need a custom launcher to do that.
1. If you don't have a custom launcher installed, use Install Nova tool (installs Nova and blocks Amazon)
If you have a custom launcher, block Amazon so your custom launcher is running.
2. Get Google Now (small) from apkmirror.com, e.g., put into user_launcher folder and run Install Other Launcher job.
You'll boot to your "other" launcher
3. Run Google Now in app drawer and:
If prompted to Update Google App (Get it from Google Play), do it.
If prompted that other launcher is default, tap link to go to Amazon Settings. In Apps & Games>Manage all Applications: Swipe to All, scroll to your other launcher, tap it and see if "Launch by Default" is on. If yes, Clear Defaults. If no, go to your launcher settings and see if you can turn off default there.
Some launchers don't give up their default easily. If pressing home key doesn't show "Select Home App" after doing the above, run Block/Unblock tool and switch to Amazon. Then block Amazon again. After restart, press home key and you'll get "Select Home App" and be able to choose Google Now.
UNINSTALL LAUNCHERS - Uninstalls and deletes everything associated with a launcher installed to /priv-app. If multiple, prompts you to choose the one to uninstall.
INSTALL APPS - Installs all the apps in the user_apps folder. Put the apks into the folder and run the job. Filenames must end with ".apk" No spaces allowed; replace with "_". (The tool will find spaces and pause while while you fix.) Don't install a launcher with this; use one of the launcher tools.
BLOCK/UNBLOCK - OTA, ADS, AMAZON LAUNCHER, APPSTORE, AMAZON SEARCH
Except for OTA, these work only on rooted OS 5. OTA does a soft block on unrooted OS 4, hard block on rooted.
OTA: Disables update packages and renames DeviceSoftwareOTA.apk for a "hard" block. Unblock reverses it.
ADS: Blocks/unblocks the lockscreen ads.
AMAZON LAUNCHER: Block disables the stock launcher (Amazon UI) and the Appstore, which forces the home key to use your custom launcher. Unblock switches you to Amazon. Checks for custom launcher before disabling Amazon. Black screen with multiple custom launchers: If you haven't set a default launcher, disabling Amazon will boot to black screen. (System doesn't know which launcher to use.) Press home key (circle at bottom) for launcher choices. TIP: To easily switch between your launcher and Amazon, use @bibikalka's guide here to set up "one-tap switching" from launcher home screen.
APPSTORE: Blocks the appstore so in-app links take you to the Play Store (instead of throwing that stupid Appstore prompt). Amazon complains bitterly if you run this from Amazon UI, so use it at your custom launcher or just use the Amazon launcher block.
AMAZON SEARCH: If you have Google Search installed, blocking Amazon Search makes your launcher search bar use Google instead of Amazon shopping.
DEVICE INFO - Just some specs that I find interesting. Lazy man's way to find out which tablet is plugged in, OS it's running, whether rooted . . .
INSTALL KINGROOT, ROOT, BLOCK OTA - Installs Kingroot, prompts you through rooting and blocks OTA updates.
- Installs kingroot v.4.8.5 by default.
- You can skip installation if Kingroot already installed
- You can install a later version if available: Check for new versions here: http://forum.xda-developers.com/android/apps-games/one-click-root-tool-android-2-x-5-0-t3107461
ROOTING AND UPDATES: An update file can download while you're rooting. The Kingroot tool prevents it from installing as soon as you press Enter to tell the tool you're rooted. Then it looks for any downloaded file and if it finds one it tells you where it is and prompts you to delete.
Amazon says that updates install when the the device is not being used, but be aware that on OS 5 there's some risk. To minimize the risk, never leave the tablet idle while rooting. Just keep running Kingroot until root is successful and then press Enter to block installation of any download. (These instructions are in the tool.) To eliminate all risk, you can downgrade and root OS 4.5.3. On OS 4 the tool blocks update installation before rooting. (There's no way to do this on OS 5.) From OS 4.5.3, you upgrade with root in TWRP per bibikalka's root Tut.
True story: Kingroot once rebooted 5 times and told me "Root Failed" 3 times before finally succeeding. An update had downloaded to /cache, but the kingroot tool successfully blocked installation and found the file, which I deleted. So, although it's possible you could get upgraded, as long as you keep the tablet busy trying to root and then press Enter as soon as you're rooted, it's very unlikely.
REPLACE KINGROOT WITH SUPERSU - Installs W0lfDroid's sh script and prompts you through using it to replace Kingroot.
I reviewed and tested the script and it does (only) what it says: Removes all Kingroot (except Purify app, which tool uninstalls) and installs SuperSU. The tool uses SuperSU v. 2.4.6 for OS 5 (known working on OS 5.1.2) and SuperSU v. 2.4.9 for OS 4 (because 2.4.6 didn't seem to work).
FULL DISCLOSURE: I lost root one time after running this on OS 4. I think the problem was SuperSU 2.4.6 and that's why I changed it. I've tested many times and this only happened once, but you should know it happened. AFAIK W0lfDroid script is still the best free tool for the job.
ERRORS: Script was written to remove Kingroot from multiple android versions, so it tries to remove Kingroot files that don't exist on Lollipop. THIS PRODUCES LOTS OF ERRORS. THAT'S OK. I left in all commands so it will work on OS 4, too.
USE THIS SOON AFTER ROOTING. W0lfDroid's script should work fine even with root apps installed, but all I know for sure is it runs quick and easy on a "fresh" system.
ADB Sideload
There's an adb-sideload job in the jobs folder. I didn't put it on the menu because it uses commands that may not run on some systems. Also, if you know what you're doing, it's probably faster to manually sideload an update. If someone wants to try it, put the update bin file into adb_sideload folder and run sideload.bat.​WINDOWS TESTING: Script was tested on English-language versions of Win 7 Pro and Home. Some testing on Win 10. (Thanks @SpaceBananas!) There's nothing that can hurt your tablet, but there may be kinks to work out based on Windows version. Hope a tester will work with me to help make the tools accessible to everyone. Thanks!
ADB DRIVERS REQUIRED: Try the guide in first link below. If problems, try the second.
Guide: http://forum.xda-developers.com/fir...ivers-fire-t3189000/post62561840#post62561840
Other options: http://forum.xda-developers.com/showpost.php?p=63072252&postcount=2
ROOT OS 5.1.2
IF YOU PLAN TO ROOT, TURN OFF WIFI NOW!
ROOT GUIDE: Follow this guide to use Kingroot and the root tools to set up your tablet.
At this time, Kingroot can only root OS 5.1.2 (February 2016) and below.
You can downgrade OS 5.1.2.1 (March 2016) to 5.1.2 and root, as explained in Root Guide, but this is an exception!
In general, never downgrade in order to use Kingroot. It's the fastest way to a brick!
You may be able to safely downgrade a higher OS to OS 4.5.3, root, and then upgrade in TWRP per @bibikalka's root Tut. Before trying this on an OS later than 5.1.2.1, make sure the tutorial says it's safe.
DOWNLOAD THE TOOLS FROM AFH ➔ . FireHD_TOOLS v 1.2
Update as of 5/11/16
➔ If you got the tools before the update, just replace the jobs folder in FIREHD_TOOLS with the one in attached "jobs_v1.x.zip"
Change Log
5/11/2016 - v1.2: Updated sideload.bat. (Missed the Find/Findstr fixes.)
5/10/2016 - v1.1: Fixed "No such file or directory" and "Permission denied" errors for users with *nix Find command installed
.
Nice Work!
@DoLooper - Magnum Opus, no less !
Why version 0.1 ??? The first release - solid 1.0 !!!
Updated. See OP.
Guys, I could use some feedback. Tools are getting downloaded a lot. Anybody using them? Are they helpful? Problems? Wishes? Anything? Thanks!
.
Updated again <sigh>. Sideload tool didn't get updated in v1.1. Apologies to those who downloaded the jobs zip.
DoLooper said:
Updated. See OP.
Guys, I could use some feedback. Tools are getting downloaded a lot. Anybody using them? Are they helpful? Problems? Wishes? Anything? Thanks!
.
Click to expand...
Click to collapse
Thanks DoLooper.
I tried these tools on my Fire HD 7 running 4.5.5.1 rooted with KingRoot.
I was able to use the script to successfully switch from KingRoot to SuperSU as well as to install Nova Launcher.
However, I had issues with the script elsewhere.
The play store seemed to install okay and it let me put in my google account info. After that, things went down hill. I was able to open the Play Store app without it crashing, but I just kept getting the "Error retrieving information from server. [RH-01]" message . I tried numerous things to correct this, but nothing seemed to work. In the end, I downgraded to 4.5.5, wiped data, cache and dalvik, and then flashed gapps via TWRP. This worked out, so all is good now.
I also had trouble with blocking the default launcher. Nova seemed to install okay, but the default launcher still worked and was a constant nag with each press of the home button. I fixed this by freezing the default launcher via Titanium Backup.
I don't know if these issues are particular to 4.5.5.1, or if I'm just unlucky. Regardless, I still appreciate your effort for putting this together. :good:
I'm currently trying to get wallpapers and widgets to work on the Nova launcher with no success. I tried the fixes intended for earlier Kindle models and (not surprisingly), they didn't work. Specifically, I tried Stunt's Wallpaper Fix and Kindlefree from the app store.
Any ideas where I should look for guidance on making Wallpapers and Widgets work?
Thanks again!
notorious.dds said:
Thanks DoLooper.
I tried these tools on my Fire HD 7 running 4.5.5.1 rooted with KingRoot.
I was able to use the script to successfully switch from KingRoot to SuperSU as well as to install Nova Launcher.
However, I had issues with the script elsewhere.
The play store seemed to install okay and it let me put in my google account info. After that, things went down hill. I was able to open the Play Store app without it crashing, but I just kept getting the "Error retrieving information from server. [RH-01]" message . I tried numerous things to correct this, but nothing seemed to work. In the end, I downgraded to 4.5.5, wiped data, cache and dalvik, and then flashed gapps via TWRP. This worked out, so all is good now.
I also had trouble with blocking the default launcher. Nova seemed to install okay, but the default launcher still worked and was a constant nag with each press of the home button. I fixed this by freezing the default launcher via Titanium Backup.
I don't know if these issues are particular to 4.5.5.1, or if I'm just unlucky. Regardless, I still appreciate your effort for putting this together. :good:
I'm currently trying to get wallpapers and widgets to work on the Nova launcher with no success. I tried the fixes intended for earlier Kindle models and (not surprisingly), they didn't work. Specifically, I tried Stunt's Wallpaper Fix and Kindlefree from the app store.
Any ideas where I should look for guidance on making Wallpapers and Widgets work?
Click to expand...
Click to collapse
Thanks for feedback. Tools apparently need work for OS 4.5.5.1. I tested pretty well on 4.5.3 and 4.5.5, but not 4.5.5.1. There may be some peculiarity there.
- The play store error has been reported on some 2015 Fires (using a different tool, but same method to install). It's unclear why it happens on some devices and not others, and they haven't found a fix, but it may be an OS 4 issue on the Fire HDs. I'll look into it.
- Nova & stock launchers: The block on stock launcher didn't work because it isn't implemented for OS 4. As mentioned at top of OP, only OTA block is available for OS 4. I'll need to add it in an update. Hadn't thought about need for it when using the Nova tool.
Would you please look in /system/priv-app folder and see if com.teslacoil.launcher.apk is at the bottom of directory? If so, are perms set to rw- r-- r--? Let me know and we'll proceed from there to get you widgets. Thanks.
DoLooper said:
Thanks for feedback. Tools apparently need work for OS 4.5.5.1. I tested pretty well on 4.5.3 and 4.5.5, but not 4.5.5.1. There may be some peculiarity there.
- The play store error has been reported on some 2015 Fires (using a different tool, but same method to install). It's unclear why it happens on some devices and not others, and they haven't found a fix, but it may be an OS 4 issue on the Fire HDs. I'll look into it.
- Nova & stock launchers: The block on stock launcher didn't work because it isn't implemented for OS 4. As mentioned at top of OP, only OTA block is available for OS 4. I'll need to add it in an update. Hadn't thought about need for it when using the Nova tool.
Would you please look in /system/priv-app folder and see if com.teslacoil.launcher.apk is at the bottom of directory? If so, are perms set to rw- r-- r--? Let me know and we'll proceed from there to get you widgets. Thanks.
Click to expand...
Click to collapse
Thanks for the help!
I found the com.teslacoilsw.launcher-1.apk file, but it's in my /data/app folder... and it is chmod'ed to 644.
Also, I did successfully install the AppWidgetPicker.apk and LiveWallpapersPicker.apk files to /system/app using the "kindlefree" app, but I think that about all the app did. These files are also chmod'ed to 644.
notorious.dds said:
Thanks for the help!
I found the com.teslacoilsw.launcher-1.apk file, but it's in my /data/app folder... and it is chmod'ed to 644.
Also, I did successfully install the AppWidgetPicker.apk and LiveWallpapersPicker.apk files to /system/app using the "kindlefree" app, but I think that about all the app did. These files are also chmod'ed to 644.
Click to expand...
Click to collapse
I've been using OS 5 for too long! Forgot you can't get wallpaper on OS 4 without fussing. It's unclear from your post: Did the pickers get wallpaper to work? This is the way we did it back when we always booted twrp and installed xposed: http://forum.xda-developers.com/fire-hd/general/how-to-wallpaper-custom-launcher-t3123009
As to widgets: What I meant is, you should have /system/priv-app/com.teslacoil.launcher_4.2.2.apk. Do you? I just retested this on 4.5.3. Nova (com.teslacoil.launcher_4.2.2.apk) got copied there and chmod'ed to 644 as it should and widgets are working fine.
No wallpaper is a bad problem, though, and no tool can fix it--unless that LiveWallpapersPicker DID work. Let me know. And let me know about /system/priv-app/com.teslacoil.launcher_4.2.2.apk.
BTW, how come you want to stay on OS 4?
DoLooper said:
I've been using OS 5 for too long! Forgot you can't get wallpaper on OS 4 without fussing. It's unclear from your post: Did the pickers get wallpaper to work?
Click to expand...
Click to collapse
Nope.
DoLooper said:
This is the way we did it back when we always booted twrp and installed xposed: http://forum.xda-developers.com/fire-hd/general/how-to-wallpaper-custom-launcher-t3123009
Click to expand...
Click to collapse
I think I tried that to no avail, but I can't remember exactly which module I used.
DoLooper said:
As to widgets: What I meant is, you should have /system/priv-app/com.teslacoil.launcher_4.2.2.apk. Do you? I just retested this on 4.5.3. Nova (com.teslacoil.launcher_4.2.2.apk) got copied there and chmod'ed to 644 as it should and widgets are working fine.
Click to expand...
Click to collapse
I think I ended up installing Nova via the app store so that's why it wasn't on the system partition. However, my widgets seemed to work when I checked again. I have no idea why they wouldn't work when I first tried them. I did end up creating two simple scripts via the "Scripter" app that would enable and disable the stock launcher. I put them as widgets on the nova desktop allowing for single click toggling of the stock launcher.
DoLooper said:
No wallpaper is a bad problem, though, and no tool can fix it--unless that LiveWallpapersPicker DID work. Let me know. And let me know about /system/priv-app/com.teslacoil.launcher_4.2.2.apk.
Click to expand...
Click to collapse
No, nothing seemed to fix the wallpaper... always black. Am understanding this correctly that the wallpaper works on this thing if I load Lollipop?
DoLooper said:
BTW, how come you want to stay on OS 4?
Click to expand...
Click to collapse
I didn't want to fiddle around with change the bootloaders every time I wanted into TWRP. At this point, it doesn't matter anyway... I hard bricked the device by flashing the 5.2.0 stock recovery last night
The post about using this to revert to stock should be edited or removed. It's bad.
The only reason I was trying to revert to stock was that I ended up getting into a situation where the stock launcher would continue looping back to the Welcome/select language screen. I wiped cache, data, and dalvik and reflashed the 4.5.5 rom which didn't fix it. I even tried that same approach including a wipe of system... same result. I was quite surprised to see the problem continue even after wiping everything. At that point I figured I go back to full stock and start over... BAD IDEA.
Anyway, I ordered a new one and it should be here tomorrow. I'm now curious if it's possible to recover the bricked device via the UART port on the motherboard. We'll see.:fingers-crossed::fingers-crossed:
notorious.dds said:
. . .
I think I ended up installing Nova via the app store so that's why it wasn't on the system partition. However, my widgets seemed to work when I checked again. I have no idea why they wouldn't work when I first tried them. I did end up creating two simple scripts via the "Scripter" app that would enable and disable the stock launcher. I put them as widgets on the nova desktop allowing for single click toggling of the stock launcher.
No, nothing seemed to fix the wallpaper... always black. Am understanding this correctly that the wallpaper works on this thing if I load Lollipop?
I didn't want to fiddle around with change the bootloaders every time I wanted into TWRP. At this point, it doesn't matter anyway... I hard bricked the device by flashing the 5.2.0 stock recovery last night
The post about using this to revert to stock should be edited or removed. It's bad.
The only reason I was trying to revert to stock was that I ended up getting into a situation where the stock launcher would continue looping back to the Welcome/select language screen. I wiped cache, data, and dalvik and reflashed the 4.5.5 rom which didn't fix it. I even tried that same approach including a wipe of system... same result. I was quite surprised to see the problem continue even after wiping everything. At that point I figured I go back to full stock and start over... BAD IDEA.
Anyway, I ordered a new one and it should be here tomorrow. I'm now curious if it's possible to recover the bricked device via the UART port on the motherboard. We'll see.:fingers-crossed::fingers-crossed:
Click to expand...
Click to collapse
Sorry to hear about the brick. Good thing Amazon is patient with us.
Yes, wallpaper works fine on OS 5. [For others who read this, on OS 4 the only way to get wallpaper is with Xposed (installed in TWRP) and the kindleBG module in the link I posted above. And BTW, although the tools don't block OS 4 Amazon launcher ATM, it can be done manually. Commands are here.]
Thanks for your input. Play store didn't work for me either this time, despite earlier success. Everything else except the launcher block (and other non-OTA blocks) does work, so for now I'm just going to edit post and see if there's any other interest in play store on OS 4. (I trust you'll get OS 5 on replacement or will want to update to it.)
As to TWRP: Once tablet is set up, booting TWRP isn't needed much except for upgrading. and bibikalka gives us lots of options for doing it.
Let us know if anything comes of UART port tests. You'd be the hero of the community!
Workaround for Windows username with spaces
The Install Other Launcher and Install Kingroot jobs may not complete if your Windows username has spaces in it. I'll fix this in next update. Meanwhile here's the workaround:
1. Right-click RUNME.bat and choose Edit. [file opens in Notepad]
2. Add a blank line under :: Set paths and run menu.
3. Type: SET "username=abc"
4. Make sure this section of RUNME looks like below and then save and close Notepad
Code:
:: Set paths and run menu.
SET "username=abc"
SET "main=%CD%\"
SET "jobsdir=%main%jobs\"
[remaining code]
This changes the username only for the tools. The rest of Windows continues to use the real username.
I'm getting ready to update. Please let me know if you found any problems.
Used the tool on my Fire HD 6 (4th Gen) running a Rooted OS 5.1.2.1 to install a new launcher and block OTA's, ads, fire launcher, appstore, and Amazon search. Everything worked without issue! Thanks for the awesome and simple to use tool! Tablet is now almost pure Android. Great work!!!
Sidenote: Used bibikalka's TUT (http://forum.xda-developers.com/fire-hd/general/how-to-upgrade-to-lollipop-root-gapps-t3163950) on my Fire HD 6 that was currently running Fire OS 4.5.3 with TWRP Recovery to obtain a Rooted Fire OS 5.1.2.1..
I adb'd the 5.1.2 upgrade to my slab this way.
$ adb push update-kindle-20.5.4.2_user_542168620.bin /sdcard/
3047 KB/s (663908627 bytes in 212.722s)
My OS is FIRE OS 5.1.2 Build Date March 31, 2016 1:37 AM.
I tried and got an error to the effect, "cannot upgrade because the upgrade you are trying is older than the one you have".
So I'm probably running an even later version of 5.1.2 where they blocked that loophole.
I'm just going to by a cheap Chinese slab and root that.
wallywallywally said:
I adb'd the 5.1.2 upgrade to my slab this way.
$ adb push update-kindle-20.5.4.2_user_542168620.bin /sdcard/
3047 KB/s (663908627 bytes in 212.722s)
My OS is FIRE OS 5.1.2 Build Date March 31, 2016 1:37 AM.
I tried and got an error to the effect, "cannot upgrade because the upgrade you are trying is older than the one you have".
So I'm probably running an even later version of 5.1.2 where they blocked that loophole.
I'm just going to by a cheap Chinese slab and root that.
Click to expand...
Click to collapse
use adb sideload in Stock recovery
Sent from my KFFOWI using XDA Labs
sd_shadow said:
use adb sideload in Stock recovery
Sent from my KFFOWI using XDA Labs
Click to expand...
Click to collapse
Yuh, I used sideload AND IT WORKED!!
I also have a fire 5th generation. Does the same procedure work for that, assuming I use the proper 5.1.2 for that device: https://kindle-fire-updates.s3.amaz...ate-kindle-global-37.5.4.2_user_542168620.bin
wallywallywally said:
Yuh, I used sideload AND IT WORKED!!
I also have a fire 5th generation. Does the same procedure work for that, assuming I use the proper 5.1.2 for that device: https://kindle-fire-updates.s3.amaz...ate-kindle-global-37.5.4.2_user_542168620.bin
Click to expand...
Click to collapse
yes
Sent from my KFFOWI using XDA Labs
Confirmed, this procedure worked for Fire (5th generation), however the amazon update file is different (see a few posts back)
I just got a fire HD 6 (4th Gen) with the 4.5.2 OS.
Everything I see talks about 4.5.3 and later. I have not turned on wifi, so basically in a holding pattern for now. I want to root/twrp and maybe a custom rom.
Can some give me advice on the best path to take? Should I upgrade then root? Or root then upgrade? Any advice is appreciated.

[Release] OneClick Script for Amazon Fire v5.3.2.1...v5.4.0.0 (Fire 7 / 7th gen)

Based on @savvytechwinner's work, on Wicki's work (Mod Edit - NO links to competing Forums) and on some experimentation of my own, I put together a new script to further ease the setup of an out-of-the-package Amazon Fire 7 / 7th gen and to clean up more throughly. This is a derivative / remix / improvement rather than something new. Thanks go to all the people this work is based on.
I already announced this in savvytechwinner's thread, but I figured setting up it's own thread is warranted.
What it does:
OTA Updates are blocked
Lockscreen ads are removed
Functional Google Play Store and Google Go search are installed
Bloatware is removed from the tablet
Functional Nova Launcher, Adblocker (DNS66) and light Youtube Client (NewPipe) are installed
Out-of-the-package instructions:
Have adb and Amazon Fire USB drivers installed on your PC.
Power on your Fire tablet, do the initial setup. DO NOT CONNECT TO WIFI. Instead, select any password protected wifi, then cancel, and initial setup will let you continue without internet.
Enter Settings -> Device options -> click Serial 7 times. A new menu entrypoint called Developer options will pop up.
In Developer options, enable ADB, then connect your tablet to your computer. Confirm the fingerprint. If that didn't work, look here for troubleshooting.
Now, extract the contents of this package somewhere on your computer and double click FireOneClick.bat.
You can watch how Amazon's apps vanish, but it is recommended not to do anything else with your tablet while the script does its work.
After it's finished, enter Settings -> Accessibility -> "enable To detect home button press". Then, open the LauncherHijack app and select Nova Launcher.
Open the DNS66 app and start it. This will run in background (at low memory consumption) and block ads.
Download the One Click Script from here.
Full readme, including credits and more info is found in my GitHub repo.
Just a heads up, I used this script on a fire 7 I had literally just opened, and it was successful in loading GApps and Blocking ads, but it did not debloat the amazon apps and it also did not block OTA updates...I woke up to a fire 7 that auto updated to 5.6.0. I'm not complaining here, since Nova Launcher is still installed and ads are nonexistent, just letting you know!
hiphopsded said:
Just a heads up, I used this script on a fire 7 I had literally just opened, and it was successful in loading GApps and Blocking ads, but it did not debloat the amazon apps and it also did not block OTA updates...I woke up to a fire 7 that auto updated to 5.6.0. I'm not complaining here, since Nova Launcher is still installed and ads are nonexistent, just letting you know!
Click to expand...
Click to collapse
Dammit... what version did you start on? Assuming it was 5.4.0.1?
Hi my 7" is on 5.4.0.
Does this just block the download or the update itself? Because I accidentally downloaded the OTA update but the tablet doesn't updated jet.
Is there a way to delete the update without root?
VottelTheTroll said:
Hi my 7" is on 5.4.0.
Does this just block the download or the update itself? Because I accidentally downloaded the OTA update but the tablet doesn't updated jet.
Is there a way to delete the update without root?
Click to expand...
Click to collapse
It blocks the update itself by disabling all apps that would apply it. I still recommend turning Wifi off and doing a factory reset, so the update data is gone for sure.
Blocking the update / debloating most likely did not work for @hiphopsded cause he started from 5.4.0.1. Blocking updates / removing ads / debloating is onlypossible on v5.4.0.0 and below. I am somewhat surprised he doesn't have ads on the lockscreen, but I think that is due to the DNS66 adblocker doing it's work properly.
EDIT: @hiphopsded - maybe there is still hope, but you'll have to do the research yourself.
https://forum.xda-developers.com/showpost.php?p=75167286&postcount=437
@k8500 I was on v5.4.0.0
I opened it brand new from sealed packaging, canceled connecting to a WiFi I did not have the password to, and was brought into the device home screen without ever connecting to WiFi to verify that I was on v5.4.0.0 and proceeded with installing the one click script.
Everything worked except debloating the tablet and OTA Updates being blocked. Not sure what went wrong. But having the launcher, google apps, and no ads is fine enough.
Another confirmation of this working on 5.4.0.0
Just received an Amazon Fire 7 - 7th gen. It ships with 5.4.0.1
I was able to downgrade from 5.4.0.1 to 5.4.0.0, then use this batch file to clean up the tablet.
Thanks!
already (well) used 7gen currently on 5.6.0.1
any idea when this will be updated to work on 5.6.0.1?
and next question does it actually root the tablet?
thanks in advance
markbnj said:
any idea when this will be updated to work on 5.6.0.1?
and next question does it actually root the tablet?
thanks in advance
Click to expand...
Click to collapse
Does not root and will not be updated for 5.6.x.x as Amazon disabled the underlying commands that perform the magic.
5.6.x.x update question
Davey126 said:
Does not root and will not be updated for 5.6.x.x as Amazon disabled the underlying commands that perform the magic.
Click to expand...
Click to collapse
ok. So, bottom line, I can either wipe the unit, and start over; or
try and root the fire tablet to get rid of ads, and install other stuff...)
any other ideas?
I've rooted lots of android, and would actually prefer a more android, rather then amazon centric tablet....
thanks in advance...
markbnj said:
ok. So, bottom line, I can either wipe the unit, and start over; or
try and root the fire tablet to get rid of ads, and install other stuff...)
any other ideas?
I've rooted lots of android, and would actually prefer a more android, rather then amazon centric tablet....
thanks in advance...
Click to expand...
Click to collapse
Can't root 7th gen Fire at present. Period. Can't load a different ROM w/o root. Try sketchy rollback/debloat techniques at your own peril. Contact Amazon to dump annoying lock screen ads. Install a VPN based firewall like AdGuard to dispense with in-app advertising. Possibly install a different launcher using non-root techniques. Pretty much it.
Maybe I'm a little late in opening this thread up again, but let me ask this:
I just got a Kindle 7 (7th generation) in the mail, to replace our son's old one (5th generation, though unfortunately never rooted) that started messing up (so presumably the new one is refurbished). We don't like all the amazon bloat, etc., and would prefer the different launcher or anything more android-like we can get. I would love to block the OTA updates. So your tool sounds great.
I opened it and turned it on but haven't set up the device yet. I see it's version 5.3.3.0 Does this one click script of yours work on the 5.3.3.0 ? Are there any other suggestions on the best way to use my new device (taking out amazon bloat and more like google) considering it's *not* the newest OS that Amazon makes? I.e. are there any options I have available to me currently that I want to be sure I don't lose out on by accidentally updating or something? Thanks for any help you can provide!
madagascaradam said:
Maybe I'm a little late in opening this thread up again, but let me ask this:
I just got a Kindle 7 (7th generation) in the mail, to replace our son's old one (5th generation, though unfortunately never rooted) that started messing up (so presumably the new one is refurbished). We don't like all the amazon bloat, etc., and would prefer the different launcher or anything more android-like we can get. I would love to block the OTA updates. So your tool sounds great.
I opened it and turned it on but haven't set up the device yet. I see it's version 5.3.3.0 Does this one click script of yours work on the 5.3.3.0 ? Are there any other suggestions on the best way to use my new device (taking out amazon bloat and more like google) considering it's *not* the newest OS that Amazon makes? I.e. are there any options I have available to me currently that I want to be sure I don't lose out on by accidentally updating or something? Thanks for any help you can provide!
Click to expand...
Click to collapse
Yes, it works with fire OS 5.3.3.0
Rortiz2 said:
Yes, it works with fire OS 5.3.3.0
Click to expand...
Click to collapse
Thanks for letting me know, but maybe I'm doing something wrong because I can't get it to work at all. To start with, I had already opened my fire tablet but skipped setup (also skipped signing into wifi because I knew that could give me an auto-update). So maybe that's what screwed it up? Maybe I should reset to factory and try again?
I had installed the fire drivers too but my fire never showed up in "portable devices" in device manager (in fact, I never saw such a category - but it did show up in devices as "MTP device").
The adb worked fine as I was able to get it to "show devices". However, the one-click never did anything. Usually I use powershell, but then I tried running through normal command prompt, but still no luck. I tried putting it in my adb fastboot folder (is that my problem? does it need the full adb and adb fastboot isn't enough?) and it still didn't work. So, maybe my first step was the problem or maybe a subsequent one, I don't know, but I couldn't get any of it to work.
uninstall apps
cannot uninstall applications , i downgrade to 5.4.0 but applications are only hiding , they are still in the system .
PROOF : you can check your free space before and after uninstalling, you will gain nothing important.
but for removing ads or blocking update , its working for 5.4.0 !!!
---------- Post added at 12:19 AM ---------- Previous post was at 12:17 AM ----------
avatarma said:
cannot uninstall applications , i downgrade to 5.4.0 but applications are only hiding , they are still in the system .
PROOF : you can check your free space before and after uninstalling, you will gain nothing important.
but for removing ads or blocking update , its working for 5.4.0 !!!
Click to expand...
Click to collapse
but for rooted devices we can uninstall applications with root uninstaller pro or similare application.

Noob - advice needed please!

I'm getting a Fire HD10 delivered tomorrow.
I've read through a lot of threads on here but so many seem to be dealing with the hd8 & non root solutions & some seem to contradict each other or have been made outdated due to new solutions etc & my heads spinning a bit!
I want to root it, install Google services & play store, disable stock launcher & use nova launcher.
Is there are specific order I need to do, or should do, all this in?
What is the preferred method for installing Google play store?
Also, how do I block OTA updates? I've seen a couple of threads mentioning it but haven't stumbled on a specific way that appears to work?
Thanks in advance for your help!
FoxForceFive said:
I'm getting a Fire HD10 delivered tomorrow.
I've read through a lot of threads on here but so many seem to be dealing with the hd8 & non root solutions & some seem to contradict each other or have been made outdated due to new solutions etc & my heads spinning a bit!
I want to root it, install Google services & play store, disable stock launcher & use nova launcher.
Is there are specific order I need to do, or should do, all this in?
What is the preferred method for installing Google play store?
Also, how do I block OTA updates? I've seen a couple of threads mentioning it but haven't stumbled on a specific way that appears to work?
Thanks in advance for your help!
Click to expand...
Click to collapse
I have done all the above and here is my person slant:
Google services do not require root so can be done at anytime just make sure you get the right files and the right versions
Using nova launcher as your default launcher can be done with or without root but with root is much easier (you just freeze firelauncher)
Stopping further ota updates for me is done in two ways:
1) block at the router level (this obviously can be done independently of the device)
2) with root again freeze BOTH ota apps. One is for system updates and one is for app updates I freeze both just to be safe and have never been notified of the update to 5620... Still on 5610
As far as rooting itself I would use the offline method listed in forums here. Personally after rooting I took an additional step and loaded one of the predone images also found in forums that had root and xposed all built in. This additional process required the use of the flashfire app that is a whole other set of procedures but overall is well worth it. Flashfire will give you the ability to update to newer software versions without updating the bootloader. Thus you will always be up to date but not lose the ability to downgrade if needed. This ASSUMES you are initially on 5601 or 5610. If your already on 5620 your bootloader is already locked from downgrades.

Categories

Resources