Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for agp (0.01 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          other.secure == secure &&
          other.httpOnly == httpOnly &&
          other.persistent == persistent &&
          other.hostOnly == hostOnly &&
          other.sameSite == sameSite
    
      @IgnoreJRERequirement // As of AGP 3.4.1, D8 desugars API 24 hashCode methods.
      override fun hashCode(): Int {
        var result = 17
        result = 31 * result + name.hashCode()
        result = 31 * result + value.hashCode()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 23.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

           *
           * In guava-jre, we avoid Unsafe by using VarHandle instead. But if we have references to
           * VarHandle in guava-android, even if they're unused under Android, we cause errors under
           * AGP: https://github.com/google/guava/issues/7769.
           *
           * My impression is that an AtomicReferenceFieldUpdater in a static field is similarly fast to
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 33.2K bytes
    - Click Count (0)
  3. gradle/libs.versions.toml

    [plugins]
    android-application = { id = "com.android.application", version.ref = "agp" }
    android-junit5 = { id = "de.mannodermaus.android-junit5", version.ref = "android-junit5" }
    android-library = { id = "com.android.library", version.ref = "agp" }
    animalsniffer = { id = "ru.vyarus.animalsniffer", version.ref = "animalsniffer" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
Back to Top