diff options
| author | 2019-02-15 11:08:48 -0800 | |
|---|---|---|
| committer | 2019-02-15 11:08:48 -0800 | |
| commit | e0f0c74cf98f4a8fe166ce6321f50f7d21f541e3 (patch) | |
| tree | 2b4010a92dff38d266d2ec4d409ff26abb10e8b6 | |
| parent | a454dd772c9d175475fe70ab315a0dc4879dddc4 (diff) | |
| parent | b280d76d1f9b431b260e86d01896b98737aeb830 (diff) | |
Merge "Move RCS table creation flag to contract class" am: 0c8bc10ab2 am: 122d78ddac
am: b280d76d1f
Change-Id: Iac5b5b7d729769cf9005391819657573ddc5271f
| -rw-r--r-- | telephony/java/android/provider/Telephony.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java index a1c32b5f80a3..2462beeb28a8 100644 --- a/telephony/java/android/provider/Telephony.java +++ b/telephony/java/android/provider/Telephony.java @@ -2123,6 +2123,11 @@ public final class Telephony { * @hide - not meant for public use */ public interface RcsColumns { + // TODO(sahinc): Turn this to true once the schema finalizes, so that people can update + // their messaging databases. NOTE: move the switch/case update in MmsSmsDatabaseHelper to + // the latest version of the database before turning this flag to true. + boolean IS_RCS_TABLE_SCHEMA_CODE_COMPLETE = false; + /** * The authority for the content provider */ |