Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for androidStudioRuntime (0.06 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                }
    
                val androidStudioRuntime by configurations.creating
    
                dependencies {
                    androidStudioRuntime("android-studio:android-studio:$androidStudioVersion@$androidStudioFileName")
                }
    
                tasks.register(UNPACK_ANDROID_STUDIO_TASK_NAME, ExtractAndroidStudioTask::class) {
                    this.androidStudioRuntime.setFrom(androidStudioRuntime)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Sep 19 16:20:44 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/ExtractAndroidStudioTask.kt

    ) : DefaultTask() {
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.NONE)
        abstract val androidStudioRuntime: ConfigurableFileCollection
    
        @get:OutputDirectory
        abstract val outputDir: DirectoryProperty
    
        @TaskAction
        fun extract() {
            val androidStudioDistribution = androidStudioRuntime.singleFile
            when {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top