Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AndroidStudioInstallation (0.07 sec)

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

            val androidStudioInstallation = project.objects.newInstance<AndroidStudioInstallation>().apply {
                studioInstallLocation.fileProvider(unpackAndroidStudio.map { it.outputDir.asFile.get() })
            }
            return AndroidStudioSystemProperties(
                androidStudioInstallation,
                project.autoDownloadAndroidStudio,
    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/AndroidStudioSystemProperties.kt

    import org.gradle.process.CommandLineArgumentProvider
    
    
    abstract class AndroidStudioInstallation {
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val studioInstallLocation: DirectoryProperty
    }
    
    
    class AndroidStudioSystemProperties(
        @get:Internal
        val studioInstallation: AndroidStudioInstallation,
        @get:Internal
        val autoDownloadAndroidStudio: Boolean,
        @get:Internal
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top