Unlink instrumentation tests from the check task.
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
diff --git a/changelog.txt b/changelog.txt
index 655af00..14ede6d 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -12,14 +12,15 @@
- API to manipulate Build Variants.
- Support for versionName suffix provided by the BuildType.
- Testing
- * Tests now runs on all connected devices in parallel.
- * Running tests on device now breaks the build if any test fails.
- * Generate an HTML report for each flavor/project, but also aggregated.
+ * Instrumentation tests now started from "deviceCheck" instead of "check"
+ * Instrumentation tests now run on all connected devices in parallel.
+ * Instrumentation tests now break the build if any test fails.
+ * Instrumentation tests now generate an HTML report for each flavor/project, but also aggregated.
* New plugin 'android-reporting' to aggregate android test results across projects. See 'flavorlib' sample.
- Improved DSL:
- * replaced android.target with android.compileSdkVersion to make it less confusing vs min/targetSdkVersion
+ * replaced android.target with android.compileSdkVersion to make it less confusing with targetSdkVersion
* signing information now a SigningConfig object reusable across BuildType and ProductFlavor
- * ability to relocated a full sourceSet. See 'migrated' sample.
+ * ability to relocate a full sourceSet. See 'migrated' sample.
* Fixes:
- Default Java compile target set to 1.6.
- Fix generation of R classes in case libraries share same package name as the app project.