Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for apps (0.21 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)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. architecture-standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    This required the Kotlin DSL to add special integration to work with Groovy closures.
    This has also forced plugins written in languages other than Groovy to use Groovy types for some APIs.
    
    When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs.
    Plain Text
    - Registered: Wed Feb 14 11:36:15 GMT 2024
    - Last Modified: Wed Jan 31 14:32:10 GMT 2024
    - 1.8K 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"
                }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 06 17:51:21 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  4. 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"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                    buildReportTab("API Compatibility Report", "$hiddenArtifactDestination/report-architecture-test-binary-compatibility-report.html")
                    buildReportTab("Incubating APIs Report", "incubation-reports/all-incubating.html")
                }
                if (stage.performanceTests.isNotEmpty()) {
                    buildReportTab("Performance", "performance-test-results.zip!report/index.html")
                }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                // Filter out any non-public APIs
                f.exclude(PublicApi.INSTANCE.getExcludes());
            }));
            extension.getKotlinDslSource().from(sourcesPath.getIncoming().artifactView(v -> v.lenient(true)).getFiles().getAsFileTree().matching(f -> {
                f.include(PublicKotlinDslApi.INSTANCE.getIncludes());
                // Filter out any non-public APIs
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 17 20:04:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. architecture/standards/0005-introduce-core-ui-architecture-module.md

    - User prompting services.
    - Build options infrastructure.
    - The console and CLI, as a specific implementation of these services.
    
    The UI architecture module uses the core runtime architecture module. It provides APIs that are used by the other modules and platforms. 
    
    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Mar 04 23:19:15 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         * Collection of CSS files to include in generated documentation.
         */
        public abstract ConfigurableFileCollection getCssFiles();
    
        /**
         * The source code to be documented. This should be the "public" APIs.
         */
        public abstract ConfigurableFileCollection getDocumentedSource();
    
        /**
         * Source code root folders. Java, Groovy & Kotlin public API sources, including
         * generated code.
         */
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Aug 11 08:52:40 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

                writer.println(
                    """<html lang="en">
        <head>
           <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
           <title>Incubating APIs</title>
           <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  10. build-logic/build-init-samples/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate samples using internal build init APIs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("org.gradle.guides:gradle-guides-plugin")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm") {
            because("This is a transitive dependency of 'gradle-guides-plugin' not declared there")
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 442 bytes
    - Viewed (0)
Back to top