Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29bea61c authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am f01f6b6d: Merge "Added support for customization of mobile data setting."

* commit 'f01f6b6d':
  Added support for customization of mobile data setting.
parents e1b573a3 f01f6b6d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1461,6 +1461,12 @@ public class DatabaseHelper extends SQLiteOpenHelper {
                            SystemProperties.get("ro.com.android.dataroaming",
                                    "false")) ? 1 : 0);

            // Mobile Data default, based on build
            loadSetting(stmt, Settings.Secure.MOBILE_DATA,
                    "true".equalsIgnoreCase(
                            SystemProperties.get("ro.com.android.mobiledata",
                                    "true")) ? 1 : 0);

            loadBooleanSetting(stmt, Settings.Secure.INSTALL_NON_MARKET_APPS,
                    R.bool.def_install_non_market_apps);