| commit | e55bd1cc18b9f52277334d56b0b9f006bc03d3bc | [log] [tgz] |
|---|---|---|
| author | Bob Badour <bbadour@google.com> | Fri May 22 10:04:32 2020 -0700 |
| committer | Bob Badour <bbadour@google.com> | Fri May 22 10:04:32 2020 -0700 |
| tree | 6e4d5d130a2f2e6047a87ed4b5780ce3d64458a7 | |
| parent | 2ebbd9c932a80710fc7eaec6ced3a13f0b72888e [diff] |
Remove MODULE_LICENSE_APACHE2 from tools/build Repositories containing third-party code need a METADATA and a license_type. Repositories containing only first-party code no longer need a MODULE_LICENSE_* file. All non-Apache2 code appears in test code--not code to build and distribute. Bug: 68860345 Bug: 69058154 Bug: 151953481 Test: no code changes Exempt-From-Owner-Approval: janitorial work Change-Id: I36c46b79d83a295e79bb13250e39377cc4ffb62b
The official Gradle plugin to build Android applications.
The plugin adds several concepts to the Gradle DSL, all in the android extension:
release and debug. You can add additional build types.If you do not define any flavors for your product, only the values from the default config are used. Flavor settings override the default config.
From this, the plugin will add the appropriate tasks to build each combination of build type and product flavor. The plugin will also define the following source directories:
src/main/java - Java source to be included in all application variants.src/main/res - Resources to be included in all application variants.src/$BuildType/java - Java source to be included in all application variants with the given build type.src/$BuildType/res - Java source to be included in all application variants with the given build type.src/$ProductFlavor/java - Resources to be included in all application variants with the given product flavor.src/$ProductFlavor/res - Resources to be included in all application variants with the given product flavor.src/test/java - Test source to be included in all test applications.src/test$ProductFlavor/java - Test source to be include for the test application for the given product flavor.You can configure these locations by configuring the associated source set provided by the android extension.
Compile time dependencies are declared in the usual way.
Have a look at the tests/basic/build.gradle build file and other projects in tests customized/build.gradle to see the DSL in action.
android.target - required.android.defaultConfig.versionCode - defaults to that specified in src/main/AndroidManifest.xmlandroid.defaultConfig.versionName - defaults to that specified in src/main/AndroidManifest.xmlandroid.productFlavors.$flavor.packageName - defaults to that specified in src/main/AndroidManifest.xmlandroid.productFlavors.$flavor.versionCode - defaults to ${android.defaultConfig.versionCode}android.productFlavors.$flavor.versionName - defaults to ${android.defaultConfig.versionName}android.buildTypes.$type.zipAlign - defaults to true for release and false for debugandroid.sourceSets.main.java.srcDirs - defaults to src/main/javaandroid.sourceSets.main.resources.srcDirs - defaults to src/main/resandroid.sourceSets.$flavor.java.srcDirs - defaults to src/$flavor/javaandroid.sourceSets.$flavor.resources.srcDirs - defaults to src/$flavor/resandroid.sourceSets.$buildType.java.srcDirs - defaults to src/$buildType/javaandroid.sourceSets.$buildType.resources.srcDirs - defaults to src/$buildType/resandroid.sourceSets.test.java.srcDirs - defaults to src/test/javaandroid.sourceSets.test$Flavor.java.srcDirs - defaults to src/test$Flavor/javadependencies.compile - compile time dependencies for all applications.The source tree contains the following:
builder directory contains the builder library.gradle directory contains the plugin implementation.tests directory contains various test applications used both as samples and tests by the plugin build system.To build the plugin, run ./gradlew uploadArchives
To build the plugin for release, removing the SNAPSHOT from the version, run ./gradlew --init-script release.gradle <tasks>
To import the plugin into the IDE, run ./gradlew idea or ./gradlew eclipse.
To build a test application:
local.properties file to point at your local install of the Android SDK. Normally, these files would not be checked into source control, but would be generated when the project is bootstrapped.../../gradlew tasks to see the tasks that are available.You can also run these tasks:
assemble - builds all combinations of build type and product flavorassemble$BuildType - build all flavors for the given build type.assemble$ProductFlavor - build all build types for the given product flavor.assemble$ProductFlavor$BuildType - build the given application variant.install$ProductFlavor$BuildType - build and install the given application variant.For each variant (product-flavor, build-type):
build/source from resource directories (main-source-set, product-flavor-source-set, build-type-source-set)build/libsbuild/resourcesbuild/libsbuild/libs.