diff options
| author | 2019-02-15 10:48:00 -0800 | |
|---|---|---|
| committer | 2019-02-15 10:48:00 -0800 | |
| commit | b280d76d1f9b431b260e86d01896b98737aeb830 (patch) | |
| tree | 0a9b6f1a5bf88a8e5ee008ed96df67491c3ae30b | |
| parent | 1d32e5c1832d36414fb7513c5f2b331c7757eeb6 (diff) | |
| parent | 122d78ddac5c749c4ec7f417db81ab792892c3af (diff) | |
Merge "Move RCS table creation flag to contract class" am: 0c8bc10ab2
am: 122d78ddac
Change-Id: I4431919630371ee77deefce037ce0f7bb7f1a503
| -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 51c8f65a6c9d..50b8f79892fd 100644 --- a/telephony/java/android/provider/Telephony.java +++ b/telephony/java/android/provider/Telephony.java @@ -2059,6 +2059,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 */ |