yannis assael | the blog

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


Posts Tagged ‘enable’

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/

  • Continue Reading
  • 2 Comments