Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for minJdkVersion (4.63 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    $ echo $JAVA_HOME
    /Users/user/Library/Java/JavaVirtualMachines/corretto-11.0.22/Contents/Home
    ----
    
    You must ensure that a link:{jdkDownloadUrl}[Java Development Kit] version {minJdkVersion} or higher is link:https://www.java.com/en/download/help/index_installing.xml[properly installed], the `JAVA_HOME` environment variable is set, and link:https://www.java.com/en/download/help/path.xml[Java is added to your `PATH`].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    [[sec:prerequisites]]
    == Prerequisites
    Gradle runs on all major operating systems. It requires link:{jdkDownloadUrl}[Java Development Kit] (JDK) version {minJdkVersion} or higher to run. You can check the <<compatibility.adoc#compatibility,compatibility matrix>> for more information.
    
    To check, run `java -version`:
    
    ----
    ❯ java -version
    openjdk version "11.0.18" 2023-01-17
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                // TODO: This is coupled to extension.getJavadocs().getJavaApi()
                attributes.put("minJdkVersion", "8");
    
                attributes.put("antManual", "https://ant.apache.org/manual");
                attributes.put("docsUrl", "https://docs.gradle.org");
    
                // TODO: This breaks if the version is changed later.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/android-application/src/main/kotlin/com.example.android-application.gradle.kts

    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
            targetCompatibility = JavaVersion.VERSION_1_8
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/android-application/src/main/groovy/com.example.android-application.gradle

    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
            targetCompatibility = JavaVersion.VERSION_1_8
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 674 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/android-application/groovy/app/build.gradle

    }
    
    repositories {
        google()
        mavenCentral()
    }
    
    android {
        compileSdkVersion 30
        defaultConfig {
            applicationId 'org.gradle.samples'
            namespace 'org.gradle.samples'
            minSdkVersion 16
            targetSdkVersion 30
            versionCode 1
            versionName '1.0'
            testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
        }
        buildTypes {
            release {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1011 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/android-application/kotlin/app/build.gradle.kts

    repositories {
        google()
        mavenCentral()
    }
    
    android {
        compileSdkVersion(30)
        defaultConfig {
            applicationId = "org.gradle.samples"
            namespace = "org.gradle.samples"
            minSdkVersion(16)
            targetSdkVersion(30)
            versionCode = 1
            versionName = "1.0"
            testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/build.gradle.kts

    // tag::android[]
    }
    
    android {
        // ...
    // end::android[]
        compileSdkVersion(27)
        defaultConfig {
            applicationId = "org.gradle.kotlin.dsl.samples.androidstudio"
            minSdkVersion(15)
            targetSdkVersion(27)
            versionCode = 1
            versionName = "1.0"
            testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/build.gradle.kts

    // tag::android[]
    }
    
    android {
        // ...
    // end::android[]
        compileSdkVersion(27)
        defaultConfig {
            applicationId = "org.gradle.kotlin.dsl.samples.androidstudio"
            minSdkVersion(15)
            targetSdkVersion(27)
            versionCode = 1
            versionName = "1.0"
            testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

    android {
        compileSdkVersion 24
        buildToolsVersion '$androidBuildToolsVersion'
        namespace "org.gradle.smoketest.kotlin.android"
        defaultConfig {
            applicationId "org.gradle.smoketest.kotlin.android"
            minSdkVersion 16
            targetSdkVersion 24
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top