Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sourceCompatibility (0.06 sec)

  1. docs/changelogs/upgrading_to_okhttp_4.md

      }
    }
    compileTestKotlin {
      kotlinOptions {
        jvmTarget = "1.8"
      }
    }
    
    compileJava {
      sourceCompatibility = JavaVersion.VERSION_1_8
      targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    android {
      compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
      }
    }
    ```
    
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. build.gradle.kts

        environment("OKHTTP_ROOT", rootDir)
      }
    
      tasks.withType<JavaCompile> {
        if (name.contains("Java9")) {
          sourceCompatibility = "9"
          targetCompatibility = "9"
        } else {
          sourceCompatibility = projectJavaVersion.toString()
          targetCompatibility = projectJavaVersion.toString()
        }
      }
    }
    
    subprojects {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 11.5K bytes
    - Viewed (1)
  3. okhttp/build.gradle.kts

        }
      }
      // Set the task outputs and destination dir
      outputs.dir(targetDir)
      destinationDirectory.set(targetDir)
    
      // Configure JVM compatibility
      sourceCompatibility = JavaVersion.VERSION_1_9.toString()
      targetCompatibility = JavaVersion.VERSION_1_9.toString()
    
      // Set the Java release version.
      options.release.set(9)
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top