[Q] Root = Install outside of Market? - Eee Pad Transformer Q&A, Help & Troubleshooting

I tried to install an ADB file, and it came up with a message that only apps f rom the Market could be installed, which surprised me. On my Captivate, to do this I've needed to enable side loading (if I remember correctly, which maybe I don't, ROOT was not needed to do this...in any event it was a separate function).
Anyway, my question is, if I Root the Transformer, will I be able to install ADB files?

ewingr said:
I tried to install an ADB file, and it came up with a message that only apps f rom the Market could be installed, which surprised me. On my Captivate, to do this I've needed to enable side loading (if I remember correctly, which maybe I don't, ROOT was not needed to do this...in any event it was a separate function).
Anyway, my question is, if I Root the Transformer, will I be able to install ADB files?
Click to expand...
Click to collapse
Settings -> Applications -> Unknown Sources to enable non-Market installs.
Regards,
Dave

foxmeister said:
Settings -> Applications -> Unknown Sources to enable non-Market installs.
Regards,
Dave
Click to expand...
Click to collapse
Thanks Dave. Of course, that worked!

Related

Workaround for Fixing 'Unsupported Sources'

http://forum.xda-developers.com/archive/index.php/t-644769.html << I got my idea from there.
If you update the
Code:
/data/data/com.android.providers.settings/databases/settings.db
file so that "install_non_market_apps" = 1 instead of 0, you will be able to install non-market apps off of your sdcard or wherever.
This works for me at least, but you'll have to root first.
I ended up editing the file with the SQLite Manager firefox add-on.
But, since that took me a really long time, I'll just upload the edited settings.db for you. (don't forget to make the extention .db instead of .db.txt)
Now, as far as I know, this won't mess anything up... BUT, I'd feel a lot better if someone who knows more about Android would provide some feedback before anyone else tries this. [It works for me, but I'm not sure if any other user-specific settings are kept in that file that I don't know about!]
But, at least for me, I no longer need to use adb to install apks that aren't from the Android Market.
I hope this is useful to someone...
EDIT::
You will lose your settings if you use the attached settings.db.txt file. Your best bet is to pull the file off your phone, edit it with something that understands sqlite3's database format, and then push it back. It's just better that way.
Further EDIT:: As someone pointed out later in this thread, this file unbeknownst to me when I shared it, actually has a unique ID by which phones can be identified on the android market, etc. While this isn't a huge deal, it can lead to some rather strange behavior... my phone for example has started attempting to download apps from the android market all by itself.
So--- if you want to side-load apps, change the variable in the database like I explained above.
Sorry, completely new to android but where would you put this file so it would allow side-loading?
You'd have to replace
Code:
/data/data/com.android.providers.settings/databases/settings.db
with it. You'll have to have your phone rooted first though. Then you'll have to transfer the file to your phone with adb, and you'll then copy it over the existing settings.db file.
Honestly, it might not even be worth the trouble now that attn1 is just doing the whole ROMs.
But make sure you take off the .txt.
This works. Thanks.
For some reason, i'm getting a permissons error regardless that i successfuly rooted my phone...o_o
justince said:
For some reason, i'm getting a permissons error regardless that i successfuly rooted my phone...o_o
Click to expand...
Click to collapse
did you boot the phone and do adb remount with debugging enabled?
USB debugging? Yeah.
What i did was i used the other method to sideload root explorer, took the settings.db.txt, deleted the .txt part and replaced it via root explorer, and now i can sideload whenever...however, when i try to delete any of the att bloatware, its read only o_o fawking att
Can anyone confirm any other way to remove bloatware without flashing the rom?
justince said:
USB debugging? Yeah.
What i did was i used the other method to sideload root explorer, took the settings.db.txt, deleted the .txt part and replaced it via root explorer, and now i can sideload whenever...however, when i try to delete any of the att bloatware, its read only o_o fawking att
Can anyone confirm any other way to remove bloatware without flashing the rom?
Click to expand...
Click to collapse
That's why made the ROM without all that -er- stuff.
attn1 said:
That's why made the ROM without all that -er- stuff.
Click to expand...
Click to collapse
Attn's Rom is ****ing great. many thanks btw
a little help please
a bit confused..
how do i type in this code "/data/data/com.android.providers.settings/databases/settings.db"?
adb /data/data/com.android.providers.settings/databases/settings.db
or something else because that doesnt work.
fluffyarmada said:
I'm not sure if any other user-specific settings are kept in that file that I don't know about!
Click to expand...
Click to collapse
The only issue I see (as an Android newcomer, but with a development background) is that the settings.db contains an android_id that is supposed to be unique (it gets generated when you boot the phone the first time after a reset). So anyone installing your settings.db is going to have the same ID.
I'm sure it won't be an issue for most people but I wonder if there'd be a collision in any apps that are designed to communicate between Android devices? For this reason I'll be tweaking my own settings.db once the phone arrives later today.
Big thanks for posting this though!
Thanks for that, I honestly had no idea. I'm very new to Android. And this was a kludge.
fluffyarmada said:
http://forum.xda-developers.com/archive/index.php/t-644769.html << I got my idea from there.
If you update the
Code:
/data/data/com.android.providers.settings/databases/settings.db
file so that "install_non_market_apps" = 1 instead of 0, you will be able to install non-market apps off of your sdcard or wherever.
This works for me at least, but you'll have to root first.
I ended up editing the file with the SQLite Manager firefox add-on.
But, since that took me a really long time, I'll just upload the edited settings.db for you. (don't forget to make the extention .db instead of .db.txt)
Now, as far as I know, this won't mess anything up... BUT, I'd feel a lot better if someone who knows more about Android would provide some feedback before anyone else tries this. [It works for me, but I'm not sure if any other user-specific settings are kept in that file that I don't know about!]
But, at least for me, I no longer need to use adb to install apks that aren't from the Android Market.
I hope this is useful to someone...
EDIT::
You will lose your settings if you use the attached settings.db.txt file. Your best bet is to pull the file off your phone, edit it with something that understands sqlite3's database format, and then push it back. It's just better that way.
Further EDIT:: As someone pointed out later in this thread, this file unbeknownst to me when I shared it, actually has a unique ID by which phones can be identified on the android market, etc. While this isn't a huge deal, it can lead to some rather strange behavior... my phone for example has started attempting to download apps from the android market all by itself.
So--- if you want to side-load apps, change the variable in the database like I explained above.
Click to expand...
Click to collapse
NOTE: You MUST have root access in order for this to work
sqlite3 is included in the Android SDK tools, so this would be the best way:
COMMON
Enable USB debugging (settings > applications > development > USB Debugging)
adb remount
adb pull /data/data/com.android.providers.settings/databases/settings.db settings.db
Linux/OS X
echo "update secure set value = 1 where name = 'install_non_market_apps';"|./sqlite3 settings.db
WINDOWS
echo update secure set value = 1 where name = 'install_non_market_apps';|sqlite3 settings.db
COMMON
adb push settings.db /data/data/com.android.providers.settings/databases/settings.db
Reboot phone and sideloading works. (thanks fluffyarmada)
I wonder if this might be why google voice fails to install properly for some...
Sent from my HTC Liberty using XDA App
Cobus said:
I wonder if this might be why google voice fails to install properly for some...
Sent from my HTC Liberty using XDA App
Click to expand...
Click to collapse
It is possible. The Google apps all use the android_id, afaik.
Although, I do remember I was never able to get the settings menu to setup the voicemail forwarding... I always had to use the weird GSM code. (The weird number with a bunch of * and # that you have to type in if you follow google's directions.)
judicious said:
a bit confused..
how do i type in this code "/data/data/com.android.providers.settings/databases/settings.db"?
adb /data/data/com.android.providers.settings/databases/settings.db
or something else because that doesnt work.
Click to expand...
Click to collapse
After you've rooted your phone, download the new settings.db into the same folder as where your adb program is. Then type:
adb push /data/data/com.android.providers.settings/databases/settings.db
in that folder while your phone is connect via usb.
I'm not sure if you have to restart your phone into recovery or not. Can someone check on this?
tiga2001 said:
After you've rooted your phone, download the new settings.db into the same folder as where your adb program is. Then type:
adb push /data/data/com.android.providers.settings/databases/settings.db
in that folder while your phone is connect via usb.
I'm not sure if you have to restart your phone into recovery or not. Can someone check on this?
Click to expand...
Click to collapse
Well, it's
Code:
$ adb push /path/to/file/on/computer/settings.db /path/to/file/on/phone/settings.db
So, if your settings.db is in your tools folder, then you can do
Code:
$ adb push settings.db /data/data/com.android.providers.settings/databases/settings.db
what happen to the file download? i cant find it..
judicious said:
what happen to the file download? i cant find it..
Click to expand...
Click to collapse
Please follow the instructions posted by attn1 on reply number 13 to this thread.
I removed the settings.db, because it actually has a bunch of extra settings I didn't know about like a handset specific android_id variable... that caused me a bit of trouble...
But, follow the instructions on reply #13 on this thread, and you'll be able to fix it yourself.
Sorry for the inconvenience.
so if we already used the file, is there anyway to revert it back to default and then change the settings via the method outlined above? or.. if we failed to make a copy of our original settings.db file.. basically am i SOL?
EDIT: nevermind, just rebooted into Clockwork and wiped the phone.

HELP!!!

is there a way to instill non market app with out rooting the phone???
Go to settings, applications, and select option to allow unknown sources. Unless the app itself requires root permissions, you should be able to install without root permissions.
Sent from my VEGAn-TAB using Tapatalk
rdtshaw said:
Go to settings, applications, and select option to allow unknown sources. Unless the app itself requires root permissions, you should be able to install without root permissions.
Sent from my VEGAn-TAB using Tapatalk
Click to expand...
Click to collapse
Nope unknown sources is only on a rooted rom.
Go to the guide that is stickied at the top of general section.
and next time please search before you post.
the option not there...
obi_8t4 said:
the option not there...
Click to expand...
Click to collapse
yes it is i found it look
MISCELLANEOUS:
Sideloading non market apps w/without root(videos soon):
What is side loading apps? Att blocks the instillation of non market apps. Hence the need to side load apps! (Shame on you ATT you monster)
There are multiples ways to do this, and I will be going over three.
-Option 1w/out root) Our brother over at android central made a niffty little GUI called side load wonder machine you can find the instructions and program here!
-Option 2w/ or w/outroot) You can also use android sdk (adb) you will need to download sdk from google you can find that here!
-You will need to update platform tools.
-I recommend placing the platform tools files into the tools folder.
-Place the apk file you wish to side load into the tools folder.
-Make sure you have charge only, and debugging mode selected (settings>applications>debugging)
-Connect your phone to your computer
- Press shift + right click on the tools folder
-Open command promp here
(ROOT ONLY)
Code:
adb devices
adb remount
adb push (apks name) /system/app
(W/OUT ROOT)
Code:
adb devices
adb install (apks name)
-Option 3root only)
-Place the apk file on your sd card.
-Insure Unknown Sources is selected (settings>applications>unknown sources)
-Use a root explorer (es file explorer, dual file manager etc. etc.) to locate the file on your sd card select it and select install.
Clicky
10char
mudknot2005 said:
Nope unknown sources is only on a rooted rom.
Go to the guide that is stickied at the top of general section.
and next time please search before you post.
Click to expand...
Click to collapse
Doh! I could have sworn my non-rooted tablet let me sideload apps... Sorry I was wrong.
Rob
Your tablet may let you, but its one of the perks that att strips from the phone with their retarded firmware.
mudknot2005 said:
Your tablet may let you, but its one of the perks that att strips from the phone with their retarded firmware.
Click to expand...
Click to collapse
ahh yes, I was just reading up on that after you smacked me down. I knew I wasn't crazy! I don't remember if my Droid X had that option or not, I rooted it as soon as I got it. Sorry to run around posting bad info!! and about the great evil that is ATT. My wife is an iphone fangirl and I was sooo happy when I could get her an iphone on Verizon to save a couple bucks on the combined account, one less bill to pay, and Verizon has such better coverage here.
Cheers!
Rob
Tried to bring her over to the dark side, even told her about the cookies! I just remember her saying something about prying it out of her cold dead hands...
I can't believe no one's linked this yet (http://forum.androidcentral.com/android-sideload-wonder-machine/). Android Central Sideload Wonder Machine. I used it many time before my (recent) root. It worked VERY well, and allowed me to get Angry Birds Rio and Swype with little difficulty
Silas0220 said:
I can't believe no one's linked this yet (http://forum.androidcentral.com/android-sideload-wonder-machine/). Android Central Sideload Wonder Machine. I used it many time before my (recent) root. It worked VERY well, and allowed me to get Angry Birds Rio and Swype with little difficulty
Click to expand...
Click to collapse
Hmmm...it has been discussed and linked. So much for reading and comprehension.
Ah, missed that. My bad.

[Q] Does anybody know how to root LG L9 P769?

I tried different tools but none worked so far.
superoneclick: hanged
Optimus G root: permission denied on reboot
This phone currently is a big seller and I am expecting somebody will give a solution. The source is also available at LG open source center.
Please help.
mingkee said:
I tried different tools but none worked so far.
superoneclick: hanged
Optimus G root: permission denied on reboot
This phone currently is a big seller and I am expecting somebody will give a solution. The source is also available at LG open source center.
Please help.
Click to expand...
Click to collapse
Lol I am also waiting for root for this phone
But mine is P760
Taftus said:
Lol I am also waiting for root for this phone
But mine is P760
Click to expand...
Click to collapse
Other than the screen size and HSPA band, the rest of spec are pretty the same, so it's possible P760 method is applied on P769.
Unfortunately, the method I searched online is simply a fraud (I looked up the web code).
Just picked up 2 of these phones. My wife loves hers. I am hoping to begin liking mine. Rooting would help.
also waiting for some development for this phone, i have done themes before and know the basics of android but would still need help from a real dev.
without root we can not move apk data to sd card !!! aaaa... im wating for root solution to
I've found an italian guide but i cannot post it cause i'm new and post external link is not allowed.. anyway look at:
androiworld.it -> forum -> lg-optimus-l9-335 -> root-lg-l9-75483
antoz87 said:
I've found an italian guide but i cannot post it cause i'm new and post external link is not allowed.. anyway look at:
androiworld.it -> forum -> lg-optimus-l9-335 -> root-lg-l9-75483
Click to expand...
Click to collapse
This one?
http://translate.google.com/transla....it/forum/lg-optimus-l9-335/root-lg-l9-75483/
Root procedure
Hi guys, I'm italian and I am one of the guys that rooted the phone with that procedure.
I'll try to help you out.
1) Download and install USB drivers and LG Suite
2) Make a full backup of your phone data with LG suite
3) Download bin4ry's script...you will find the link on the italian post you quoted
4) Plug the phone in, and make sure is set to "LG software mode" and it's in debug mode
5) Run the script, and make sure you DON'T run it as administrator, but run it as normal user, or it won't work (at least on Windows 8 64)
6) Select first "2" (Device type: Special), then 1 (root)
7) At some point, the phone will ask you to proceed with a recovery. Do it.
8) Follow the script's procedure until the end. Install super user app. Phone will reboot a few times...don't worry, it's normal You will also be asked to type something like "/data/etc"..do it!
9) Root should be effective by now. To check this out, try "Got root?" application
10) Restore your data with the backup you made at step 2.
Enjoy!
Let me know!
gianrond said:
Hi guys, I'm italian and I am one of the guys that rooted the phone with that procedure.
I'll try to help you out.
1) Download and install USB drivers and LG Suite
2) Make a full backup of your phone data with LG suite
3) Download bin4ry's script...you will find the link on the italian post you quoted
4) Plug the phone in, and make sure is set to "LG software mode" and it's in debug mode
5) Run the script, and make sure you DON'T run it as administrator, but run it as normal user, or it won't work (at least on Windows 8 64)
6) Select first "2" (Device type: Special), then 1 (root)
7) At some point, the phone will ask you to proceed with a recovery. Do it.
8) Follow the script's procedure until the end. Install super user app. Phone will reboot a few times...don't worry, it's normal You will also be asked to type something like "/data/etc"..do it!
9) Root should be effective by now. To check this out, try "Got root?" application
10) Restore your data with the backup you made at step 2.
Enjoy!
Let me know!
Click to expand...
Click to collapse
It doesn't work on me even I have to perform factory reset to fix.
mingkee said:
It doesn't work on me even I have to perform factory reset to fix.
Click to expand...
Click to collapse
What's the problem? What happened?
I can't even get PC Suite to detect my phone. The drivers are installed and seem to be working. Device manager shows everything OK. I select "LG Software" from the USB connection type menu on my device. The PC Suite software says "The device inforation failed to load" after attempting to connect.
gianrond said:
What's the problem? What happened?
Click to expand...
Click to collapse
Many applications were gone and I even can't use "restore" (2-2).
--------------------------------------------------------
(update)
Good News!!!
My P769 is rooted! The key is "Lookout Security". Disable it and you're ready.
Here is the steps:
Make sure LG driver installed (the simplest way: install LG suite)
You MUST disable Lookout Security (menu-settings-applications). Choose disable
Make sure USB debugging enabled, and choose USB charge only.
Run Root and Restore->RunMe.bat->choose 1. Check the phone screen if you're asked to restore, choose it when you're prompted.
The phone will reboot. You have to look at the status of the terminal. If there's NO permission denied error, look at the phone. If it shows "Android is updating", the phone should be rooted.
Don't forget to grab SuperSU and BusyBox (and install the latter).
mingkee said:
Many applications were gone and I even can't use "restore" (2-2).
--------------------------------------------------------
(update)
Good News!!!
My P769 is rooted! The key is "Lookout Security". Disable it and you're ready.
Here is the steps:
Make sure LG driver installed (the simplest way: install LG suite)
You MUST disable Lookout Security (menu-settings-applications). Choose disable
Make sure USB debugging enabled, and choose USB charge only.
Run Root and Restore->RunMe.bat->choose 1. Check the phone screen if you're asked to restore, choose it when you're prompted.
The phone will reboot. You have to look at the status of the terminal. If there's NO permission denied error, look at the phone. If it shows "Android is updating", the phone should be rooted.
Don't forget to grab SuperSU and BusyBox (and install the latter).
Click to expand...
Click to collapse
Heck yes!! I will try this with my other PC. I think this one is having driver conflicts because of all the devices I have rooted on it.
Do we need to do the backup and restore steps? Or is all data still intact?
kevev said:
Heck yes!! I will try this with my other PC. I think this one is having driver conflicts because of all the devices I have rooted on it.
Do we need to do the backup and restore steps? Or is all data still intact?
Click to expand...
Click to collapse
It doesn't really matter because the phone is still new and I have not yet put in data until it rooted.
Thread closed as per OP request. See this thread for detailed rooting information.

[Q] FileMate Clear 7" T720 tablet

Does anyone know if Z4Root will work on this tablet? Thanks!
I've been looking for one for 3 days now, I tryed onclickroot and z4root or something like that,, cant find anything Anyone please help!!
I'm still waiting for my tablet to be delivered...I'm gonna try SuperOneClick (crosses fingers)
I got one of these for my daughter for xmas. I spent a few days trying to root it with no luck. I'm not intimately familiar with android (some unix experience), but I tried all the options I could find for rooting Allwinner a10 devices. At first I ran into problems with adb unable to recognize the device for most one-click methods. I downloaded the android tools and was able to connect with the included adb. After studying the scripts, they all use the "adb root" command to gain root access on the device and copy the necessary files. Unfortunately, this command fails using adb from the tools. At first I thought this was due to my adb version, but after doing some research I think it is actually due to the device kernel. I believe it requires reflashing or some exploit to be able to gain root. I was able to install root explorer and I can browse all the necessary directories but I can't modify or copy the necessary files into them. Busybox told me there was an older version installed, but wouldn't let me install a newer version (again I think due to the permissions). Also, superuser would say it installed but the su binary did not show up on the bin directory. As the necessary directories are all owned by root, I couldn't figure out a way to modify the permissions...
I wound up returning the FileMate and got a Lenovo IdeaTab. Got that rooted in no time.
sorry i never saw this post i've bought 2 of these and i rooted them,
i wish i could get a better build for them though, too many app crashes and the internet connectivity sucks
i used a method by Bin4ry called root with restore, v17 worked any ways i have the zip if you would like it
ferny_dx said:
sorry i never saw this post i've bought 2 of these and i rooted them,
i wish i could get a better build for them though, too many app crashes and the internet connectivity sucks
i used a method by Bin4ry called root with restore, v17 worked any ways i have the zip if you would like it
Click to expand...
Click to collapse
Screw it, here it is for future reference.
How'd you do it!?!?
ferny_dx said:
Screw it, here it is for future reference.
Click to expand...
Click to collapse
FileMate Clear T720
Thank you very much for being the only person ever to have posted in regards to this tablet. I just got mine for christmas and have been trying to get it rooted. I've tried a lot of those one-click methods, and I've even tried this Bin4ary method. but it just hangs up on "daemon started sucessfully*"
Can you please direct me to the filemate drivers (if needed)
also, I have usb debugging endable, allowing 3rd party (not secure) files enabled. and pulling my hair out (enabled).
Thanks again.
Also, I'm running windows 7 and 8, (((maybe i should try win7))) hmm. i'll get back to you on that. Anyhow, any advice would be greatly appreciated, since returning it doesn't sound very fun.
jiberish05 said:
FileMate Clear T720
pulling my hair out (enabled)..
Click to expand...
Click to collapse
I laughed so hard. ok your going to have to install drivers by force,
first off do you happen to have android sdk installed? if you don't there is another way but its going to sound weird,
if you do have the android SDK installed:
1. go to your computer manager (by opening explorer, right click on the "computer" group on the left column and select manager)
2. look for any unrecognized item that appears, ( it will most likely be labeled "Clear" with a faded icon and a "?" sign on top
3. right click and choose "Update drivers", it will give you options, choose "Browse my computer for driver software", another option screen will show,
4. at the bottom of the window there will be an option that says "let me pick from a list of device drivers on my computer"
5. on the screen that appears there should be an option that says "ADB Interface", choose this
6. choose "Google, Inc.">"ADB Testing Interface version x.x.x.x" (I chose version 2.1.0.0)
that should do it next time you plug in the tablet try running ddms or open the cmd and type in "adb devices" (assuming you have adb installed) and it should show.
if this helps just hit the thanks button
[edit] I am running windows 8 btw [/edit]
ADB interface doesn't show up
Thank you very much for getting me farther, however I dont see ADB interface. I'm looking into it right now. I just re-installed the sdk drivers and will keep at it.
BTW, is it even worth doing this? the main reason I want to do it, is so i can connect my ps3 remote via bluetooth, and possibly a little overclocking. Have you had any luck OC it?
Thanks again Much appreciated:good:
jiberish05 said:
Thank you very much for getting me farther, however I dont see ADB interface. I'm looking into it right now. I just re-installed the sdk drivers and will keep at it.
BTW, is it even worth doing this? the main reason I want to do it, is so i can connect my ps3 remote via bluetooth, and possibly a little overclocking. Have you had any luck OC it?
Thanks again Much appreciated:good:
Click to expand...
Click to collapse
open up SDK manager and go to Extras>"Google USB Drivers"
also install everything in the "Android 4.0 (API 14)" section, I have other options installed if this still doesn't work.
its worth it just for the extra stuff that root comes with like titanium backup, but you cant over clock, if you go any higher than 1200 MHz it will lock up and you have to force it to reset.
cyberkeeper1 said:
HERE is the link to root as provided earlier
Click Here to download ADB universal drivers. they should work better than the google USB drivers.
---------- Post added at 12:20 AM ---------- Previous post was at 12:11 AM ----------
this seems kind of spammy. What backs up my claim is that you dont have more than 5 posts...
Click to expand...
Click to collapse
Thanks for the link to my post on android central, the link in that post just comes back the xda thread
Root MANY ANDROID! [Upd: 20.11.2013] - Added Z1 Root
Sent from my XT862 using Tapatalk
Rooted Filemate Clear
I just wanted to confirm I have also rooted the Clear with the Bin4ry v33 exploit using option 1. Although I received the following error:
remote object '/system/bin/ric' does not exist
.
Going to copy files to it's place
Rebooting again, please wait!
Could Not Find C:\Documents and Settings\Graham School\My Documents\Downloads\Ro
ot_with_Restore_by_Bin4ry_v33\ric
Restoring previous Backup! Please select the RESTORE MY DATA option now on your
device!
SuperSu installed and root apps working.
Rooted With Kingo
I just bought one of these cheap to play with and used Kingo to root it. Worked first time, no problem. The only issue I am having is that the SuperSu binaries are failing to update but root is still working. Titanium is working and Root Explorer so I can debloat. Hope that helps is anyone is still trying to use these
Jfender1005 said:
I just bought one of these cheap to play with and used Kingo to root it. Worked first time, lem. The only issue I am having is that the SuperSu binaries are failing to update but root is still working. Titanium is working and Root Explorer so I can debloat. Hope that helps is anyone is still trying to use these
Click to expand...
Click to collapse
please tell me where in the world you got the Kingo root?
As far as being unable to update binaries, try to find a custom recovery and install. From there, you can inject them via su-binary update.zip and bam!
Kingoroot
cyberkeeper1 said:
please tell me where in the world you got the Kingo root?
As far as being unable to update binaries, try to find a custom recovery and install. From there, you can inject them via su-binary update.zip and bam!
Click to expand...
Click to collapse
http://www.kingoapp.com/android-root.htm
That is the link for the Kingo site. The first time I saw it on here there was some question about whether it was safe becase it is not open source and used a Chinese SuperSu app. I felt safe using it on a tablet because I do no banking on it or anything, but the newest posts I have seen are that Kingo is safe. Hope that helps. And if you know where to find a custom recovery that will work with this app please let me know.

Device blocks apk installations

I recently bought a cheap candy bar phone (MobiWire Sakari), for nostalgic purposes mostly, and learnt it ran a simplified version of android 4.4.2.
It meant no developer mode, no playstore and no settings past personalisation (tapping build number in the 'about' section does nothing).
It has facebook lite installed and has the option to install WhatsApp. It does this by downloading a special version off the WhatsApp website and allowing you to install it. When you try download and install other apps, it comes up with an error saying it can't be installed (I've tried many).
I understand that a lot of apps won't work, being a 2.4" keypad phone, but there are apps available to make the keypad experience more enjoyable - as you currently have to tap the keys a few times for each letter (I did say I wanted nostalgia, but T9 would be nice). Not to mention, it would simply be great to have a nostalgic experience with an up-to-date OS (at a dirt cheap price).
Anyone have any idea of how to root the device, enable app installation (the 'install from unknown sources' option is not available in the settings), or extract some of the code from the working WhatsApp apk and insert it into other apks (appologies if it doesn't work like that, I'm a noob in the developer world).
As I said, I can't enable USB debugging for any ADB installations. I can get into the factory recovery mode and can access ADB update but this doesn't help me as ADB install can't work.
Thanks for reading and any help would be great.
I am also interested in this
Can you post a screenshot of the about screen?
spoofykid said:
I recently bought a cheap candy bar phone (MobiWire Sakari), for nostalgic purposes mostly, and learnt it ran a simplified version of android 4.4.2.
It meant no developer mode, no playstore and no settings past personalisation (tapping build number in the 'about' section does nothing).
It has facebook lite installed and has the option to install WhatsApp. It does this by downloading a special version off the WhatsApp website and allowing you to install it. When you try download and install other apps, it comes up with an error saying it can't be installed (I've tried many).
I understand that a lot of apps won't work, being a 2.4" keypad phone, but there are apps available to make the keypad experience more enjoyable - as you currently have to tap the keys a few times for each letter (I did say I wanted nostalgia, but T9 would be nice). Not to mention, it would simply be great to have a nostalgic experience with an up-to-date OS (at a dirt cheap price).
Anyone have any idea of how to root the device, enable app installation (the 'install from unknown sources' option is not available in the settings), or extract some of the code from the working WhatsApp apk and insert it into other apks (appologies if it doesn't work like that, I'm a noob in the developer world).
As I said, I can't enable USB debugging for any ADB installations. I can get into the factory recovery mode and can access ADB update but this doesn't help me as ADB install can't work.
Thanks for reading and any help would be great.
Click to expand...
Click to collapse
Probably won't work, installing other apps requires having a proper "package installer" like other android devices that can install apps. By your description, installation of apps on that device doesn't work the same as for other android devices.
You can attempt to adb sideload, if the device has a sideload option in recovery.
Sent from my LGL84VL using Tapatalk
Droidriven said:
Probably won't work, installing other apps requires having a proper "package installer" like other android devices that can install apps. By your description, installation of apps on that device doesn't work the same as for other android devices.
Click to expand...
Click to collapse
It has some form of package installer as it installs Whatsapp when you first turn on the device. When you try install a different apk, it seems to start the package installer but stops when it doesn't recognise the apk file. I bought another device with a different build number, enabling me to enter developer mode and installed apps using this method: https://forum.xda-developers.com/showpost.php?p=76141643&postcount=23
Droidriven said:
You can attempt to adb sideload, if the device has a sideload option in recovery.
Click to expand...
Click to collapse
I can enter stock recovery, however, adb sideload is only able to install update.zip files. Or is there a method of installing apk files as well through the "apply update from ADB" method? Or is there usually another option showing to be able to adb sideload an apk file? Here is someones post showing the stock recovery https://forum.xda-developers.com/showpost.php?p=76105681&postcount=13
Thanks for your help.
metallas said:
Can you post a screenshot of the about screen?
Click to expand...
Click to collapse
Please see the photo
..
Sent from my LGL84VL using Tapatalk
Droidriven said:
Have you seen this?
https://forum.xda-developers.com/general/help/mobiwire-sakari-install-apps-t3726398
Click to expand...
Click to collapse
There was no resolution in that thread at the time so I asked another question with more detail. There still is no resolution for devices which cannot access developer mode.
Droidriven said:
By the way, the device name "Sakari" might help when used in your searches.
Click to expand...
Click to collapse
"Sakari" does not exist in XDA as a device unfortunately.
Droidriven said:
You can attempt to adb sideload, if the device has a sideload option in recovery.
Click to expand...
Click to collapse
Is this possible given my circumstances?
spoofykid said:
There was no resolution in that thread at the time so I asked another question with more detail. There still is no resolution for devices which cannot access developer mode.
"Sakari" does not exist in XDA as a device unfortunately.
Is this possible given my circumstances?
Click to expand...
Click to collapse
I didn't say to use the name Sakari to search XDA, I meant for you to use it in Google searches.
You don't have a sideload method. I doubt you'll be able install apps. The facebook lite and Whatsapp that you installed are probably built just so it could be used on that device. You'd have to try modifying other apps in the same manner that these two were modified in order for them to work on that device.
All in all, WAY more trouble than its worth. The device probably wouldn't perform well with those apps installed, even if you "could" get them to install.
Sent from my LGL84VL using Tapatalk

Categories

Resources