From 37a9363a707b3fbb1b94ad28bf98a6ebe6a5a91e Mon Sep 17 00:00:00 2001 From: Jeff Sharkey Date: Tue, 14 Jan 2020 18:24:30 -0700 Subject: [PATCH] Split "generation" into added and modified. The reason we created the "generation" concept was as a replacement for DATE_ADDED and DATE_MODIFIED, and we realized there is a use-case for having both values, so this change splits our previous work into GENERATION_ADDED and GENERATION_MODIFIED to match the other names. Bug: 147666253, 140248585, 142698119 Test: atest --test-mapping packages/providers/MediaProvider Change-Id: I09cc3f52946e91fa3e9aaa14b9fd6309f32712c4 --- api/current.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/current.txt b/api/current.txt index 1492ede2bcf7c..30bd45ca47177 100644 --- a/api/current.txt +++ b/api/current.txt @@ -39494,7 +39494,8 @@ package android.provider { field public static final String DISPLAY_NAME = "_display_name"; field public static final String DOCUMENT_ID = "document_id"; field public static final String DURATION = "duration"; - field public static final String GENERATION = "generation"; + field public static final String GENERATION_ADDED = "generation_added"; + field public static final String GENERATION_MODIFIED = "generation_modified"; field public static final String GENRE = "genre"; field public static final String HEIGHT = "height"; field public static final String INSTANCE_ID = "instance_id";