Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa8e70b6 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

release-request-1b0d6769-ebfa-4e2d-b128-039ac0dcd5c9-for-git_oc-mr1-release-41...

release-request-1b0d6769-ebfa-4e2d-b128-039ac0dcd5c9-for-git_oc-mr1-release-4140700 snap-temp-L81200000078275553

Change-Id: I91ab240a32641364123fac1308ade525aecd5b46
parents c034e024 6e880ec7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -26,11 +26,13 @@ LOCAL_MODULE_TAGS := optional
LOCAL_STATIC_JAVA_LIBRARIES := \
    android-support-v4 \
    android-support-v7-recyclerview \
    android-support-v7-palette
    android-support-v7-palette \
    android-support-dynamic-animation

LOCAL_SRC_FILES := \
    $(call all-java-files-under, src) \
    $(call all-java-files-under, src_config) \
    $(call all-java-files-under, src_flags) \
    $(call all-proto-files-under, protos)

LOCAL_RESOURCE_DIR := \
+6 −0
Original line number Diff line number Diff line
@@ -86,6 +86,12 @@
            android:permission="android.permission.BIND_JOB_SERVICE">
        </service>

        <service
            android:name="com.android.launcher3.compat.WallpaperManagerCompatVL$ColorExtractionService"
            android:exported="false"
            android:process=":wallpaper_chooser"
            android:permission="android.permission.BIND_JOB_SERVICE" />

        <service android:name="com.android.launcher3.notification.NotificationListener"
                 android:enabled="@bool/notification_badging_enabled"
                 android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
+2 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ android {
    sourceSets {
        main {
            res.srcDirs = ['res']
            java.srcDirs = ['src', 'src_config']
            java.srcDirs = ['src', 'src_flags']
            manifest.srcFile 'AndroidManifest-common.xml'
            proto.srcDirs 'protos/'
        }
@@ -68,6 +68,7 @@ repositories {
final String SUPPORT_LIBS_VERSION = '26.0.0-SNAPSHOT'
dependencies {
    compile "com.android.support:support-v4:${SUPPORT_LIBS_VERSION}"
    compile "com.android.support:support-dynamic-animation:${SUPPORT_LIBS_VERSION}"
    compile "com.android.support:recyclerview-v7:${SUPPORT_LIBS_VERSION}"
    compile "com.android.support:palette-v7:${SUPPORT_LIBS_VERSION}"
    compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2'
+4 −0
Original line number Diff line number Diff line
@@ -82,6 +82,10 @@
  *;
}

-keep class com.android.launcher3.graphics.ShadowDrawable {
  public <init>(...);
}

# Proguard will strip methods required for talkback to properly scroll to
# next row when focus is on the last item of last row when using a RecyclerView
# Keep optimized and shrunk proguard to prevent issues like this when using
+13 −13
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 The Android Open Source Project
<!-- Copyright (C) 2017 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
@@ -14,14 +13,15 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <solid android:color="?android:attr/colorAccent" />
    <size
        android:width="64dp"
        android:height="64dp" />
    <corners
        android:topLeftRadius="64dp"
        android:topRightRadius="64dp"
        android:bottomRightRadius="64dp" />
</shape>
 No newline at end of file
<gradient
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:startX="158.5"
    android:startY="141.5"
    android:endX="196.0"
    android:endY="206.5"
    android:type="linear" >
    <item android:offset="0" android:color="#E1E1E1" />
    <item android:offset="0.3317" android:color="#E1E1E1" />
    <item android:offset="0.493" android:color="#C1E5E5E5" />
    <item android:offset="1" android:color="#00EEEEEE" />
</gradient>
 No newline at end of file
Loading