blob: 89bfd666b8b552da0d3fabe814cd40ed27443ff4 [file] [log] [blame]
Avi Drissman3f1ea442022-09-08 15:42:011# Copyright 2020 The Chromium Authors
Peter Kotwicza43e5172021-01-26 22:05:052# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# Help R8 to remove debug related coded. All of these static constants are
6# initialized to: Log.isLoggable(DEBUG, TAG).
7
8-assumevalues class androidx.fragment.** {
9 static boolean DEBUG return false;
10}
11
12-assumenosideeffects class androidx.fragment.app.FragmentManager {
13 static boolean isLoggingEnabled(...) return false;
14}