androidx_fragment.flags 490 B

1234567891011121314
  1. # Copyright 2020 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. # Help R8 to remove debug related coded. All of these static constants are
  5. # initialized to: Log.isLoggable(DEBUG, TAG).
  6. -assumevalues class androidx.fragment.** {
  7. static boolean DEBUG return false;
  8. }
  9. -assumenosideeffects class androidx.fragment.app.FragmentManager {
  10. static boolean isLoggingEnabled(...) return false;
  11. }