Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,265 for applicationId (0.19 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/build.gradle.kts

    import org.jetbrains.kotlin.config.KotlinCompilerVersion
    
    // tag::android[]
    plugins {
        id("com.android.application")
    // end::android[]
        kotlin("android")
    // tag::android[]
    }
    
    android {
        // ...
    // end::android[]
        compileSdkVersion(27)
        defaultConfig {
            applicationId = "org.gradle.kotlin.dsl.samples.androidstudio"
            minSdkVersion(15)
            targetSdkVersion(27)
            versionCode = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/build.gradle.kts

    // tag::android[]
    plugins {
        id("com.android.application") version "7.3.0"
    // end::android[]
        kotlin("android") version "1.9.23"
    // tag::android[]
    }
    
    android {
        // ...
    // end::android[]
        compileSdkVersion(27)
        defaultConfig {
            applicationId = "org.gradle.kotlin.dsl.samples.androidstudio"
            minSdkVersion(15)
            targetSdkVersion(27)
            versionCode = 1
            versionName = "1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            ops.size() == 4
            ops[0].details.applicationId == id1.longValue()
            ops[1].details.applicationId == id2.longValue()
            ops[2].details.applicationId == id1.longValue()
            ops[3].details.applicationId == id2.longValue()
        }
    
        def "can add list properties to container"() {
            containerAllowsExternalProviders()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

                it instanceof Number
            }])
            notifications.started(ApplyScriptPluginBuildOperationType.Details, [targetType: "gradle", targetPath: null, file: init.absolutePath, buildPath: ":buildSrc", uri: null, applicationId: {
                it instanceof Number
            }])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        private void sanityCheckApplicationIds() {
            // verify that these are unique for each script / plugin application
            def pluginAppliedOps = operations.all(ApplyPluginBuildOperationType)
            def scriptAppliedOps = operations.all(ApplyScriptPluginBuildOperationType)
            assert ((pluginAppliedOps + scriptAppliedOps)*.details*.applicationId as Set).size() == pluginAppliedOps.size() + scriptAppliedOps.size()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("com.android.application")
        id("kotlin-android")
        id("jacoco")
    }
    
    android {
        compileSdkVersion(24)
        buildToolsVersion("$androidBuildToolsVersion")
        namespace = "org.gradle.smoketest.kotlin.android"
        defaultConfig {
            applicationId = "org.gradle.smoketest.kotlin.android"
            minSdkVersion(16)
            targetSdkVersion(24)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

            def op = record.descriptor
            assert op.displayName == "Execute $expectedRegistrationPoint listener"
            assert (op.details as ExecuteListenerBuildOperationType.Details).applicationId == id.longValue()
            assert record.failure == failure
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                }
            """
    
            def appBuildFile = file("${app}/build.gradle")
            appBuildFile << """
                apply plugin: 'com.android.application'
    
                android.defaultConfig.applicationId "org.gradle.android.myapplication"
            """
            appBuildFile << androidPluginConfiguration(appPackage)
            appBuildFile << activityDependency()
            appBuildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/sub-applications.md

    # Sub Applications - Mounts
    
    If you need to have two independent FastAPI applications, with their own independent OpenAPI and their own docs UIs, you can have a main app and "mount" one (or more) sub-application(s).
    
    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    # Bigger Applications - Multiple Files
    
    If you are building an application or a web API, it's rarely the case that you can put everything on a single file.
    
    **FastAPI** provides a convenience tool to structure your application while keeping all the flexibility.
    
    !!! info
        If you come from Flask, this would be the equivalent of Flask's Blueprints.
    
    ## An example file structure
    
    Let's say you have a file structure like this:
    
    ```
    .
    ├── app
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top