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

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

am 01cb25fd: resolved conflicts for merge of 29bea61c to jb-dev-plus-aosp

* commit '01cb25fd':
  Added support for customization of mobile data setting.
parents 3a4832aa 01cb25fd
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1540,6 +1540,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);