Skip to content

Commit

Permalink
Mms auto-retrieval (1/3): framework
Browse files Browse the repository at this point in the history
Change-Id: I9b2f76d8cf9d67eddddfdf7737a948eea680329f

It's only porting this http://review.cyanogenmod.org/#/c/26166/
Part 1 of 3
  • Loading branch information
joaoventura authored and Gergely Szell (sethyx) committed Jan 21, 2013
1 parent 573f713 commit 1d8321f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions core/java/android/provider/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -1620,6 +1620,23 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
@Deprecated
public static final String WIFI_STATIC_DNS2 = "wifi_static_dns2";

/**
* Allows automatic retrieval of mms contents
* <p>Type: INT</p>
* 0 -- false
* 1 -- true
* @hide
*/
public static final String MMS_AUTO_RETRIEVAL = "mms_auto_retrieval";

/**
* Allows automatic retrieval of mms contents during roaming
* <p>Type: INT</p>
* 0 -- false
* 1 -- true
* @hide
*/
public static final String MMS_AUTO_RETRIEVAL_ON_ROAMING = "mms_auto_on_roaming";

/**
* Determines whether remote devices may discover and/or connect to
Expand Down Expand Up @@ -2923,6 +2940,8 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
WIFI_STATIC_NETMASK,
WIFI_STATIC_DNS1,
WIFI_STATIC_DNS2,
MMS_AUTO_RETRIEVAL,
MMS_AUTO_RETRIEVAL_ON_ROAMING,
BLUETOOTH_DISCOVERABILITY,
BLUETOOTH_DISCOVERABILITY_TIMEOUT,
DIM_SCREEN,
Expand Down

0 comments on commit 1d8321f

Please sign in to comment.