blob: d7b3d7e52b75e1fb517e937be1d08964f756aafe [file] [log] [blame]
Xavier Ducrohetb7f2f942013-07-12 10:51:12 -070010.5.1
2
3- Fix issue in the dependency checker.
4
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -070050.5.0:
6
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -07007- IDE Model is changed and is not compatible with earlier version! A new IDE
8 will required.
9- Fixed IDE model to contain the output file even if it's customized
10 through the DSL. Also fixed the DSL to get/set the output file on the
11 variant object so that it's not necessary to use variant.packageApplication
12 or variant.zipAlign
13- Fixed dependency resolution so that we resolved the combination of (default config,
14 build types, flavor(s)) together instead of separately.
15- Fixed dependency for tests of library project to properly include all the dependencies
16 of the library itself.
Xavier Ducrohet516de4b2013-06-25 20:04:17 -070017- Fixed case where two dependencies have the same leaf name.
Xavier Ducrohet157adfd2013-07-11 10:04:17 -070018- Fixed issue where proguard rules file cannot be applied on flavors.
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070019
200.4.3:
21
22- enable crunching for all png files, not just .9.png
23- fix dealing with non resource files in res/ and assets/
24- fix crash when doing incremental aidl compilation due to broken method name (ah the joy of Groovy...)
25- clean older R classes when the app package name has changed.
26
Xavier Ducrohet6ed177f2013-05-30 12:49:41 -0700270.4.2
28
29* Fixed incremental support for resource merging.
30* Fixed issue where all pngs would be processed in parallel with no limit
31 on the number of thread used, leading to failure to run aapt.
32* Fixed ignoreAsset support in aaptOptions
33* Added more logging on failure to merge manifests.
34* Added flavor names to the TestServer API.
35
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700360.4.1:
37
38* Renamed 'package' scope to 'apk'
39 - variants are 'debugApk', 'releaseApk', 'flavor1Apk', etc...
40 - Now properly supported at build to allow package-only dependencies.
41* Only Jar dependencies can be package-only. Library projects must be added to the compile scope.
42* Fixed [application|library|test]Variants API (always returned empty on 0.4)
43* Fixed issue in Proguard where it would complain about duplicate Manifests.
44
Xavier Ducrohete4bf0542013-03-14 18:37:18 -0700450.4
46
Xavier Ducrohet8505a872013-05-02 21:32:46 -070047* System requirements:
48 - Gradle 1.6+
49 - Android Build Tools 16.0.2+
50* Rename deviceCheck into connectedDevice
51* API for 3rd party Device Providers and Test Servers to run and deploy tests. API is @Beta
Xavier Ducrohetd5fd39b2013-03-21 09:27:57 -070052* Support for ProGuard 4.9
53 - enable with BuildType.runProguard
54 - add proguard config files with BuiltType.proguardFile or ProductFlavor.proguardFile
55 - default proguard files accessible through android.getDefaultProguardFile(name) with name
56 being 'proguard-android.txt' or 'proguard-android-optimize.txt'
Xavier Ducrohet8505a872013-05-02 21:32:46 -070057* Implements Gradle 1.6 custom model for IDE Tooling support
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070058* Fixes:
59 - Fix support for subfolders in assets/
60 - Fix cases where Android Libraries have local Jars dependencies
Xavier Ducrohet442aae72013-03-15 18:40:17 -070061 - Fix renaming of package through DSL to ensure resources are compiled in the new namespace
Xavier Ducrohet164a8f62013-03-26 13:57:30 -070062 - Fix DSL to add getSourceSets on the "android" extension.
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -070063 - DSL to query variants has changed to applicationVariants and libraryVariants (depending on the plugin)
64 Also both plugin have testVariants (tests are not included in the default collection).
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070065
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800660.3
67
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080068* System requirements:
69 - Gradle 1.3+ (tested on 1.3/1.4)
70 - Android Platform Tools 16.0.2+
71* New Features:
72 - Renderscript support.
73 - Support for multi resource folders. See 'multires' sample.
74 * PNG crunch is now done incrementally and in parallel.
75 - Support for multi asset folders.
76 - Support for asset folders in Library Projects.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080077 - Support for versionName suffix provided by the BuildType.
78 - Testing
Xavier Ducrohet042fd122013-02-18 16:55:29 -080079 * Default sourceset for tests now src/instrumentTest (instrumentTest<Name> for flavors)
80 * Instrumentation tests now:
81 - started from "deviceCheck" instead of "check"
82 - run on all connected devices in parallel.
83 - break the build if any test fails.
84 - generate an HTML report for each flavor/project, but also aggregated.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080085 * New plugin 'android-reporting' to aggregate android test results across projects. See 'flavorlib' sample.
86 - Improved DSL:
Xavier Ducrohet219f4f72013-02-14 10:59:17 -080087 * replaced android.target with android.compileSdkVersion to make it less confusing with targetSdkVersion
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080088 * signing information now a SigningConfig object reusable across BuildType and ProductFlavor
Xavier Ducrohet219f4f72013-02-14 10:59:17 -080089 * ability to relocate a full sourceSet. See 'migrated' sample.
Xavier Ducrohet042fd122013-02-18 16:55:29 -080090 * API to manipulate Build Variants.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080091* Fixes:
92 - Default Java compile target set to 1.6.
93 - Fix generation of R classes in case libraries share same package name as the app project.
Xavier Ducrohet997a04c2012-12-11 14:49:10 -080094
950.2
96
97* Fixed support for windows.
98* 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)
99* Added support for dependency per configuration.
100* Fixed support for dependency on local jar files.
101* New samples "migrated" and "flavorlib"
102
1030.1: initial release