Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for buildTypes (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For example, both `configurations` and `tasks` are container objects that contain `Configuration` and `Task` objects respectively.
    Community plugins also contribute containers, like the `android.buildTypes` container contributed by the Android Plugin.
    
    The Kotlin DSL provides several ways for build authors to interact with containers.
    We look at each of those ways next, using the `tasks` container as an example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("""No matching variant of project :b was found. The consumer was configured to find attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free' but:
      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release' and the consumer needed attribute 'buildType' with value 'debug'
          - Other compatible attribute:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf()
            def flavor = Attribute.of('flavor', Flavor) // give it a name and a type
            def buildType = Attribute.of(BuildType) // infer the name from the type
    
            when:
            conf.getAttributes().attribute(flavor, new FlavorImpl(name: 'free'))
            conf.getAttributes().attribute(buildType, new BuildTypeImpl(name: 'release'))
    
            then:
            !conf.attributes.isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Selecting the build types, platforms and flavors for a component
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top