Turn on Unknown Sources setting programmatically
问题 I want to turn on Unknown Sources setting programmatically on non rooted device. I have checked with this code: boolean success; int result = Settings.Secure.getInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, 0); if (result == 0) { success = Settings.Secure.putString(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, "1"); } and with following permissions: <uses-permission android:name="android.permission.WRITE_SETTINGS" /> <uses-permission android:name="android