blob: 14d297597a8c5c23c1903b94fd0b31a205d0e87c [file] [log] [blame]
Xavier Ducrohet1fe33e52013-07-30 14:28:48 -07001
2- Only package a library's own resources in its aar.
3- Misc fixes
4
Xavier Ducroheted6d4da2013-07-19 17:29:16 -070050.5.4
6
7- Fixed incremental compilation issue with declare-styleable
8
Xavier Ducrohet8593c202013-07-18 14:11:01 -070090.5.3
10
11- Fix a crashing bug in PrepareDependenciesTask
12
Xavier Ducrohetf51f75d2013-07-17 17:39:37 -0700130.5.2
14
15- Better error reporting for cmd line tools, especially
16 if run in parallel in spawned threads
17- Fix an issue due to windows path in merged resource files.
18
Xavier Ducrohetb7f2f942013-07-12 10:51:12 -0700190.5.1
20
21- Fix issue in the dependency checker.
22
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700230.5.0:
24
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070025- IDE Model is changed and is not compatible with earlier version! A new IDE
26 will required.
27- Fixed IDE model to contain the output file even if it's customized
28 through the DSL. Also fixed the DSL to get/set the output file on the
29 variant object so that it's not necessary to use variant.packageApplication
30 or variant.zipAlign
31- Fixed dependency resolution so that we resolved the combination of (default config,
32 build types, flavor(s)) together instead of separately.
33- Fixed dependency for tests of library project to properly include all the dependencies
34 of the library itself.
Xavier Ducrohet516de4b2013-06-25 20:04:17 -070035- Fixed case where two dependencies have the same leaf name.
Xavier Ducrohet157adfd2013-07-11 10:04:17 -070036- Fixed issue where proguard rules file cannot be applied on flavors.
Xavier Ducrohet6e6a3bd2013-06-21 15:51:49 -070037
380.4.3:
39
40- enable crunching for all png files, not just .9.png
41- fix dealing with non resource files in res/ and assets/
42- fix crash when doing incremental aidl compilation due to broken method name (ah the joy of Groovy...)
43- clean older R classes when the app package name has changed.
44
Xavier Ducrohet6ed177f2013-05-30 12:49:41 -0700450.4.2
46
47* Fixed incremental support for resource merging.
48* Fixed issue where all pngs would be processed in parallel with no limit
49 on the number of thread used, leading to failure to run aapt.
50* Fixed ignoreAsset support in aaptOptions
51* Added more logging on failure to merge manifests.
52* Added flavor names to the TestServer API.
53
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -0700540.4.1:
55
56* Renamed 'package' scope to 'apk'
57 - variants are 'debugApk', 'releaseApk', 'flavor1Apk', etc...
58 - Now properly supported at build to allow package-only dependencies.
59* Only Jar dependencies can be package-only. Library projects must be added to the compile scope.
60* Fixed [application|library|test]Variants API (always returned empty on 0.4)
61* Fixed issue in Proguard where it would complain about duplicate Manifests.
62
Xavier Ducrohete4bf0542013-03-14 18:37:18 -0700630.4
64
Xavier Ducrohet8505a872013-05-02 21:32:46 -070065* System requirements:
66 - Gradle 1.6+
67 - Android Build Tools 16.0.2+
68* Rename deviceCheck into connectedDevice
69* API for 3rd party Device Providers and Test Servers to run and deploy tests. API is @Beta
Xavier Ducrohetd5fd39b2013-03-21 09:27:57 -070070* Support for ProGuard 4.9
71 - enable with BuildType.runProguard
72 - add proguard config files with BuiltType.proguardFile or ProductFlavor.proguardFile
73 - default proguard files accessible through android.getDefaultProguardFile(name) with name
74 being 'proguard-android.txt' or 'proguard-android-optimize.txt'
Xavier Ducrohet8505a872013-05-02 21:32:46 -070075* Implements Gradle 1.6 custom model for IDE Tooling support
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070076* Fixes:
77 - Fix support for subfolders in assets/
78 - Fix cases where Android Libraries have local Jars dependencies
Xavier Ducrohet442aae72013-03-15 18:40:17 -070079 - Fix renaming of package through DSL to ensure resources are compiled in the new namespace
Xavier Ducrohet164a8f62013-03-26 13:57:30 -070080 - Fix DSL to add getSourceSets on the "android" extension.
Xavier Ducrohetc7d3bc32013-05-23 17:42:00 -070081 - DSL to query variants has changed to applicationVariants and libraryVariants (depending on the plugin)
82 Also both plugin have testVariants (tests are not included in the default collection).
Xavier Ducrohete4bf0542013-03-14 18:37:18 -070083
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800840.3
85
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080086* System requirements:
87 - Gradle 1.3+ (tested on 1.3/1.4)
88 - Android Platform Tools 16.0.2+
89* New Features:
90 - Renderscript support.
91 - Support for multi resource folders. See 'multires' sample.
92 * PNG crunch is now done incrementally and in parallel.
93 - Support for multi asset folders.
94 - Support for asset folders in Library Projects.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080095 - Support for versionName suffix provided by the BuildType.
96 - Testing
Xavier Ducrohet042fd122013-02-18 16:55:29 -080097 * Default sourceset for tests now src/instrumentTest (instrumentTest<Name> for flavors)
98 * Instrumentation tests now:
99 - started from "deviceCheck" instead of "check"
100 - run on all connected devices in parallel.
101 - break the build if any test fails.
102 - generate an HTML report for each flavor/project, but also aggregated.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800103 * New plugin 'android-reporting' to aggregate android test results across projects. See 'flavorlib' sample.
104 - Improved DSL:
Xavier Ducrohet219f4f72013-02-14 10:59:17 -0800105 * replaced android.target with android.compileSdkVersion to make it less confusing with targetSdkVersion
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800106 * signing information now a SigningConfig object reusable across BuildType and ProductFlavor
Xavier Ducrohet219f4f72013-02-14 10:59:17 -0800107 * ability to relocate a full sourceSet. See 'migrated' sample.
Xavier Ducrohet042fd122013-02-18 16:55:29 -0800108 * API to manipulate Build Variants.
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -0800109* Fixes:
110 - Default Java compile target set to 1.6.
111 - Fix generation of R classes in case libraries share same package name as the app project.
Xavier Ducrohet997a04c2012-12-11 14:49:10 -0800112
1130.2
114
115* Fixed support for windows.
116* 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)
117* Added support for dependency per configuration.
118* Fixed support for dependency on local jar files.
119* New samples "migrated" and "flavorlib"
120
1210.1: initial release