From cf82e803b2dc38a286eec6b12e2eceb81479081a Mon Sep 17 00:00:00 2001 From: Narinder Rana Date: Tue, 20 Oct 2020 21:44:36 +0530 Subject: [PATCH 1/2] implement ui-sdk and set feb and select tab color --- res/values/colors.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/values/colors.xml b/res/values/colors.xml index 27db030f4..f62ffeb3f 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -38,6 +38,6 @@ #000000 - #FFEB40 + @lineageos.platform:color/color_default_blue1 #2F378A -- GitLab From 19e8710d2dd9ad152e318e0115a9114daa7511a1 Mon Sep 17 00:00:00 2001 From: Narinder Rana Date: Thu, 22 Oct 2020 19:14:55 +0530 Subject: [PATCH 2/2] Use platform API instead of SDK --- Android.bp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Android.bp b/Android.bp index 2d27ae94a..f38924279 100644 --- a/Android.bp +++ b/Android.bp @@ -1,12 +1,13 @@ android_app { name: "DeskClock", resource_dirs: ["res"], - sdk_version: "current", + overrides: ["AlarmClock"], srcs: [ "src/**/*.java", "gen/**/*.java", ], + platform_apis: true, product_specific: true, static_libs: [ "androidx.annotation_annotation", -- GitLab