Sideloading, OCD and 'allow non-market apps' - Captivate Q&A, Help & Troubleshooting

I've used the Sideload Wonder Machine and it worked for what I needed, but I wanted to be able to sideload without the machine (directly on my phone). I ran across a post for OCD, but then saw somewhere that you had to have sideloading enabled first. Am I missing something? I thought that is what OCD did.
Is enabling sideloading the same as allowing non-market apps?
Sorry if this is obvious, I'm just getting into this stuff.
I'm rooted (OCR), sdk (adb) and Odin seem to be working, OCLF, have done a Clockwork backup and still on Eclair 2.1.

I use Astro file manager to install nonmarket apps. You can download files to your SD card and open them with astro. Gives you the option to browse the app file or install.

Related

[How to] Install an app

I want to install Opera Mini on my G1. the apk is out there but I can not figure out a way to make it run load do anything. Anyone no how to make this happen?
For those wondering why I want Opera Mini is becoz I really like Opera mini in a hurry.
You have to make sure to check the box that says allow outside downloads. But the opera mini wont work its for the old beta emulator and will not load on thre G1.
install???
How exactly do we install third party off the market apps??? I have apk extensions. now what???
Credits go to: Blogsdna.com
I have seen on many users asking on forum what is .apk file ? How to install .apk app on G1 phone ? How to install non market apk apps on android ? etc. A apk file is “android package file” with the extension ‘.apk’ use to install any application on Google Android powered mobile phone. So incase you need to install any application on your android phone you need to have file with .apk format.
Installing any application on google android is pretty easy but installing non market apps on android phone is little tricky one. Well don’t worry here is guide for installing .apk apps on android phones.
How to Install .Apk Apps on Google Android G1 Phone
1. Install and open the Apps Installer application from the Android Market.
2. This opens a view showing *.apk application names in the sdcard root directory.(note, if no AppNames are listed you have no .apk files in the root directory of the SDCard)
3. Touch the app name to initiate installation of the app.
4. The app is now installed
How to Non-Market .Apk Application on Google Android G1 Phone
1. Download and install Google Android SDK.
2. Now type adb in a command shell will display all the options, adb.exe is SDK tool used to install applications and interface with the device.
3. Now Connect Your G1 Phone to your computer using USB cable. You need to install Drivers for this. Download Android USB drivers from here. This driver is required for adb to interface with an android G1 phone using USB cable.
4. Go to Settings/SD card & phone storage and Unmount/eject SD Card. You can enable it again later after you installed your third-party application.
5. Go to Settings/Application settings and enable Unknown sources.
6. Download the Application installer .apk file to a local folder on your computer, Now type below command at command shell to install app.
adb install <Full Path to apk file><apk file name>
The above guide is only application for windows XP users and Windows Vista users wont be able to use it, since android sdk for windows vista is not available.
Click to expand...
Click to collapse
neiltoe said:
I want to install Opera Mini on my G1. the apk is out there but I can not figure out a way to make it run load do anything. Anyone no how to make this happen?
For those wondering why I want Opera Mini is becoz I really like Opera mini in a hurry.
Click to expand...
Click to collapse
I have Opera mini 4.2 apk in my files if you need it.
Mikey1022 said:
Go to Android Settings/SD card & phone storage and disable Use for USB storage
Click to expand...
Click to collapse
There's no such menu. i.e. "disable Use for USB storage" at "Settings/SD card & phone storage" in T-mobile G1.
To enable ADB, you'll need to turn on "USB debugging" in Settings - Application settings - Development.
Opera mini 4.2 beta is on marketplace now anyway.
actually, there is another way. download the app from the internet (either using Android or PC) and move it to the SD card. then download any file browser app (such as IO File Manager) from Android market. open file browser app and locate the downloaded app from the internet and open it. that's it...
Can you add Twidroid to the mix
stats555 said:
I have Opera mini 4.2 apk in my files if you need it.
Click to expand...
Click to collapse
Thanks for putting those files together. Can you add Twidroid to the mix?
Thanks!
this should b made a sticky
FYI: Opera is also on SlideME Marketplace. You can install directly from within SAM. It's under "Communications" category.
If you don't have SAM, just visit http://SlideME.org/sam2 from your G1 and download SAM.
help... please? lol
okay i've read through a lot of threads the past couple hours and i just can't figure this out. i can't install 3rd party apps using apps installer or a file manager, but i can install perfectly fine from the market. it tells me that i need to free up some space in order to do so. i have the box checked and such for installing 3rd party apps in settings, and i'm running JF1.42 RC33... what the heck could the problem [email protected]
might be a dumb question, but do you have enough space(mine starts complaining @ less than 5mb left)? menu-settings-storage-internal space.
try adb install, if previous post doesn't help
aye, i'm well above 5MB even without the /data/data move and the /app move, i believe i'm somewhere around 25mb if i keep everything on my phone. so you think the ADB install will fix this? i will have to try it when i get off of work, i don't think the DoD will take kindly to me using their computers for it lol. what thread is that listed under?
Very Simple to install downloaded apk apps!!!
1. Go into menu/settings/applications and check the box allow install of non-market applications.
2. Then download the app: ApkInstaller
Once you do this, you download the apk file from the internet. Save it somewhere on your memory card. Open ApkInstaller and search for the file on your memory card and install.
It's just that simple. I do it all of the time.
Have fun!
Install .apk
Through Terminal Emulator without adb or another install application (AppsInstaller):
http://forum.xda-developers.com/showthread.php?p=3425442#post3425442
All these methods seem pretty confusing... All I do is just click allow third party apps and then click the .apk file in oi file manager.
If you realize when this thread was created, there was no file manager
Mikey1022 said:
If you realize when this thread was created, there was no file manager
Click to expand...
Click to collapse
My bad. Sure glad the file manager came out so I don't have to go through all that trouble .

[Q] Install a whole bunch of APKs at once, with 1 click\press?

is there any app that does this? it's getting annoying to use astro file manager, checking all the apps i want to install, and then still giving permission to each app to be installed. tried searching, but yielded no relevant results.
I don't know whether you can do it via graphical UI, but surely you can use ADB and simple shell script to install from your PC.
Code:
for APP in `ls *.apk`; do
adb install $APP
done
I think it's possible also from terminal emulator with similar script - replace adb with pm, but I didn't test this one.
Cobra281 said:
is there any app that does this? it's getting annoying to use astro file manager, checking all the apps i want to install, and then still giving permission to each app to be installed. tried searching, but yielded no relevant results.
Click to expand...
Click to collapse
Are you restoring apps after a wipe/reset? Try titanium backup, it does backups and every data off every app and just by doing a batch restore everything goes back to how it was previously
Sent from my HTC Dream
Android Commander can do bulk install, just plug in your phone whilst on normal mode, dont activate mass storage, and you can batch install - http://forum.xda-developers.com/showthread.php?t=597098
Perhaps even this app can achieve the same result - http://forum.xda-developers.com/showthread.php?t=585085
Droid explorer can do this easily
thanks, everyone! yes, this was because i installed a new froyo rom(chromatic 4.4).
it took awhile, but i got android commander working, and was able to install all my apps using it.
just having a weird issue now;
so, as mentioned, i used android commander to install all my apps. they all seem to have installed on the phone, however, and not on the SD card. i have "allow application moving" checked, and "install location" set to 'automatic'. i am able to move the applications 1-by-1 in settings > manage applications > downloaded, then clicking on the application, and then pressing "move to sd card". why aren't the apps being installed to the sd card? how can i move them all at once? i really don't want to move each app, one at a time. thanks

Rooted, but can't locate busybox on my captivate

I have rooted with the update.zip. installed android sdk and now trying to enable captivate app sideloading, but I cant' seem to locate busybox after i installed it. I used "Buysbox installer" and click in install and states buys box has been installed, but i can't locate it anywhere on my phone to start it up to continue with the enabling app sideloading. I am lost on what to do from this point, any help would be awesome. Thanks!
When I enabled sideloading I logged into to my phone through adb copied the system DB, used SQLite extension in firefox to switch the bit, and then pushed the DB back on the phone. Restart and done.
What method are you trying to use to enable sideloading apps? All busybox did for me was allow things like su, copy, etc in the shell through adb.
trekie86
I was trying to follow these instructions.
h**p://briefmobile.com/enable-captivate-app-sideloading
How did you do this? Do you have step by step instructions on how you did what you did?
Thanks!
Thought you should be able to download busybox by itself from the market - or you could install Titanium Backup which will install it for you.
if busy box installer says its installed, then its installed. there is no 'app' for busybox. its in the system. that website is slightly misleading. i think they mean the busybox INSTALLER. open it and run the install/enable it. as already suggested, if you install titanium backup, it will check that busybox is installed and working properly
Pirateghost said:
if busy box installer says its installed, then its installed. there is no 'app' for busybox. its in the system. that website is slightly misleading. i think they mean the busybox INSTALLER. open it and run the install/enable it. as already suggested, if you install titanium backup, it will check that busybox is installed and working properly
Click to expand...
Click to collapse
actually there is an APP icon for busybox that will show up in app drawer. If you want to make sure its installed just download it from the market...open the app and run the install...takes all of about 30-40 seconds.
I just ended up downloading root explorer and firefox SQLite manager and just copied the settings.db over to my sd card and changed the settings from 0 to one on the install none market apps, then copied it back the com.android.providers.settings and i am enabled now. awesome thanks!
2Quik said:
trekie86
I was trying to follow these instructions.
h**p://briefmobile.com/enable-captivate-app-sideloading
How did you do this? Do you have step by step instructions on how you did what you did?
Thanks!
Click to expand...
Click to collapse
Sorry I didn't get back to your post. Glad you got it to work. Good luck with the non-market apps.

Problem installing apps without data plan

I'm having some trouble getting apps onto my phone. I use the Android SDK to run an emulator at the 1.5 level which has the android market app. I use the android market on the emulator to install apps onto the emulator. I backup those apps on the emulator using Astro and I then use adb to pull the backed up app (apk file) onto my PC.
After this I use adb to push the apk file from my PC to the SD card on my phone. I use Astro on the phone to navigate to the file and install it. At this point a progress bar appears and the screen says "Installing..." but it never finishes. I've waited over an hour and still nothing. I get the same result if I place the apk file on the internal memory (/) instead of on the SD card. I even tried installing directly from my PC using adb and it just sits there.
I'm running Android 2.2 on my phone. I tried setting up a 2.2 emulator with the market app on it but was having some difficulty. Somehow I don't think the emulator should make a difference though.
Any help would be appreciated. For you guys out there without data plans, how are you getting apps onto your phones?
Btw I have the phone set to allow installation of non-market applications.
No takers? I know there's gotta be some people out there without data plans. Hopefully I can figure this out as I don't want to have to go back to Windows Mobile.
In case it matters, I'm using the ROM and Jan 14 240x320 nbh file from here http://forum.xda-developers.com/showthread.php?t=738612.
adb install <filename>

Non market apps

I just got a new captivate 2.2 out the box how can I enable non market apps or unknown sources?
Sent from my SAMSUNG-SGH-I897 using XDA App
The way I have done that is to first root your phone using Shortfuze's superoneclick root. There is also an option on that program to allow non-market apps.
ATT recently pushed an update that allowed non-market apps to be installed. This was to specifically accommodate the installation of the Amazon App Market. However nothing shows up the the settings where you are supposed to click the radio button/ check box to allow non-market apps, they just install. Try installing a non-market *.apk and if it works your phone is currently allowing non-market apps. It was working for me. If it's still not working and you don't want to root. Sideload Wonder Machine works great. Only downside to that is that it involves the use of a computer and USB cable. It is far easier than sideloading though the android sdk though.

Categories

Resources