aboutsummaryrefslogtreecommitdiff
path: root/changelog.txt
AgeCommit message (Collapse)Author
2013-11-19Move to Gradle 1.9Xavier Ducrohet
Change-Id: I71163cdbf756d2e4699b00f03805e6db1016e198
2013-11-15Support to test proguarded apps.Xavier Ducrohet
Change-Id: I4cce4479c6c3e7e5e56bfe346e85ff32b486dbd3
2013-11-14Update version to 0.7.0Xavier Ducrohet
Change-Id: Ie2de7ec0fd043218a3018859e65e69246515424d
2013-11-08Updated changelog.Alex Ruiz
Change-Id: I7273fe040c8bb17ceb9f25c1d6b2292956dea501
2013-10-10Updated plug-in version to 0.6.2Alex Ruiz
Change-Id: I3c8ac610467092da38389339bb9fa284430ec79b
2013-10-01Updated plug-in version to 0.6.1.Alex Ruiz
Change-Id: I4a5d85514573da26fac008c8b411dbf4086b3371
2013-09-26Updated plug-in version to 0.6.0.Alex Ruiz
Change-Id: I5157bf3a0014093b866bb9d5d501d8c75ee6db68
2013-09-13Update changelog for 0.5.7Xavier Ducrohet
Change-Id: I1d5fa1e2cc4ac0537d55d8124069de61207ae0e8
2013-08-07Update changelogXavier Ducrohet
Change-Id: Iced0517d2abf092fb7588349e650e169e9d4c61c
2013-08-01Update changelog.Xavier Ducrohet
Change-Id: I502148342ef5e56475df587e00e038f7232a9616
2013-07-30Don't force creation of task on variant container access.Xavier Ducrohet
This means android.applicationVariants.each won't really work (unless it's in an afterEvaluate closure). ...all will though. Change-Id: I06d93c113fbcadf06edb7d9c56da9c27e2ad407e
2013-07-30Update changelogXavier Ducrohet
Change-Id: I2706db4e036c0a2867c47add603db9931da094fe
2013-07-19Update changelog for 0.5.4Xavier Ducrohet
Change-Id: I62d9423803ad7414e04851554e53c2403f7e665e
2013-07-18Update changelog.Xavier Ducrohet
Change-Id: Icfdc575a5ad4a1c122d34945577b9d2290042bc3
2013-07-17Update log with 0.5.2Xavier Ducrohet
Change-Id: I7e9086e5530904cef9d4a3ab329385c5cd59da8d
2013-07-12Update changelog.Xavier Ducrohet
Change-Id: Ief8a8be0686612ad4832145c44f867ff4dbe6283 (cherry picked from commit ece3869d8f069e9ef934ec55c0b8e5d5471cfd60)
2013-07-11Update change log.Xavier Ducrohet
Change-Id: I21cccf8514cc06378ec4dfa08ac901bd8e9b34c5
2013-06-25Use full artifact id to create exploded bundle folder name.Xavier Ducrohet
This fix the issue where two artifacts/modules have the same artifactId or the same leaf folder name and override each other. Change-Id: I4c3db658adf20e3720fbeb3747f47c3cab65d2f8
2013-06-21Update changelog for 0.4.3 and 0.5.0Xavier Ducrohet
Change-Id: Ie91b1b7cf2284db16b847e6e76fbb6b17ea9153c
2013-05-30Update the changelog for 0.4.2Xavier Ducrohet
Change-Id: I79eaa41beef602965e1270c8aa07ce66c4550499
2013-05-23Move Gradle plugin to 0.5.0Xavier Ducrohet
Change-Id: I2c3d042157a3aacdd8542117a2e059f83058304c
2013-05-02Update changelog.Xavier Ducrohet
Change-Id: Ie0510de8cdbf60de32ec1fbec6faa81a6bee0196
2013-04-18Proguard support.Xavier Ducrohet
Change-Id: I236458b4ae883481ff3afa9123f0167dbd270ac1
2013-03-26Add getSourceSets on extension object.Xavier Ducrohet
Change-Id: Ifed369c3e397c031326c10778d17241eb3f6cccf
2013-03-15Fix package renaming.Xavier Ducrohet
The previous mechanism used --rename-manifest-package while letting the created manifest have the old package name. While this rename the package entry in the manifest, the resource pool was still associated to the original package name which made thinkgs awkward. The new mechanism uses the new feature of the manifest-merger that allows updating the package name. This means the application is compiled completely using the new package. In order to keep the R class sane though, aapt is called with --custom-package to override only the location of the R class. Change-Id: I0162dab6ca1cdeaf40e0c92d351f0290f01fd216
2013-03-15Fix support for local jars in library projects.Xavier Ducrohet
Change-Id: If19406b935965bde63a761236366137f6fb5d73f
2013-02-19Change tests to be instrumentationTests everywhere.Xavier Ducrohet
This is to not collide with jUnit 'tests'. The idea is to allow regular jUnit tests in the same project, alongside instrumentation (and ui automator) tests. Change-Id: I8db8527f82f16860a83c1d2def996e8074282c5d
2013-02-14Unlink instrumentation tests from the check task.Xavier Ducrohet
A clear separation between checks that requires and those that do not require a device is better. This will allow to run lint and other non-device checks separately more easily. Also fix an issue with the location of ZipAlign. Change-Id: I4fd58d6313ed5ab4559da0b3954b555ff1f41bcd
2013-02-07SDK support improvements.Xavier Ducrohet
Move figuring out the path to aidl/aapt/dx/llvm-rs-cc from IAndroidTarget to SdkParser (in preparation of the build-tools). Also change android.target to android.compileSdkVersion to make it less confusing with regards to min/targetSdkVersion and also change it to take either an int or a string. Change-Id: I8642cb84f67cf75b49abe905b2a65f4d26668e98
2013-01-15Default to Java 1.6 when building and allow customization.Xavier Ducrohet
New DSL to customize source/targetCompatibility: android { compileOptions { sourceCompatibility = "1.6" targetCompatibility = "1.6" } } dex options will probably all move in there too in the future. Change-Id: Ibab6fb8c44e7193274720f7340f0f1f409c6e3a4
2013-01-11Update changelog.Xavier Ducrohet
Change-Id: I0df828ebb747d9bb3320bf2a33cec22088b900a1
2013-01-02Update docs.Xavier Ducrohet
Change-Id: Iced8cbbb3774fe534510db30a397a469956d3832
2012-12-11Add support for multiple res folders in all source sets.Xavier Ducrohet
Change-Id: I01fc363072b4407f70863899c80620fb22044b1f