yannis assael | the blog

  • Home
  • About
  • Categories
    • Android
    • Computing
    • iOS
    • Machine Learning
    • MacOSX
  • GitHub
  • Mobile Apps
  • yannisassael.com


Enable “Unknown Sources” via adb

Written by iassael on 02/07/2014. Posted in android, computing

Getting a Nook SimpleTouch I had to enable the android option Unknown Sources via adb shell… so first connect with usb and make sure adb debugging is on…

  1. adb pull /data/data/com.android.providers.settings/databases/settings.db

  2. sqlite3 /path_to_your_folder/settings.db

  3. update secure set value=”1″ where name=”install_non_market_apps”;

  4. .quit

  5. adb push settings.db /data/data/com.android.providers.settings/databases/

Tags: adb, android, apk, apks, enable, sources, unknown

Trackback from your site.

Comments (2)

  • Avatar

    Aayush

    05/07/2015 at 6:56 pm | #

    Hi !
    I get an error ” Error: no such column: ”install_non_market_apps” ” while trying to do the above. I actually got my settings app uninstalled on my rooted phone. Is there a way out?

    -Thanks

  • Avatar

    iassael

    05/07/2015 at 7:00 pm | #

    Well, this doesn’t sound good… I would try to download a settings app from aptoide.com and hope it works…

Leave a comment