Widgets without root - Fire General

This is more of a tip as I wanted this info to be searchable. Basically you can use widgets on your fire os device without root assuming you are willing to use the Google Now Launcher. Follow this (https://forum.xda-developers.com/amazon-fire/general/launcher-root-launcher-hijack-v2-t3561026) guide for further instructions.
Hope this helps somebody out.

Related

[Q] Will Root or custom ROM allow 2+ users..

Basically just want to know if I root and use a custom ROM on my Kindle Fire could two or more users use the Kindle with thier google accounts...I've done some google searches and it seems to be a hassle..but wondering if rooted if different outcome...thanks. Also I did a search but came up empty...if someone can direct me to a thread I'd appreciate it..
Root Needed
As far as I can tell from your post, you want to have multiple google accounts on your device?
This is easy, but won't work on stock. On stock ROM you can't have any google accounts. You will need to root unfortunately!
Heaps of guides on this around.
Main Steps:
-Get ADB on your computer (explaining this takes forever)
http://www.addictivetips.com/mobile/what-is-adb-and-how-to-install-it-android/
EDIT: NOT A GOOD WAY - http://www.trick-computer.info/howto-root-amazon-kindle-fire.html or google!
-Use Kindle Fire Utility to install BurritoRoot.
http://forum.xda-developers.com/showthread.php?t=1399889
-Rooted, then install android market and google framework - also guides around. The easiest way to install android market is to go into kindlefireutility and just press a couple of buttons in it (auto download and install )
Thanks to the devs!

[Q] Best way to root NST No glowlight

This forum is confusing and when I tryed to root my nst with the TOUCHNOOTER,it came out buggy. What is the best way to root the nst on 1.1.2 and does tinynoot work with the nst 1.1.2?
Same question here. After I came home with it and tried to root it with TouchNooter, I made a brick out of it. Successfully unbricked it, but willing to be more carefull nexttime.
It would be nice to make a step by step guide how to root it, possibly with photos/video of these steps. I would like to root mine with support of the gApps, then install Launcher 7, and enable multitouch and NoRefresh. If anybody with time on his hands would do such guide for me, I would be very gratefull.
Tinynoot will work on the NST as well as the Glowworm.
BUT tinynoot does not support the Google app market - it is an extremely minimal approach intended only to get root and install a bare minimum of apps. One of the apps is the Amazon appstore, which may be enough for some folks.
If you want access to the full Google market or to gmail or google maps, you need to use one of the root methods that can make those happen. (Even Tasker was a big PITA to install on my tinynooted device because I had to go hunt down some supporting files that normally come from Google maps to get it to run.)
3dwarehouse said:
This forum is confusing and when I tryed to root my nst with the TOUCHNOOTER,it came out buggy. What is the best way to root the nst on 1.1.2 and does tinynoot work with the nst 1.1.2?
Click to expand...
Click to collapse
Check out this thread:
http://forum.xda-developers.com/showthread.php?t=1346748
I successfully rooted it on 1.1.2. I used beta5-2XUFullTouch-PART-1-START and beta5-1 XWUMFTouch-PART-2-END. Opera Mini doesn't not work, but Opera Mobile does. Also Market Search function doesn't work, but you can use AppBrain, or SearchMarket application from Android market.
3dwarehouse said:
This forum is confusing and when I tryed to root my nst with the TOUCHNOOTER,it came out buggy. What is the best way to root the nst on 1.1.2 and does tinynoot work with the nst 1.1.2?
Click to expand...
Click to collapse
Came out buggy how?
LOT of crashing and having to restart every 15 minutes.
Does anyone know of a easier way to root the nst

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.

Glowlight Plus

Just go this device from a friend. Been reading through this thread, and a bit unsure how to tackle this device. All I really want to do is install apps (kindle, kobo, overdrive, etc)
In a perfect world I'd like root to uninstall bloat, and all to install or try norefresh module in xposed. But that's secondary. First and foremost, any just the ability to install and use apps that would be useful on an ereader.
I'm in canada, so anything to do with Nook, Barnes & Noble is unusable to me.
Model: BNRV510
Software version: 45.2.22_user/4.5.2.58
Any step by step with file links would be apprecitiated. No issues with rooting, tweaking phones, and I'm a little familiar with ADB, but definitely no expert with that software. I can get my own apks, but if u have functioning apks already, then great.
Maybe, in the spirit of Christmas, I can find a little of the giving Christmas spirit on xda? lol
Anyways, any help would be appreciated.
Hawki, I woudl suggest you have a look through the other Glowlight threads here (not many to choose from) but ultimately, start from here http://forum.xda-developers.com/showpost.php?p=63552473&postcount=63
This is the easy way to get full rights and then you can decide on root or not.
Have fun

Need Help Disabling OTA & Amazon Launcher on HD 10 7th Gen

I've tried to get help to resolve this problem on two other threads but apparently I need step by step instructions. Even though I don't know how to code I can follow step-by-step instructions. I mean really, is there ANYTHING you could not do if you had clear STEP-BY-STEP, walkthrough instructions? I don't think so.
I own a Fire HD 10 7th Gen and Amazon released an auto-update giving me the Fire OS 5.6.4.0 and taking away the option to make Nova Launcher my default launcher
I installed Termux & Terminal Emulator for Android when I was trying to follow instructions on another thread and they are still installed. I would like to do this without using a PC if possible but if a PC makes it easier for you to help me I'm willing!
Thanks to everyone who has tried to help and to anyone who can help! :good:
Thanks for all the help!

Categories

Resources