I recently have been playing with my NC(nook color) as you may know by now. I ran into an issue where wanted to download and install .apk files from a third party market place like applanet.
I was able to install the applanet application but I ran into an issues when trying to download an app and install it.
The message i got was "Install Blocked. Installation of download apks is not supported."
I found this thread which help me fix my problem:
This will allow you to install apk files directly from the device, no need to adb them over. Just get the apk from the web or whatever source you want and install. Of course this is all assuming you have completed the current root process and have adb access already.
Link Below:
apk install from non market site.
1. Open a command prompt and navigate to your sdk tools folder
2. Run the following commands
C:\android-sdk-windows\tools>adb pull /data/data/com.android.providers.settings/databases/settings.db settings.db
C:\android-sdk-windows\tools>sqlite3 settings.db
sqlite> update secure set value=1 where name='install_non_market_apps';
sqlite> .q
C:\android-sdk-windows\tools>adb push settings
3. Reboot
4. Install apps from NC without ADB.
No comments:
Post a Comment