blob: e6dc67dee37b13adc4744f2f911fc582225021fb [file] [log] [blame]
Xavier Ducrohet5c3079c2013-08-01 15:32:20 -070010.5.5
Xavier Ducrohet1fe33e52013-07-30 14:28:48 -07002
Xavier Ducrohet5c3079c2013-08-01 15:32:20 -07003- Fix issue preventing to use Build Tools 18.0.1
Xavier Ducrohet875a8892013-07-30 17:29:25 -07004- access to the variants container don't force creating the task.
5 This means android.[application|Library|Test]Variants will be empty
6 during the evaluation phase. To use it, use .all instead of .each
Xavier Ducrohet1fe33e52013-07-30 14:28:48 -07007- Only package a library's own resources in its aar.
Xavier Ducrohet5c3079c2013-08-01 15:32:20 -07008- Fix incremental issues in the resource merger.
9- Misc bug fixes.
Xavier Ducrohet1fe33e52013-07-30 14:28:48 -070010
Xavier Ducroheted6d4da2013-07-19 17:29:16 -0700110.5.4
12
13- Fixed incremental compilation issue with declare-styleable
14
Xavier Ducrohet8593c202013-07-18 14:11:01 -0700150.5.3
16
17- Fix a crashing bug in PrepareDependenciesTask
18
Xavier Ducrohetf51f75d2013-07-17 17:39:37 -0700190.5.2
20
21- Better error reporting for cmd line tools, especially
22 if run in parallel in spawned threads
23- Fix an issue due to windows path in merged resource files.
24
Xavier Ducrohetb7f2f942013-07-12 10:51:12 -0700250.5.1
26
27- Fix issue in the dependency checker.
28
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700290.5.0:
30
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070031- IDE Model is changed and is not compatible with earlier version! A new IDE
32 will required.
33- Fixed IDE model to contain the output file even if it's customized
34 through the DSL. Also fixed the DSL to get/set the output file on the
35 variant object so that it's not necessary to use variant.packageApplication
36 or variant.zipAlign
37- Fixed dependency resolution so that we resolved the combination of (default config,
38 build types, flavor(s)) together instead of separately.
39- Fixed dependency for tests of library project to properly include all the dependencies
40 of the library itself.
Xavier Ducrohet516de4b2013-06-25 20:04:17 -070041- Fixed case where two dependencies have the same leaf name.
Xavier Ducrohet157adfd2013-07-11 10:04:17 -070042- Fixed issue where proguard rules file cannot be applied on flavors.
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070043
440.4.3:
45
46- enable crunching for all png files, not just .9.png
47- fix dealing with non resource files in res/ and assets/
48- fix crash when doing incremental aidl compilation due to broken method name (ah the joy of Groovy...)
49- clean older R classes when the app package name has changed.
50
Xavier Ducrohet6ed177f2013-05-30 12:49:41 -0700510.4.2
52
53* Fixed incremental support for resource merging.
54* Fixed issue where all pngs would be processed in parallel with no limit
55 on the number of thread used, leading to failure to run aapt.
56* Fixed ignoreAsset support in aaptOptions
57* Added more logging on failure to merge manifests.
58* Added flavor names to the TestServer API.
59
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700600.4.1:
61
62* Renamed 'package' scope to 'apk'
63 - variants are 'debugApk', 'releaseApk', 'flavor1Apk', etc...
64 - Now properly supported at build to allow package-only dependencies.
65* Only Jar dependencies can be package-only. Library projects must be added to the compile scope.
66* Fixed [application|library|test]Variants API (always returned empty on 0.4)
67* Fixed issue in Proguard where it would complain about duplicate Manifests.
68
Xavier Ducrohete4bf0542013-03-14 18:37:18 -0700690.4
70
Xavier Ducrohet8505a872013-05-02 21:32:46 -070071* System requirements:
72 - Gradle 1.6+
73 - Android Build Tools 16.0.2+
74* Rename deviceCheck into connectedDevice
75* API for 3rd party Device Providers and Test Servers to run and deploy tests. API is @Beta
Xavier Ducrohetd5fd39b2013-03-21 09:27:57 -070076* Support for ProGuard 4.9
77 - enable with BuildType.runProguard
78 - add proguard config files with BuiltType.proguardFile or ProductFlavor.proguardFile
79 - default proguard files accessible through android.getDefaultProguardFile(name) with name
80 being 'proguard-android.txt' or 'proguard-android-optimize.txt'
Xavier Ducrohet8505a872013-05-02 21:32:46 -070081* Implements Gradle 1.6 custom model for IDE Tooling support
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070082* Fixes:
83 - Fix support for subfolders in assets/
84 - Fix cases where Android Libraries have local Jars dependencies
Xavier Ducrohet442aae72013-03-15 18:40:17 -070085 - Fix renaming of package through DSL to ensure resources are compiled in the new namespace
Xavier Ducrohet164a8f62013-03-26 13:57:30 -070086 - Fix DSL to add getSourceSets on the "android" extension.
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -070087 - DSL to query variants has changed to applicationVariants and libraryVariants (depending on the plugin)
88 Also both plugin have testVariants (tests are not included in the default collection).
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070089
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800900.3
91
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080092* System requirements:
93 - Gradle 1.3+ (tested on 1.3/1.4)
94 - Android Platform Tools 16.0.2+
95* New Features:
96 - Renderscript support.
97 - Support for multi resource folders. See 'multires' sample.
98 * PNG crunch is now done incrementally and in parallel.
99 - Support for multi asset folders.
100 - Support for asset folders in Library Projects.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800101 - Support for versionName suffix provided by the BuildType.
102 - Testing
Xavier Ducrohet042fd122013-02-18 16:55:29 -0800103 * Default sourceset for tests now src/instrumentTest (instrumentTest<Name> for flavors)
104 * Instrumentation tests now:
105 - started from "deviceCheck" instead of "check"
106 - run on all connected devices in parallel.
107 - break the build if any test fails.
108 - generate an HTML report for each flavor/project, but also aggregated.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800109 * New plugin 'android-reporting' to aggregate android test results across projects. See 'flavorlib' sample.
110 - Improved DSL:
Xavier Ducrohet219f4f72013-02-14 10:59:17 -0800111 * replaced android.target with android.compileSdkVersion to make it less confusing with targetSdkVersion
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800112 * signing information now a SigningConfig object reusable across BuildType and ProductFlavor
Xavier Ducrohet219f4f72013-02-14 10:59:17 -0800113 * ability to relocate a full sourceSet. See 'migrated' sample.
Xavier Ducrohet042fd122013-02-18 16:55:29 -0800114 * API to manipulate Build Variants.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800115* Fixes:
116 - Default Java compile target set to 1.6.
117 - Fix generation of R classes in case libraries share same package name as the app project.
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800118
1190.2
120
121* Fixed support for windows.
122* 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)
123* Added support for dependency per configuration.
124* Fixed support for dependency on local jar files.
125* New samples "migrated" and "flavorlib"
126
1270.1: initial release