Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for apps (0.17 sec)

  1. README.md

    **For more information, please visit the [official project homepage](https://gradle.org)**
    
    ## Getting Started
    
    * [Installing Gradle](https://docs.gradle.org/current/userguide/installation.html)
    * [Building Android Apps](https://developer.android.com/training/basics/firstapp/)
    * [Building Java Applications](https://docs.gradle.org/current/samples/sample_building_java_applications.html)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

      },
      "client": [
        {
          "client_info": {
            "mobilesdk_app_id": "1:012345678912:android:0123456789abcdef",
            "android_client_info": {
              "package_name": "com.google.android.apps.santatracker.debug"
            }
          },
          "oauth_client": [
            {
              "client_id": "foo.example.com",
              "client_type": 3
            }
          ],
          "api_key": [
            {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                    sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + ".cpp"
                    testSourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + "_test.cpp"
                    sourceFileTree = """        │   │   └── $sourceFile
            │   └── headers
            │       └── app.h"""
                    testSourceFileTree = "                └── $testSourceFile"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/ReflectionDemo.kt

                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    val java = id("java")
                    val app = id("application")
                    app.apply(java.apply)
                }
                """.trimIndent()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 659 bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    id("java") apply false
    
                    val app = id("application")
                    app.apply(false)
                }""".trimIndent()
            val result = schema.reflect(code)
    
            printReflection(result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
     * Also checks which tasks in the API return value come from the other projects and tracks the projects coupling using the [coupledProjectsListener]. */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. architecture/standards/0004-use-a-platform-architecture.md

    ## Decision
    
    Organize the Gradle code base into a set of coarse-grained "architecture modules".
    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

        container(T::class.java, factory)
    
    
    /**
     * Creates a dependency on the API of the current version of the Gradle Kotlin DSL.
     *
     * Includes the Kotlin and Gradle APIs.
     *
     * @return The dependency.
     */
    fun Project.gradleKotlinDsl(): Dependency =
        DefaultFileCollectionDependency(
            OpaqueComponentIdentifier(DependencyFactoryInternal.ClassPathNotation.GRADLE_KOTLIN_DSL),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val trove4j = "org.jetbrains.intellij.deps:trove4j"
        val jna = "net.java.dev.jna:jna"
        val agp = "com.android.tools.build:gradle"
        val xbeanReflect = "org.apache.xbean:xbean-reflect"
        val xmlApis = "xml-apis:xml-apis"
    
        // Compile only dependencies (dynamically downloaded if needed)
        val maven3Compat = "org.apache.maven:maven-compat"
        val maven3PluginApi = "org.apache.maven:maven-plugin-api"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

    plugins {
        java
    }
    
    interface LaunchableJar {
        /**
         * The main class for the application. Can be undefined.
         */
        val mainClassName: Property<String>
    }
    
    val app = extensions.create<LaunchableJar>("app")
    
    val manifestClasspath = configurations.dependencyScope("manifestClasspath")
    val resolveManifestClasspath = configurations.resolvable("resolveManifestClasspath") {
        isTransitive = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top