blob: 45178ed52e1dae27f47bd0a9f61670bcb9ed2eaf [file] [log] [blame]
Xavier Ducrohetf51f75d2013-07-17 17:39:37 -070010.5.2
2
3- Better error reporting for cmd line tools, especially
4 if run in parallel in spawned threads
5- Fix an issue due to windows path in merged resource files.
6
Xavier Ducrohetb7f2f942013-07-12 10:51:12 -070070.5.1
8
9- Fix issue in the dependency checker.
10
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700110.5.0:
12
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070013- IDE Model is changed and is not compatible with earlier version! A new IDE
14 will required.
15- Fixed IDE model to contain the output file even if it's customized
16 through the DSL. Also fixed the DSL to get/set the output file on the
17 variant object so that it's not necessary to use variant.packageApplication
18 or variant.zipAlign
19- Fixed dependency resolution so that we resolved the combination of (default config,
20 build types, flavor(s)) together instead of separately.
21- Fixed dependency for tests of library project to properly include all the dependencies
22 of the library itself.
Xavier Ducrohet516de4b2013-06-25 20:04:17 -070023- Fixed case where two dependencies have the same leaf name.
Xavier Ducrohet157adfd2013-07-11 10:04:17 -070024- Fixed issue where proguard rules file cannot be applied on flavors.
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070025
260.4.3:
27
28- enable crunching for all png files, not just .9.png
29- fix dealing with non resource files in res/ and assets/
30- fix crash when doing incremental aidl compilation due to broken method name (ah the joy of Groovy...)
31- clean older R classes when the app package name has changed.
32
Xavier Ducrohet6ed177f2013-05-30 12:49:41 -0700330.4.2
34
35* Fixed incremental support for resource merging.
36* Fixed issue where all pngs would be processed in parallel with no limit
37 on the number of thread used, leading to failure to run aapt.
38* Fixed ignoreAsset support in aaptOptions
39* Added more logging on failure to merge manifests.
40* Added flavor names to the TestServer API.
41
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700420.4.1:
43
44* Renamed 'package' scope to 'apk'
45 - variants are 'debugApk', 'releaseApk', 'flavor1Apk', etc...
46 - Now properly supported at build to allow package-only dependencies.
47* Only Jar dependencies can be package-only. Library projects must be added to the compile scope.
48* Fixed [application|library|test]Variants API (always returned empty on 0.4)
49* Fixed issue in Proguard where it would complain about duplicate Manifests.
50
Xavier Ducrohete4bf0542013-03-14 18:37:18 -0700510.4
52
Xavier Ducrohet8505a872013-05-02 21:32:46 -070053* System requirements:
54 - Gradle 1.6+
55 - Android Build Tools 16.0.2+
56* Rename deviceCheck into connectedDevice
57* API for 3rd party Device Providers and Test Servers to run and deploy tests. API is @Beta
Xavier Ducrohetd5fd39b2013-03-21 09:27:57 -070058* Support for ProGuard 4.9
59 - enable with BuildType.runProguard
60 - add proguard config files with BuiltType.proguardFile or ProductFlavor.proguardFile
61 - default proguard files accessible through android.getDefaultProguardFile(name) with name
62 being 'proguard-android.txt' or 'proguard-android-optimize.txt'
Xavier Ducrohet8505a872013-05-02 21:32:46 -070063* Implements Gradle 1.6 custom model for IDE Tooling support
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070064* Fixes:
65 - Fix support for subfolders in assets/
66 - Fix cases where Android Libraries have local Jars dependencies
Xavier Ducrohet442aae72013-03-15 18:40:17 -070067 - Fix renaming of package through DSL to ensure resources are compiled in the new namespace
Xavier Ducrohet164a8f62013-03-26 13:57:30 -070068 - Fix DSL to add getSourceSets on the "android" extension.
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -070069 - DSL to query variants has changed to applicationVariants and libraryVariants (depending on the plugin)
70 Also both plugin have testVariants (tests are not included in the default collection).
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070071
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800720.3
73
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080074* System requirements:
75 - Gradle 1.3+ (tested on 1.3/1.4)
76 - Android Platform Tools 16.0.2+
77* New Features:
78 - Renderscript support.
79 - Support for multi resource folders. See 'multires' sample.
80 * PNG crunch is now done incrementally and in parallel.
81 - Support for multi asset folders.
82 - Support for asset folders in Library Projects.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080083 - Support for versionName suffix provided by the BuildType.
84 - Testing
Xavier Ducrohet042fd122013-02-18 16:55:29 -080085 * Default sourceset for tests now src/instrumentTest (instrumentTest<Name> for flavors)
86 * Instrumentation tests now:
87 - started from "deviceCheck" instead of "check"
88 - run on all connected devices in parallel.
89 - break the build if any test fails.
90 - generate an HTML report for each flavor/project, but also aggregated.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080091 * New plugin 'android-reporting' to aggregate android test results across projects. See 'flavorlib' sample.
92 - Improved DSL:
Xavier Ducrohet219f4f72013-02-14 10:59:17 -080093 * replaced android.target with android.compileSdkVersion to make it less confusing with targetSdkVersion
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080094 * signing information now a SigningConfig object reusable across BuildType and ProductFlavor
Xavier Ducrohet219f4f72013-02-14 10:59:17 -080095 * ability to relocate a full sourceSet. See 'migrated' sample.
Xavier Ducrohet042fd122013-02-18 16:55:29 -080096 * API to manipulate Build Variants.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080097* Fixes:
98 - Default Java compile target set to 1.6.
99 - Fix generation of R classes in case libraries share same package name as the app project.
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800100
1010.2
102
103* Fixed support for windows.
104* Added support for customized sourceset. (http://tools.android.com/tech-docs/new-build-system/using-the-new-build-system#TOC-Working-with-and-Customizing-SourceSets)
105* Added support for dependency per configuration.
106* Fixed support for dependency on local jar files.
107* New samples "migrated" and "flavorlib"
108
1090.1: initial release