1 /*
2  * Copyright 2017-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 package kotlinx.serialization.protobuf.internal
6 
7 /**
8  * Suppresses Animal Sniffer plugin errors for certain methods.
9  * Such methods include references to Java 8 methods that are not
10  * available in Android API, but can be desugared by R8.
11  */
12 @Retention(AnnotationRetention.BINARY)
13 @Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
14 internal annotation class SuppressAnimalSniffer