Jason Monk | 13c4a47 | 2018-04-04 15:49:04 -0400 | [diff] [blame] | 1 | # Copyright 2018 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | # We need to avoid obfuscating the support library boundary interface because |
| 6 | # this API is shared with the Android Support Library. |
| 7 | # Note that we only 'keep' the package org.chromium.support_lib_boundary itself, |
| 8 | # any sub-packages of that package can still be obfuscated. |
| 9 | -keep public class org.chromium.support_lib_boundary.* { public *; } |
Anthony Chen | 549f9ce | 2018-04-18 18:03:21 -0700 | [diff] [blame] | 10 | |
| 11 | # Copyright (C) 2018 The Android Open Source Project |
| 12 | # |
| 13 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 14 | # you may not use this file except in compliance with the License. |
| 15 | # You may obtain a copy of the License at |
| 16 | # |
| 17 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 18 | # |
| 19 | # Unless required by applicable law or agreed to in writing, software |
| 20 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 21 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 22 | # See the License for the specific language governing permissions and |
| 23 | # limitations under the License. |
| 24 | |
| 25 | # Prevent WebViewClientCompat from being renamed, since chromium depends on this name. |
| 26 | -keep public class androidx.webkit.WebViewClientCompat { public *; } |
| 27 | |