- Android Gradle plugin release notes
- Update the Android Gradle plugin
- Groovy
- Kotlin
- Update Gradle
- Versioning changes (November 2020)
- 7.0.0 (July 2021)
- Compatibility
- JDK 11 required to run AGP 7.0
- Variant API stable
- Behavior changes for Lint
- Improved lint for library dependencies
- Groovy
- Kotlin
- Lint tasks can now be UP-TO-DATE
- Running lint on dynamic-feature modules
- Running lint on default variant only
- Missing class warnings in R8 shrinker
- Android Gradle plugin build cache removed
- Use Java 11 source code in your project
- Groovy
- Kotlin
- Dependency configurations removed
- Classpath change when compiling against Android Gradle plugin
- Addition of native libraries in a Java resources folder is not supported
- Known issues
- Incompatibility with 1.4.x Kotlin Multiplatform plugin
- Missing lint output
- Not all dynamic-feature library dependencies are lint checked
- 4.2.0 (March 2021)
- Compatibility
- New features
- Java language version 8 by default
- Groovy
- Kotlin
- New JVM resource compiler
- v3 and v4 signing now supported
- Groovy
- Kotlin
- Configure app signing per variant
- New Gradle property: android.native.buildOutput
- Behavior change for gradle.properties files
- Gradle compatibility and configuration changes
- Studio compatibility with Android Gradle plugin (AGP)
- Optimizing Gradle builds for JDK 11
- DEX files uncompressed in APKs when minSdk = 28 or higher
- 4.1.0 (August 2020)
- Compatibility
- New features
- Kotlin Script DSL support
- Export C/C++ dependencies from AARs
- Groovy
- Kotlin
- R8 support for Kotlin metadata
- Assertions in debug builds
- Behavior changes
- Android Gradle plugin build cache removed
- App size significantly reduced for apps using code shrinking
- android.namespacedRClass property renamed to android.nonTransitiveRClass
- Kotlin DSL: coreLibraryDesugaringEnabled renamed
- Version properties removed from BuildConfig class in library projects
- Set the NDK path
- Groovy
- Kotlin
- Library unit test behavior changes
- io.fabric Gradle plugin deprecated
- 4.0.0 (April 2020)
- New features
- Support for Android Studio Build Analyzer
- Java 8 library desugaring in D8 and R8
- Groovy
- Kotlin
- New options to enable or disable build features
- Groovy
- Kotlin
- Feature-on-feature dependencies
- Groovy
- Kotlin
- Dependencies metadata
- Groovy
- Kotlin
- Import native libraries from AAR dependencies
- Behavior changes
- v1/v2 signing configuration updates
- feature and instantapp Android Gradle plugins removed
- Separate annotation processing feature removed
- includeCompileClasspath is deprecated
- Automatic packaging of prebuilt dependencies used by CMake
- Groovy
- Kotlin
- Known issues
- Race condition in Gradle worker mechanism
- 3.6.0 (February 2020)
- New features
- View Binding
- Groovy
- Kotlin
- Support for the Maven Publish plugin
- New default packaging tool
- Native build attribution
- Behavior changes
- Native libraries packaged uncompressed by default
- Default NDK version
- Simplified R class generation
- Remove resources missing from default configuration
- D8 now respects CLASS retention policy for annotations
- Other behavior changes
- Bug fixes
- Known issues
- Slow performance of Android Lint task
- Missing Manifest class
- 3.5.0 (August 2019)
- Incremental annotation processing
- Cacheable unit tests
- Known issues
- 3.4.0 (April 2019)
- New features
- Groovy
- Kotlin
- Behavior changes
- Known issues
- 3.3.0 (January 2019)
- New features
- Behavior changes
- Bug Fixes
- 3.2.0 (September 2018)
- New features
- Groovy
- Kotlin
- Behavior changes
- Groovy
- Kotlin
- Bug fixes
- 3.1.0 (March 2018)
- New DEX compiler, D8
- Behavior changes
- Groovy
- Kotlin
- Groovy
- Kotlin
- Fixes
- 3.0.0 (October 2017)
- Optimizations
- New features
- Groovy
- Kotlin
- Groovy
- Kotlin
- Groovy
- Kotlin
- Groovy
- Kotlin
- Behavior changes
- Groovy
- Kotlin
- 2.3.0 (February 2017)
- 2.2.0 (September 2016)
- Groovy
- Kotlin
- Groovy
- Kotlin
- Groovy
- Kotlin
- 2.1.0 (April 2016)
- Groovy
- Kotlin
- Groovy
- Kotlin
- 2.0.0 (April 2016)
- Groovy
- Kotlin
- Groovy
- Kotlin
- Older releases
- Groovy
- Kotlin
- Groovy
- Kotlin
- Groovy
- Kotlin
- Groovy
- Kotlin
Android Gradle plugin release notes
The Android Studio build system is based on Gradle, and the Android Gradle plugin adds several features that are specific to building Android apps. Although the Android plugin is typically updated in lock-step with Android Studio, the plugin (and the rest of the Gradle system) can run independent of Android Studio and be updated separately.
This page explains how to keep your Gradle tools up to date and what’s in the recent updates.
For upcoming breaking changes in the Android Gradle plugin, see the Android Gradle plugin roadmap.
For details about how to configure your Android builds with Gradle, see the following pages:
For more information about the Gradle build system, see the Gradle user guide.
Update the Android Gradle plugin
When you update Android Studio, you may receive a prompt to automatically update the Android Gradle plugin to the latest available version. You can choose to accept the update or manually specify a version based on your project’s build requirements.
You can specify the plugin version in either the File > Project Structure > Project menu in Android Studio, or the top-level build.gradle file. The plugin version applies to all modules built in that Android Studio project. The following example sets the plugin to version 7.0.0 from the build.gradle file:
Groovy
Kotlin
Caution: You should not use dynamic dependencies in version numbers, such as ‘com.android.tools.build:gradle:2.+’ . Using this feature can cause unexpected version updates and difficulty resolving version differences.
If the specified plugin version has not been downloaded, Gradle downloads it the next time you build your project or click File > Sync Project with Gradle Files from the Android Studio menu bar.
Update Gradle
When you update Android Studio, you may receive a prompt to also update Gradle to the latest available version. You can choose to accept the update or manually specify a version based on your project’s build requirements.
The following table lists which version of Gradle is required for each version of the Android Gradle plugin. For the best performance, you should use the latest possible version of both Gradle and the plugin.
Plugin version | Required Gradle version |
---|---|
1.0.0 — 1.1.3 | 2.2.1 — 2.3 |
1.2.0 — 1.3.1 | 2.2.1 — 2.9 |
1.5.0 | 2.2.1 — 2.13 |
2.0.0 — 2.1.2 | 2.10 — 2.13 |
2.1.3 — 2.2.3 | 2.14.1 — 3.5 |
2.3.0+ | 3.3+ |
3.0.0+ | 4.1+ |
3.1.0+ | 4.4+ |
3.2.0 — 3.2.1 | 4.6+ |
3.3.0 — 3.3.3 | 4.10.1+ |
3.4.0 — 3.4.3 | 5.1.1+ |
3.5.0 — 3.5.4 | 5.4.1+ |
3.6.0 — 3.6.4 | 5.6.4+ |
4.0.0+ | 6.1.1+ |
4.1.0+ | 6.5+ |
4.2.0+ | 6.7.1+ |
7.0 | 7.0+ |
You can specify the Gradle version in either the File > Project Structure > Project menu in Android Studio, or by editing the Gradle distribution reference in the gradle/wrapper/gradle-wrapper.properties file. The following example sets the Gradle version to 7.0.0 in the gradle-wrapper.properties file.
Versioning changes (November 2020)
We are updating the version numbering for Android Gradle plugin (AGP) to more closely match the underlying Gradle build tool.
Here are the notable changes:
AGP will now use semantic versioning, and breaking changes will be targeted for major releases.
There will be one major version of AGP released per year, aligned with the Gradle major release.
The release after AGP 4.2 will be version 7.0 and will require an upgrade to Gradle version 7.x. Every major release of AGP will require a major version upgrade in the underlying Gradle tool.
APIs will be deprecated approximately one year in advance, with replacement functionality made available concurrently. Deprecated APIs will be removed approximately one year later during the subsequent major update.
7.0.0 (July 2021)
Android Gradle plugin 7.0.0 is a major release that includes a variety of new features and improvements.
This minor update includes various bug fixes. To see a list of notable bug fixes, read the related post on the Release Updates blog.
Compatibility
Minimum version | Default version | Notes | |
---|---|---|---|
Gradle | 7.0.2 | 7.0.2 | To learn more, see updating Gradle. |
SDK Build Tools | 30.0.2 | 30.0.2 | Install or configure SDK Build Tools. |
NDK | N/A | 21.4.7075529 | Install or configure a different version of the NDK. |
JDK | 11 | 11 | To learn more, see setting the JDK version. |
JDK 11 required to run AGP 7.0
When using Android Gradle plugin 7.0 to build your app, JDK 11 is now required to run Gradle. Android Studio Arctic Fox bundles JDK 11 and configures Gradle to use it by default, which means that most Android Studio users do not need to make any configuration changes to their projects.
If you need to manually set the JDK version used by AGP inside of Android Studio, you need to use JDK 11 or higher.
When using AGP independent of Android Studio, upgrade the JDK version by setting the JAVA_HOME environment variable or the -Dorg.gradle.java.home command-line option to your installation directory of JDK 11.
Variant API stable
The new Variant API is now stable. See the new interfaces in the com.android.build.api.variant package, and examples in the gradle-recipes GitHub project. As part of the new Variant API, we have made available a number of intermediate files, called artifacts, through the Artifacts interface. These artifacts, like the merged manifest, can be safely obtained and customized by using third-party plugins and code.
We will continue extending the Variant API by adding new functionalities and augmenting the number of intermediate artifacts we make available for customization.
Behavior changes for Lint
This section describes multiple Lint behavior changes in Android Gradle plugin 7.0.0.
Improved lint for library dependencies
Running lint with checkDependencies = true is now faster than before. For Android projects consisting of an app with library dependencies, it is recommended to set checkDependencies to true as shown below, and to run lint via ./gradlew :app:lint , which will analyze all dependency modules in parallel and produce a single report including issues from the app and all of its dependencies.
Groovy
Kotlin
Lint tasks can now be UP-TO-DATE
If a module’s sources and resources have not changed, the lint analysis task for the module does not need to run again. When this happens, the execution of the task appears as «UP-TO-DATE» in the Gradle output. With this change, when running lint on an application module with checkDependencies = true , only modules that have changed will need to run their analysis. As a result, Lint can run even faster.
The Lint report task also does not need to run if its inputs have not changed. A related known issue is that there is no lint text output printed to stdout when the lint task is UP-TO-DATE (issue #191897708).
Running lint on dynamic-feature modules
AGP no longer supports running lint from dynamic-feature modules. Running lint from the corresponding application module will run lint on its dynamic-feature modules and include all issues in the app’s lint report. A related known issue is that when running lint with checkDependencies = true from an app module, dynamic-feature library dependencies aren’t checked unless they’re also app dependencies (issue #191977888).
Running lint on default variant only
Running ./gradlew :app:lint now runs lint for only the default variant. In previous versions of AGP, it would run lint for all variants.
Missing class warnings in R8 shrinker
R8 more precisely and consistently handles missing classes and the -dontwarn option. Therefore, you should start to evaluate the missing class warnings emitted by R8.
When R8 encounters a class reference that is not defined in your app or one of its dependencies, it will emit a warning that appears in your build output. For example:
This warning means that the class definition java.lang.instrument.ClassFileTransformer could not be found when analyzing your app’s code. While this usually means there is an error, it’s possible that you may want to ignore this warning. Two common reasons to ignore the warning are:
Libraries that are targeting the JVM and the missing class are of JVM library type (as in the example above).
One of your dependencies uses a compile-time only API.
You can ignore a missing class warning by adding a -dontwarn rule to your proguard-rules.pro file. For example:
For convenience, AGP will generate a file that contains all potentially missing rules, writing them to a file path such as the following: app/build/outputs/mapping/release/missing_rules.txt . Add the rules to your proguard-rules.pro file to ignore warnings.
In AGP 7.0, missing class messages will appear as warnings, and you can turn them into errors by setting android.r8.failOnMissingClasses = true in gradle.properties . In AGP 8.0, these warnings will become errors that break your build. It is possible to keep the AGP 7.0 behavior by adding the option -ignorewarnings to your proguard-rules.pro file, but that is not recommended.
Android Gradle plugin build cache removed
The AGP build cache was removed in AGP 4.1. Previously introduced in AGP 2.3 to complement the Gradle build cache, the AGP build cache was superseded entirely by the Gradle build cache in AGP 4.1. This change does not impact build time.
In AGP 7.0, the android.enableBuildCache property, android.buildCacheDir property, and the cleanBuildCache task have been removed.
Use Java 11 source code in your project
You can now compile up to Java 11 source code in your app’s project, enabling you to use newer language features like private interface methods, the diamond operator for anonymous classes, and local variable syntax for lambda parameters.
To enable this feature, set compileOptions to the desired Java version and set compileSdkVersion to 30 or above:
Groovy
Kotlin
Dependency configurations removed
In AGP 7.0, the following configurations (or dependency scopes) have been removed:
- compile
Depending on use case, this has been replaced by api or implementation .
Also applies to *Compile variants, for example: debugCompile . - provided
This has been replaced by compileOnly .
Also applies to *Provided variants, for example: releaseProvided . - apk
This has been replaced by runtimeOnly . - publish
This has been replaced by runtimeOnly .
In most cases, the AGP Upgrade Assistant will automatically migrate your project to the new configurations.
Classpath change when compiling against Android Gradle plugin
If you are compiling against the Android Gradle plugin, your compile classpath may change. Because AGP now uses api/implementation configurations internally, some artifacts may be removed from your compile classpath. If you depend on an AGP dependency at compile-time, be sure to add it as an explicit dependency.
Addition of native libraries in a Java resources folder is not supported
Previously, you could add a native library in a Java resources folder, and register the folder using android.sourceSets.main.resources.srcDirs so that the native library would be extracted and added to the final APK. Starting with AGP 7.0, this is not supported and native libraries in a Java resources folder are ignored. Instead, use the DSL method intended for native libraries, android.sourceSets.main.jniLibs.srcDirs . For more information, see how to configure source sets.
Known issues
This section describes known issues that exist in Android Gradle plugin 7.0.0.
Incompatibility with 1.4.x Kotlin Multiplatform plugin
Android Gradle Plugin 7.0.0 is compatible with Kotlin Multiplatform plugin 1.5.0 and higher. Projects that use the Kotlin Multiplatform support need to update to Kotlin 1.5.0 to use Android Gradle Plugin 7.0.0. As a workaround, you can downgrade the Android Gradle plugin to 4.2.x, although this is not recommended.
For more information, see KT-43944.
Missing lint output
There is no lint text output printed to stdout when the lint task is up-to-date (issue #191897708). For more context, see Behavior changes for lint. This issue will be fixed in Android Gradle plugin 7.1.
Not all dynamic-feature library dependencies are lint checked
When running lint with checkDependencies = true from an app module, dynamic-feature library dependencies aren’t checked unless they’re also app dependencies (issue #191977888). As a workaround, the lint task can be run on those libraries. For more context, see Behavior changes for lint.
4.2.0 (March 2021)
Compatibility
Minimum version | Default version | Notes | |
---|---|---|---|
Gradle | 6.7.1 | N/A | To learn more, see updating Gradle. |
SDK Build Tools | 30.0.2 | 30.0.2 | Install or configure SDK Build Tools. |
NDK | N/A | 21.4.7075529 | Install or configure a different version of the NDK. |
New features
This version of the Android Gradle plugin includes the following new features.
Java language version 8 by default
Starting in version 4.2, AGP will use the Java 8 language level by default. Java 8 provides access to a number of newer language features including lambda expressions, method references, and static interface methods. For the full list of supported features see the Java 8 documentation.
To keep the old behavior, specify Java 7 explicitly in your module-level build.gradle.kts or build.gradle file:
Groovy
Kotlin
New JVM resource compiler
A new JVM resource compiler in Android Gradle plugin 4.2 tool replaces portions of the AAPT2 resource compiler, potentially improving build performance, especially on Windows machines. The new JVM resource compiler is enabled by default.
v3 and v4 signing now supported
Android Gradle Plugin 4.2 now supports APK v3 and APK v4 signing formats. To enable one or both of these formats in your build, add the following properties to your module-level build.gradle or build.gradle.kts file:
Groovy
Kotlin
APK v4 signing allows you to quickly deploy large APKs using the ADB Incremental APK installation in Android 11. This new flag takes care of the APK signing step in the deployment process.
Configure app signing per variant
It is now possible to enable or disable app signing in Android Gradle plugin per variant.
This example demonstrates how to set app signing per variant using the onVariants() method in either Kotlin or Groovy:
New Gradle property: android.native.buildOutput
To reduce clutter in build output, AGP 4.2 filters messages from native builds that use CMake and ndk-build , displaying only C/C++ compiler output by default. Previously, a line of output was generated for every file that was built, resulting in a large quantity of informational messages.
If you would like to see the entirety of the native output, set the new Gradle property android.native.buildOutput to verbose .
You can set this property in either the gradle.properties file or through the command line.
Command line
-Pandroid.native.buildOutput=verbose
The default value of this property is quiet .
Behavior change for gradle.properties files
Starting in AGP 4.2, it is no longer possible to override Gradle properties from subprojects. In other words, if you declare a property in a gradle.properties file in a subproject instead of the root project, it will be ignored.
As an example, in previous releases, AGP would read values from projectDir /gradle.properties , projectDir /app/gradle.properties , projectDir /library/gradle.properties , etc. For app modules, if the same Gradle property was present in both projectDir /gradle.properties and projectDir /app/gradle.properties , the value from projectDir /app/gradle.properties would take precedence.
In AGP 4.2, this behavior has been changed, and AGP won’t load values from gradle.properties in subprojects (e.g., projectDir /app/gradle.properties ). This change reflects the new Gradle behavior and supports configuration caching.
For more information on setting values in gradle.properties files, see the Gradle docs.
Gradle compatibility and configuration changes
When running in Android Studio, the Gradle build tool uses Studio’s bundled JDK. In previous releases, JDK 8 was bundled with Studio. In 4.2, however, JDK 11 is now bundled instead. When using the new bundled JDK to run Gradle, this may result in some incompatibility or impact JVM performance due to changes to the garbage collector. These issues are described below.
Note: Although we recommend running Gradle with JDK 11, it is possible to change the JDK used to run Gradle in the Project Structure dialog. Changing this setting will only change the JDK used to run Gradle, and will not change the JDK used to run Studio itself.
Studio compatibility with Android Gradle plugin (AGP)
Android Studio 4.2 can open projects that use AGP 3.1 and higher provided that AGP is running Gradle 4.8.1 and higher. For more information about Gradle compatibility, see Update Gradle.
Optimizing Gradle builds for JDK 11
This update to JDK 11 impacts the default configuration of the JVM garbage collector, since JDK 8 uses the parallel garbage collector while JDK 11 uses the G1 garbage collector.
To potentially improve build performance, we recommend testing your Gradle builds with the parallel garbage collector. In gradle.properties set the following:
If there are other options already set in this field, add a new option:
To measure build speed with different configurations, see Profile your build.
DEX files uncompressed in APKs when minSdk = 28 or higher
AGP now packages DEX files uncompressed in APKs by default when minSdk = 28 or higher. This causes an increase in APK size, but it results in a smaller installation size on the device, and the download size is roughly the same.
To force AGP to instead package the DEX files compressed, you can add the following to your build.gradle file:
4.1.0 (August 2020)
Compatibility
Minimum version | Default version | Notes | |
---|---|---|---|
Gradle | 6.5 | N/A | To learn more, see updating Gradle. |
SDK Build Tools | 29.0.2 | 29.0.2 | Install or configure SDK Build Tools. |
NDK | N/A | 21.1.6352462 | Install or configure a different version of the NDK. |
New features
This version of the Android Gradle plugin includes the following new features.
Kotlin Script DSL support
To help improve the editing experience for Kotlin buildscript users, the DSL and APIs of Android Gradle plugin 4.1 are now defined in a set of Kotlin interfaces separately from their implementation classes. This means that:
- Nullability and mutability are now explicitly declared on Kotlin types.
- Documentation generated from those interfaces is published in the Kotlin API Reference.
- The API surface of the Android Gradle Plugin is clearly defined, to make extending Android builds less brittle in the future.
Important: If you have already adopted KTS build scripts or use Kotlin in buildSrc , this may cause source compatibility breakages for certain errors that would have manifest as run-time errors in previous releases.
Collection types that are designed to be mutated in the DSL are now uniformly defined as:
val collection: MutableCollectionType
This means that it is no longer possible to write the following in Kotlin scripts for some collections that previously supported it:
However, mutating the collection is supported uniformly so collection += … and collection.add(. ) should now work everywhere.
If you discover any issues when upgrading a project that uses Android Gradle plugin Kotlin APIs and DSL, please report a bug.
Export C/C++ dependencies from AARs
Android Gradle plugin 4.0 added the ability to import Prefab packages in AAR dependencies. In AGP 4.1, it’s now possible to export libraries from your external native build in an AAR for an Android Library project.
To export your native libraries, add the following to the android block of your library project’s build.gradle file:
Groovy
Kotlin
In this example, the mylibrary and myotherlibrary libraries from either your ndk-build or CMake external native build will be packaged in the AAR produced by your build, and each will export the headers from the specified directory to their dependents.
R8 support for Kotlin metadata
Kotlin uses custom metadata in Java class files to identify Kotlin language constructs. R8 now has support for maintaining and rewriting Kotlin metadata to fully support shrinking of Kotlin libraries and applications using kotlin-reflect .
To keep Kotlin metadata, add the following keep rules:
This will instruct R8 to keep Kotlin metadata for all classes that are directly kept.
Assertions in debug builds
When you build the debug version of your app using Android Gradle plugin 4.1.0 and higher, the built-in compiler (D8) will rewrite your app’s code to enable assertions at compile time, so you always have assertion checks active.
Behavior changes
Android Gradle plugin build cache removed
The AGP build cache was removed in AGP 4.1. Previously introduced in AGP 2.3 to complement the Gradle build cache, the AGP build cache was superseded entirely by the Gradle build cache in AGP 4.1. This change does not impact build time.
The cleanBuildCache task and the android.enableBuildCache and android.buildCacheDir properties are deprecated and will be removed in AGP 7.0. The android.enableBuildCache property currently has no effect, while the android.buildCacheDir property and the cleanBuildCache task will be functional until AGP 7.0 for deleting any existing AGP build cache contents.
App size significantly reduced for apps using code shrinking
Starting with this release, fields from R classes are no longer kept by default, which may result in significant APK size savings for apps that enable code shrinking. This should not result in a behavior change unless you are accessing R classes by reflection, in which case it is necessary to add keep rules for those R classes.
android.namespacedRClass property renamed to android.nonTransitiveRClass
The experimental flag android.namespacedRClass has been renamed to android.nonTransitiveRClass .
Set in the gradle.properties file, this flag enables namespacing of each library’s R class so that its R class includes only the resources declared in the library itself and none from the library’s dependencies, thereby reducing the size of the R class for that library.
Kotlin DSL: coreLibraryDesugaringEnabled renamed
The Kotlin DSL compile option coreLibraryDesugaringEnabled has been changed to isCoreLibraryDesugaringEnabled .
Version properties removed from BuildConfig class in library projects
For library projects only, the BuildConfig.VERSION_NAME and BuildConfig.VERSION_CODE properties have been removed from the generated BuildConfig class because these static values did not reflect the final values of the application’s version code and name, and were therefore misleading. Additionally, these values were discarded during manifest merging.
In a future version of Android Gradle plugin, the versionName and versionCode properties will also be removed from the DSL for libraries. Currently, there is no way to automatically access the app version code/name from a library sub-project.
For application modules, there is no change, you can still assign values to versionCode and versionName in the DSL; these values will propagate to the app’s manifest and BuildConfig fields.
Set the NDK path
You can set the path to your local NDK installation using the android.ndkPath property in your module’s build.gradle file.
Groovy
Kotlin
If you use this property together with the android.ndkVersion property, then this path must contain an NDK version that matches android.ndkVersion .
Library unit test behavior changes
We’ve changed the behavior of how library unit tests are compiled and run. A library’s unit tests are now compiled and run against compile/runtime classes of the library itself, resulting in the unit test consuming the library in the same way external subprojects do. This configuration typically results in better testing.
In some cases library unit tests that use data binding may encounter missing DataBindingComponent or BR classes. Those tests need to be ported to an instrumented test in the androidTest project, since compiling and running against those classes in a unit test may produce incorrect output.
io.fabric Gradle plugin deprecated
The io.fabric Gradle plugin is deprecated and is not compatible with version 4.1 of the Android Gradle plugin. For more information on the deprecated Fabric SDK and migrating to the Firebase Crashlytics SDK, see Upgrade to the Firebase Crashlytics SDK.
4.0.0 (April 2020)
This version of the Android plugin requires the following:
Gradle 6.1.1. To learn more, read the section about updating Gradle.
This minor update supports compatibility with new default settings and features for package visibility in Android 11.
In previous versions of Android, it was possible to view a list of all apps installed on a device. Starting with Android 11 (API level 30), by default apps have access to only a filtered list of installed packages. To see a broader list of apps on the system, you now need to add a element in your app or library’s Android manifest.
Android Gradle plugin 4.1+ is already compatible with the new declaration; however, older versions are not compatible. If you add the element or if you start relying on a library or SDK that supports targeting Android 11, you may encounter manifest merging errors when building your app.
To address this issue, we’re releasing a set of patches for AGP 3.3 and higher. If you’re using an older version of AGP, upgrade to one of the following versions:
If you are using AGP version. | . upgrade to: |
---|---|
4.0.* | 4.0.1 |
3.6.* | 3.6.4 |
3.5.* | 3.5.4 |
3.4.* | 3.4.3 |
3.3.* | 3.3.3 |
For more information on this new feature, see Package visibility in Android 11.
New features
This version of the Android Gradle plugin includes the following new features.
Support for Android Studio Build Analyzer
The Build Analyzer window helps you understand and diagnose issues with your build process, such as disabled optimizations and improperly configured tasks. This feature is available when you use Android Studio 4.0 and higher with Android Gradle plugin 4.0.0 and higher. You can open the Build Analyzer window from Android Studio as follows:
- If you haven’t already done so, build your app by selecting Build > Make Project from the menu bar.
- Select View > Tool Windows > Build from the menu bar.
- In the Build window, open the Build Analyzer window in one of the following ways:
- After Android Studio finishes building your project, click the Build Analyzer tab.
- After Android Studio finishes building your project, click the link on the right side of the Build Output window.
The Build Analyzer window organizes possible build issues in a tree on the left. You can inspect and click on each issue to investigate its details in the panel on the right. When Android Studio analyzes your build, it computes the set of tasks that determined the build’s duration and provides a visualization to help you understand the impact of each of these tasks. You can also get details on warnings by expanding the Warnings node.
Java 8 library desugaring in D8 and R8
The Android Gradle plugin now includes support for using a number of Java 8 language APIs without requiring a minimum API level for your app.
Through a process called desugaring, the DEX compiler, D8, in Android Studio 3.0 and higher already provided substantial support for Java 8 language features (such as lambda expressions, default interface methods, try with resources, and more). In Android Studio 4.0, the desugaring engine has been extended to be able to desugar Java language APIs. This means that you can now include standard language APIs that were available only in recent Android releases (such as java.util.streams ) in apps that support older versions of Android.
The following set of APIs is supported in this release:
- Sequential streams ( java.util.stream )
- A subset of java.time
- java.util.function
- Recent additions to java.util.
- Optionals ( java.util.Optional , java.util.OptionalInt and java.util.OptionalDouble ) and some other new classes useful with the above APIs
- Some additions to java.util.concurrent.atomic (new methods on AtomicInteger , AtomicLong and AtomicReference )
- ConcurrentHashMap (with bug fixes for Android 5.0)
To support these language APIs, D8 compiles a separate library DEX file that contains an implementation of the missing APIs and includes it in your app. The desugaring process rewrites your app’s code to instead use this library at runtime.
To enable support for these language APIs, include the following in your app module‘s build.gradle file:
Groovy
Kotlin
Note that you may also need to include the above code snippet in a library module‘s build.gradle file if:
The library module’s instrumented tests use these language APIs (either directly or through the library module or its dependencies). This is so that the missing APIs are provided for your instrumented test APK.
You want to run lint on the library module in isolation. This is to help lint recognize valid usages of the language APIs and avoid reporting false warnings.
New options to enable or disable build features
Android Gradle plugin 4.0.0 introduces a new way to control which build features you want to enable and disable, such as View Binding and Data Binding. When new features are added, they will be disabled, by default. You can then use the buildFeatures block to enable only the features you want, and it helps you optimize the build performance for your project. You can set the options for each module in the module-level build.gradle file, as follows:
Groovy
Kotlin
You can also specify the default setting for these features across all modules in a project by including one or more of the following in your project’s gradle.properties file, as shown below. Keep in mind, you can still use the buildFeatures block in the module-level build.gradle file to override these project-wide default settings.
Feature-on-feature dependencies
In previous versions of the Android Gradle plugin, all feature modules could depend only on the app’s base module. When using Android Gradle plugin 4.0.0, you can now include a feature module that depends on another feature module. That is, a :video feature can depend on the :camera feature, which depends on the base module, as shown in the figure below.
Feature module :video depends on feature :camera , which depends on the base :app module.
This means that when your app requests to download a feature module, the app also downloads other feature modules it depends on. After you create feature modules for your app, you can declare a feature-on-feature dependency in the module’s build.gradle file. For example, the :video module declares a dependency on :camera as follows:
Groovy
Kotlin
Additionally, you should enable the feature-on-feature dependency feature in Android Studio (to support the feature when editing the Run configuration, for example) by clicking Help > Edit Custom VM Options from the menu bar and including the following:
Dependencies metadata
When building your app using Android Gradle plugin 4.0.0 and higher, the plugin includes metadata that describes the dependencies that are compiled into your app. When uploading your app, the Play Console inspects this metadata to provide you with the following benefits:
- Get alerts for known issues with SDKs and dependencies your app uses
- Receive actionable feedback to resolve those issues
The data is compressed, encrypted by a Google Play signing key, and stored in the signing block of your release app. However, you can inspect the metadata yourself in the local intermediate build files in the following directory:
If you’d rather not share this information, you can opt-out by including the following in your module’s build.gradle file:
Groovy
Kotlin
Import native libraries from AAR dependencies
You can now import C/C++ libraries from your app’s AAR dependencies. When you follow the configuration steps described below, Gradle automatically makes these native libraries available to use with your external native build system, such as CMake. Note that Gradle only makes these libraries available to your build; you must still configure your build scripts to use them.
Libraries are exported using the Prefab package format.
Each dependency can expose at most one Prefab package, which comprises one or more modules. A Prefab module is a single library, which could be either a shared, static, or header-only library.
Typically, the package name matches the Maven artifact name and the module name matches the library name, but this is not always true. Because you need to know the package and module name of the libraries, you might need to consult the dependency’s documentation to determine what those names are.
Configure your external native build system
To see the steps you need to follow, click on the external native build system you plan to use.
Native dependencies included in an AAR are exposed to your CMake project via the CMAKE_FIND_ROOT_PATH variable. This value will be set automatically by Gradle when CMake is invoked, so if your build system modifies this variable, be sure to append rather than assign to it.
Each dependency exposes a config-file package to your CMake build, which you import with the find_package command. This command searches for config-file packages that match the given package name and version and exposes the targets it defines to be used in your build. For example, if your application defines libapp.so and it uses curl, you should include the following in your CMakeLists.txt file:
You can now specify #include «curl/curl.h» in app.cpp . When you build your project, your external native build system automatically links libapp.so against libcurl.so and packages libcurl.so in the APK or app bundle. For additional information, refer to the curl prefab sample.
Behavior changes
When using this version of the plugin, you might encounter the following changes in behavior.
v1/v2 signing configuration updates
The behavior for app signing configurations in the signingConfig block has changed to the following:
v1 signing
- If v1SigningEnabled is explicitly enabled, AGP performs v1 app signing.
- If v1SigningEnabled is explicitly disabled by the user, v1 app signing is not performed.
- If the user has not explicitly enabled v1 signing, it can be automatically disabled based on minSdk and targetSdk .
v2 signing
- If v2SigningEnabled is explicitly enabled, AGP performs v2 app signing.
- If v2SigningEnabled is explicitly disabled by the user, v2 app signing is not performed.
- If the user has not explicitly enabled v2 signing, it can be automatically disabled based on targetSdk .
These changes allow AGP to optimize builds by disabling the signing mechanism based on whether the user has explicitly enabled these flags. Prior to this release, it was possible for v1Signing to be disabled even when explicitly enabled, which could be confusing.
feature and instantapp Android Gradle plugins removed
Android Gradle plugin 3.6.0 deprecated the Feature plugin ( com.android.feature ) and the Instant App plugin ( com.android.instantapp ) in favor of using the Dynamic Feature plugin ( com.android.dynamic-feature ) to build and package your instant apps using Android App Bundles.
In Android Gradle plugin 4.0.0 and higher, these deprecated plugins are fully removed. So, to use the latest Android Gradle plugin, you need to migrate your instant app to support Android App Bundles. By migrating your instant apps, you can leverage the benefits of app bundles and simplify your app’s modular design.
Separate annotation processing feature removed
The ability to separate annotation processing into a dedicated task has been removed. This option was used to maintain incremental Java compilation when non-incremental annotation processors are used in Java-only projects; it was enabled by setting android.enableSeparateAnnotationProcessing to true in the gradle.properties file, which no longer works.
Instead, you should migrate to using incremental annotation processors to improve build performance.
includeCompileClasspath is deprecated
The Android Gradle plugin no longer checks for or includes annotation processors you declare on the compile classpath, and the annotationProcessorOptions.includeCompileClasspath DSL property no longer has any effect. If you include annotation processors on the compile classpath, you might get the following error:
To resolve this issue, you must include annotation processors in your build.gradle files using the annotationProcessor dependency configuration. To learn more, read Add annotation processors.
Automatic packaging of prebuilt dependencies used by CMake
Prior versions of the Android Gradle Plugin required that you explicitly package any prebuilt libraries used by your CMake external native build by using jniLibs . You may have libraries in the src/main/jniLibs directory of your module, or possibly in some other directory configured in your build.gradle file:
Groovy
Kotlin
With Android Gradle Plugin 4.0, the above configuration is no longer necessary and will result in a build failure:
External native build now automatically packages those libraries, so explicitly packaging the library with jniLibs results in a duplicate. To avoid the build error, move the prebuilt library to a location outside jniLibs or remove the jniLibs configuration from your build.gradle file.
Known issues
This section describes known issues that exist in Android Gradle plugin 4.0.0.
Race condition in Gradle worker mechanism
Changes in Android Gradle plugin 4.0 can trigger a race condition in Gradle when running with —no-daemon and versions of Gradle 6.3 or lower, causing builds to hang after the build is finished.
This issue will be fixed in Gradle 6.4.
3.6.0 (February 2020)
This version of the Android plugin requires the following:
Gradle 5.6.4. To learn more, read the section about updating Gradle.
This minor update supports compatibility with new default settings and features for package visibility in Android 11.
New features
This version of the Android Gradle plugin includes the following new features.
View Binding
View binding provides compile-time safety when referencing views in your code. You can now replace findViewById() with the auto-generated binding class reference. To start using View binding, include the following in each module’s build.gradle file:
Groovy
Kotlin
Support for the Maven Publish plugin
The Android Gradle plugin includes support for the Maven Publish Gradle plugin, which allows you to publish build artifacts to an Apache Maven repository. The Android Gradle plugin creates a component for each build variant artifact in your app or library module that you can use to customize a publication to a Maven repository.
To learn more, go to the page about how to use the Maven Publish plugin.
New default packaging tool
When building the debug version of your app, the plugin uses a new packaging tool, called zipflinger, to build your APK. This new tool should provide build speed improvements. If the new packaging tool doesn’t work as you expect, please report a bug. You can revert to using the old packaging tool by including the following in your gradle.properties file:
Native build attribution
You can now determine the length of time it takes Clang to build and link each C/C++ file in your project. Gradle can output a Chrome trace that contains timestamps for these compiler events so you can better understand the time required to build your project. To output this build attribution file, do the following:
Add the flag -Pandroid.enableProfileJson=true when running a Gradle build. For example:
gradlew assembleDebug -Pandroid.enableProfileJson=true
Open the Chrome browser and type chrome://tracing in the search bar.
Click the Load button and navigate to project-root /build/android-profile to find the file. The file is named profile- timestamp .json.gz .
You can see the native build attribution data near the top of the viewer:
Behavior changes
When using this version of the plugin, you might encounter the following changes in behavior.
Native libraries packaged uncompressed by default
When you build your app, the plugin now sets extractNativeLibs to «false» by default. That is, your native libraries are page aligned and packaged uncompressed. While this results in a larger upload size, your users benefit from the following:
- Smaller app install size because the platform can access the native libraries directly from the installed APK, without creating a copy of the libraries.
- Smaller download size because Play Store compression is typically better when you include uncompressed native libraries in your APK or Android App Bundle.
If you want the Android Gradle plugin to instead package compressed native libraries, include the following in your app’s manifest:
Default NDK version
If you download multiple versions of the NDK, the Android Gradle plugin now selects a default version to use in compiling your source code files. Previously, the plugin selected the latest downloaded version of the NDK. Use the android.ndkVersion property in the module’s build.gradle file to override the plugin-selected default.
Simplified R class generation
The Android Gradle plugin simplifies the compile classpath by generating only one R class for each library module in your project and sharing those R classes with other module dependencies. This optimization should result in faster builds, but it requires that you keep the following in mind:
- Because the compiler shares R classes with upstream module dependencies, it’s important that each module in your project uses a unique package name.
- The visibility of a library’s R class to other project dependencies is determined by the configuration used to include the library as a dependency. For example, if Library A includes Library B as an ‘api’ dependency, Library A and other libraries that depend on Library A have access to Library B’s R class. However, other libraries might not have access to Library B’s R class If Library A uses the implementation dependency configuration. To learn more, read about dependency configurations.
Remove resources missing from default configuration
For Library modules, if you include a resource for a language that you do not include in the default set of resources—for example, if you include hello_world as a string resource in /values-es/strings.xml but you don’t define that resource in /values/strings.xml —the Android Gradle plugin no longer includes that resource when compiling your project. This behavior change should result in fewer Resource Not Found runtime exceptions and improved build speed.
D8 now respects CLASS retention policy for annotations
When compiling your app, D8 now respects when annotations apply a CLASS retention policy, and those annotations are no longer available at runtime. This behavior also exists when setting the app’s target SDK to API level 23, which previously allowed access to these annotations during runtime when compiling your app using older versions of the Android Gradle plugin and D8.
Other behavior changes
- aaptOptions.noCompress is no longer case sensitive on all platforms (for both APK and bundles) and respects paths that use uppercase characters.
- Data binding is now incremental by default. To learn more, see issue #110061530.
- All unit tests, including Roboelectric unit tests, are now fully cacheable. To learn more, see issue #115873047.
Bug fixes
This version of the Android Gradle plugin includes the following bug fixes:
- Robolectric unit tests are now supported in library modules that use data binding. To learn more, see issue #126775542.
- You can now run connectedAndroidTest tasks across multiple modules while Gradle’s parallel execution mode is enabled.
Known issues
This section describes known issues that exist in Android Gradle plugin 3.6.0.
Slow performance of Android Lint task
Android Lint can take much longer to complete on some projects due to a regression in its parsing infrastructure, resulting in slower computation of inferred types for lambdas in certain code constructs.
The issue is reported as a bug in IDEA and will be fixed in Android Gradle Plugin 4.0.
Missing Manifest class
If your app defines custom permissions in its manifest, the Android Gradle plugin typically generates a Manifest.java class that includes your custom permissions as string constants. The plugin packages this class with your app, so you can more easily reference those permissions at runtime.
Generating the manifest class is broken in Android Gradle plugin 3.6.0. If you build your app with this version of the plugin, and it references the manifest class, you might see a ClassNotFoundException exception. To resolve this issue, do one of the following:
- Reference your custom permissions by their fully-qualified name. For example, «com.example.myapp.permission.DEADLY_ACTIVITY» .
Define your own constants, as shown below:
3.5.0 (August 2019)
Android Gradle plugin 3.5.0, along with Android Studio 3.5, is a major release and a result of Project Marble, which is a focus on improving three main areas of the Android developer tools: system health, feature polish, and fixing bugs. Notably, improving project build speed was a main focus for this update.
For information about these and other Project Marble updates, read the Android Developers blog post or the sections below.
This version of the Android plugin requires the following:
Gradle 5.4.1. To learn more, read the section about updating Gradle.
This minor update supports compatibility with new default settings and features for package visibility in Android 11.
3.5.3 (December 2019)
This minor update supports Android Studio 3.5.3 and includes various bug fixes and performance improvements.
3.5.2 (November 2019)
This minor update supports Android Studio 3.5.2 and includes various bug fixes and performance improvements. To see a list of noteable bug fixes, read the related post on the Release Updates blog.
3.5.1 (October 2019)
This minor update supports Android Studio 3.5.1 and includes various bug fixes and performance improvements. To see a list of noteable bug fixes, read the related post on the Release Updates blog.
Incremental annotation processing
The Data Binding annotation processor supports incremental annotation processing if you set android.databinding.incremental=true in your gradle.properties file. This optimization results in improved incremental build performance. For a full list of optimized annotation processors, refer to the table of incremental annotation processors.
Additionally, KAPT 1.3.30 and higher also support incremental annotation processors, which you can enable by including kapt.incremental.apt=true in your gradle.properties file.
Cacheable unit tests
When you enable unit tests to use Android resources, assets, and manifests by setting includeAndroidResources to true , the Android Gradle plugin generates a test config file containing absolute paths, which breaks cache relocatability. You can instruct the plugin to instead generate the test config using relative paths, which allows the AndroidUnitTest task to be fully cacheable, by including the following in your gradle.properties file:
Known issues
When using Kotlin Gradle plugin 1.3.31 or earlier, you might see the following warning when building or syncing your project:
To resolve this issue, upgrade the plugin to version 1.3.40 or higher.
3.4.0 (April 2019)
This version of the Android plugin requires the following:
Gradle 5.1.1 or higher. To learn more, read the section about updating Gradle.
Note: When using Gradle 5.0 and higher, the default Gradle daemon memory heap size decreases from 1 GB to 512 MB. This might result in a build performance regression. To override this default setting, specify the Gradle daemon heap size in your project’s gradle.properties file.
This minor update supports compatibility with new default settings and features for package visibility in Android 11.
This minor update supports Android Studio 3.4.2 and includes various bug fixes and performance improvements. To see a list of noteable bug fixes, read the related post on the Release Updates blog.
This minor update supports Android Studio 3.4.1 and includes various bug fixes and performance improvements. To see a list of noteable bug fixes, read the related post on the Release Updates blog.
New features
New lint check dependency configurations: The behavior of lintChecks has changed and a new dependency configuration, lintPublish , has been introduced to give you more control over which lint checks are packaged in your Android libraries.
- lintChecks : This is an existing configuration that you should use for lint checks you want to only run when building your project locally. If you were previously using the lintChecks dependency configuration to include lint checks in the published AAR, you need to migrate those dependencies to instead use the new lintPublish configuration described below.
- lintPublish : Use this new configuration in library projects for lint checks you want to include in the published AAR, as shown below. This means that projects that consume your library also apply those lint checks.
The following code sample uses both dependency configurations in a local Android library project.
Groovy
Kotlin
In general, packaging and signing tasks should see an overall build speed improvement. If you notice a performance regression related to these tasks, please report a bug.
Behavior changes
Android Instant Apps Feature plugin deprecation warning: If you’re still using the com.android.feature plugin to build your instant app, Android Gradle plugin 3.4.0 will give throw you a deprecation warning. To make sure you can still build you instant app on future versions of the plugin, migrate your instant app to using the dynamic feature plugin, which also allows you to publish both your installed and instant app experiences from a single Android App Bundle.
R8 enabled by default: R8 integrates desugaring, shrinking, obfuscating, optimizing, and dexing all in one step—resulting in noticeable build performance improvements. R8 was introduced in Android Gradle plugin 3.3.0 and is now enabled by default for both app and Android library projects using plugin 3.4.0 and higher.
The image below provides a high-level overview of the compile process before R8 was introduced.
Now, with R8, desugaring, shrinking, obfuscating, optimizing, and dexing (D8) are all completed in one step, as illustrated below.
Keep in mind, R8 is designed to work with your existing ProGuard rules, so you’ll likely not need to take any actions to benefit from R8. However, because it’s a different technology to ProGuard that’s designed specifically for Android projects, shrinking and optimization may result in removing code that ProGuard may have not. So, in this unlikely situation, you might need to add additional rules to keep that code in your build output.
If you experience issues using R8, read the R8 compatibility FAQ to check if there’s a solution to your issue. If a solution isn’t documented, please report a bug. You can disable R8 by adding one of the following lines to your project’s gradle.properties file:
ndkCompile is deprecated: You now get a build error if you try to use ndkBuild to compile your native libraries. You should instead use either CMake or ndk-build to Add C and C++ code to your project.
Known issues
The correct usage of unique package names are currently not enforced but will become more strict on later versions of the plugin. On Android Gradle plugin version 3.4.0, you can opt-in to check whether your project declares acceptable package names by adding the line below to your gradle.properties file.
To learn more about setting a package name through the Android Gradle plugin, see Set the application ID.
3.3.0 (January 2019)
This version of the Android plugin requires the following:
Gradle 4.10.1 or higher. To learn more, read the section about updating Gradle.
Note: When using Gradle 5.0 and higher, the default Gradle daemon memory heap size decreases from 1 GB to 512 MB. This might result in a build performance regression. To override this default setting, specify the Gradle daemon heap size in your project’s gradle.properties file.
This minor update supports compatibility with new default settings and features for package visibility in Android 11.
This minor update supports Android Studio 3.3.2 and includes various bug fixes and performance improvements. To see a list of noteable bug fixes, read the related post on the Release Updates blog.
3.3.1 (February 2019)
This minor update supports Android Studio 3.3.1 and includes various bug fixes and performance improvements.
New features
Improved classpath synchronization: When resolving dependencies on your runtime and compile time classpaths, the Android Gradle plugin attempts to fix certain downstream version conflicts for dependencies that appear across multiple classpaths.
For example, if the runtime classpath includes Library A version 2.0 and the compile classpath includes Library A version 1.0, the plugin automatically updates the dependency on the compile classpath to Library A version 2.0 to avoid errors.
However, if the runtime classpath includes Library A version 1.0 and the compile includes Library A version 2.0, the plugin does not downgrade the dependency on the compile classpath to Library A version 1.0, and you will get an error. To learn more, see Fix conflicts between classpaths.
Improved incremental Java compilation when using annotation processors: This update decreases build time by improving support for incremental Java compilation when using annotation processors.
Note: This feature is compatible with Gradle 4.10.1 and higher, except Gradle 5.1 due to Gradle issue 8194.
- For projects using Kapt (most Kotlin-only projects and Kotlin-Java hybrid projects): Incremental Java compilation is enabled, even when you use data binding or the retro-lambda plugin. Annotation processing by the Kapt task is not yet incremental.
For projects not using Kapt (Java-only projects): If the annotation processors you use all support incremental annotation processing, incremental Java compilation is enabled by default. To monitor incremental annotation processor adoption, watch Gradle issue 5277.
If, however, one or more annotation processors do not support incremental builds, incremental Java compilation is not enabled. Instead, you can include the following flag in your gradle.properties file:
When you include this flag, the Android Gradle plugin executes the annotation processors in a separate task and allows the Java compilation task to run incrementally.
Better debug info when using obsolete API: When the plugin detects that you’re using an API that’s no longer supported, it can now provide more-detailed information to help you determine where that API is being used. To see the additional info, you need to include the following in your project’s gradle.properties file:
You can also enable the flag by passing -Pandroid.debug.obsoleteApi=true from the command line.
You can run instrumentation tests on feature modules from the command line.
Behavior changes
Lazy task configuration: The plugin now uses Gradle’s new task creation API to avoid initializing and configuring tasks that are not required to complete the current build (or tasks not on the execution task graph). For example, if you have multiple build variants, such as “release” and “debug” build variants, and you’re building the “debug” version of your app, the plugin avoids initializing and configuring tasks for the “release” version of your app.
Calling certain older methods in the Variants API, such as variant.getJavaCompile() , might still force task configuration. To make sure that your build is optimized for lazy task configuration, invoke new methods that instead return a TaskProvider object, such as variant.getJavaCompileProvider() .
If you execute custom build tasks, learn how to adapt to Gradle’s new task-creation API.
For a given build type, when setting useProguard false , the plugin now uses R8 instead of ProGuard to shrink and obfuscate your app’s code and resources. To learn more about R8, read this blog post from the Android Developer’s Blog.
Faster R class generation for library projects: Previously, the Android Gradle plugin would generate an R.java file for each of your project’s dependencies and then compile those R classes alongside your app’s other classes. The plugin now generates a JAR containing your app’s compiled R class directly, without first building intermediate R.java classes. This optimization may significantly improve build performance for projects that include many library subprojects and dependencies, and improve the indexing speed in Android Studio.
When building an Android App Bundle, APKs generated from that app bundle that target Android 6.0 (API level 23) or higher now include uncompressed versions of your native libraries by default. This optimization avoids the need for the device to make a copy of the library and thus reduces the on-disk size of your app. If you’d rather disable this optimization, add the following to your gradle.properties file:
The plugin enforces minimum versions of some third-party plugins.
Single-variant project sync: Syncing your project with your build configuration is an important step in letting Android Studio understand how your project is structured. However, this process can be time-consuming for large projects. If your project uses multiple build variants, you can now optimize project syncs by limiting them to only the variant you have currently selected.
You need to use Android Studio 3.3 or higher with Android Gradle Plugin 3.3.0 or higher to enable this optimization. When you meet these requirements, the IDE prompts you to enable this optimization when you sync your project. The optimization is also enabled by default on new projects.
To enable this optimization manually, click File > Settings > Experimental > Gradle (Android Studio > Preferences > Experimental > Gradle on a Mac) and select the Only sync the active variant checkbox.
Note: This optimization fully supports projects that include Java and C++ languages, and has some support for Kotlin. When enabling the optimization for projects with Kotlin content, Gradle sync falls back to using full variants internally.
Automatic downloading of missing SDK packages: This functionality has been expanded to support NDK. To learn more, read Auto-download missing packages with Gradle.
Bug Fixes
Android Gradle plugin 3.3.0 fixes the following issues:
- The build process calling android.support.v8.renderscript.RenderScript instead of the AndroidX version, despite Jetifier being enabled
- Clashes due to androidx-rs.jar including statically bundled annotation.AnyRes
- When using RenderScript, you no longer have to manually set the Build Tools version in your build.gradle files
3.2.0 (September 2018)
This version of the Android plugin requires the following:
3.2.1 (October 2018)
With this update, you no longer need to specify a version for the SDK Build Tools. The Android Gradle plugin now uses version 28.0.3 by default.
New features
Support for building Android App Bundles: The app bundle is a new upload format that includes all your app’s compiled code and resources while deferring APK generation and signing to the Google Play Store. You no longer have to build, sign, and manage multiple APKs, and users get smaller downloads that are optimized for their device. To learn more, read About Android App Bundles.
Support for improved incremental build speeds when using annotation processors: The AnnotationProcessorOptions DSL now extends CommandLineArgumentProvider , which enables either you or the annotation processor author to annotate arguments for the processor using incremental build property type annotations. Using these annotations improves the correctness and performance of incremental and cached clean builds. To learn more, read Pass arguments to annotation processors.
Migration tool for AndroidX: When using Android Gradle plugin 3.2.0 with Android 3.2 and higher, you can migrate your project’s local and Maven dependencies to use the new AndroidX libraries by selecting Refactor > Migrate to AndroidX from the menu bar. Using this migration tool also sets the following flags to true in your gradle.properties file:
- android.useAndroidX : When set to true , the Android plugin uses the appropriate AndroidX library instead of a Support Library. When this flag is not specified, the plugin sets it to false by default.
- android.enableJetifier : When set to true , the Android plugin automatically migrates existing third-party libraries to use AndroidX by rewriting their binaries. When this flag is not specified, the plugin sets it to false by default. You can set this flag to true only while android.useAndroidX is also set to true , otherwise you get a build error.
To learn more, read the AndroidX overview.
New code shrinker, R8: R8 is a new tool for code shrinking and obfuscation that replaces ProGuard. You can start using the preview version of R8 by including the following in your project’s gradle.properties file:
Groovy
Kotlin
Behavior changes
- Desugaring with D8 is now enabled by default.
AAPT2 is now on Google’s Maven repo. To use AAPT2, make sure that you have the google() dependency in your build.gradle file, as shown below:
Groovy
Kotlin
Native multidex is now enabled by default. Previous versions of Android Studio enabled native multidex when deploying the debug version of an app to a device running Android API level 21 or higher. Now, whether you’re deploying to a device or building an APK for release, the Android Gradle plugin enables native multidex for all modules that set minSdkVersion=21 or higher.
The plugin now enforces a minimum version of the protobuf plugin (0.8.6), Kotlin plugin (1.2.50), and Crashlytics plugin (1.25.4).
The feature module plugin, com.android.feature , now enforces the use of only letters, digits, and underscores when specifying a module name. For example, if your feature module name includes dashes, you get a build error. This behavior matches that of the dynamic feature plugin.
Bug fixes
- JavaCompile is now cacheable in projects with data binding. (Issue #69243050)
- Better compile avoidance for library modules with data binding. (Issue #77539932)
- You can now re-enable configure-on-demand if you’ve disable it in earlier versions due to some unpredictable build errors. (Issue #77910727)
3.1.0 (March 2018)
This version of the Android plugin requires the following:
- Gradle 4.4 or higher. To learn more, read the section about updating Gradle.
- Build Tools 27.0.3 or higher. Keep in mind, you no longer need to specify a version for the build tools using the android.buildToolsVersion property—the plugin uses the minimum required version by default.
New DEX compiler, D8
By default, Android Studio now uses a new DEX compiler called D8. DEX compilation is the process of transforming .class bytecode into .dex bytecode for the Android Runtime (or Dalvik, for older versions of Android). Compared to the previous compiler, called DX, D8 compiles faster and outputs smaller DEX files, all while having the same or better app runtime performance.
D8 shouldn’t change your day-to-day app development workflow. However, if you experience any issues related to the new compiler, please report a bug. You can temporarily disable D8 and use DX by including the following in your project’s gradle.properties file:
For projects that use Java 8 language features, incremental desugaring is enabled by default. You can disable it by specifying the following in your project’s gradle.properties file:
Preview users: If you’re already using a preview version of D8, note that it now compiles against libraries included in the SDK build tools—not the JDK. So, if you are accessing APIs that exist in the JDK but not in the SDK build tools libraries, you get a compile error.
Behavior changes
When building multiple APKs that each target a different ABI, the plugin no longer generates APKs for the following ABIs by default: mips , mips64 , and armeabi .
If you want to build APKs that target these ABIs, you must use NDK r16b or lower and specify the ABIs in your build.gradle file, as shown below:
Groovy
Kotlin
- The Android plugin’s build cache now evicts cache entries that are older than 30 days.
- Passing «auto» to resConfig no longer automatically picks string resources to package into your APK. If you continue to use «auto» , the plugin packages all string resources your app and its dependencies provide. So, you should instead specify each locale that you want the plugin to package into your APK.
Because local modules can’t depend on your app’s test APK, adding dependencies to your instrumented tests using the androidTestApi configuration, instead of androidTestImplementation , causes Gradle to issue the following warning:
Groovy
Kotlin
Fixes
- Fixes an issue where Android Studio doesn’t properly recognize dependencies in composite builds.
- Fixes an issue where you get a project sync error when loading the Android plugin multiple times in a single build–for example, when multiple subprojects each include the Android plugin in their buildscript classpath.
3.0.0 (October 2017)
Android Gradle plugin 3.0.0 includes a variety of changes that aim to address performance issues of large projects.
130 modules and a large number of external dependencies (but no code or resources), you can experience performance improvements similar to the following:
Android plugin version + Gradle version | Android plugin 2.2.0 + Gradle 2.14.1 | Android plugin 2.3.0 + Gradle 3.3 | Android plugin 3.0.0 + Gradle 4.1 |
---|---|---|---|
Configuration (e.g. running ./gradlew —help ) | |||
1-line Java change (implementation change) |