Fixed atsl versions and gradle task

Change-Id: Ia0c3b18ac72b660f5bbedc9bb3a27d94f87a87e7
This commit is contained in:
Stephan Linzner
2015-09-21 14:21:13 -07:00
parent 3b41bb181e
commit 342c987b97
2 changed files with 12 additions and 12 deletions

View File

@@ -585,13 +585,13 @@ allAppsButton.clickAndWaitForNewWindow();</pre>
<pre>
dependencies {
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:runner:0.4'
// Set this dependency to use JUnit 4 rules
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support.test:rules:0.4'
// Set this dependency to build and run Espresso tests
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
// Set this dependency to build and run UI Automator tests
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
}</pre>
<p>To set
@@ -628,4 +628,4 @@ android {
<p>
For more information about Android Studio and to download it, see
<a href="{@docRoot}sdk/index.html">Download Android Studio and SDK Tools</a>.
</p>
</p>

View File

@@ -120,9 +120,9 @@ trainingnavtop=true
<pre>
dependencies {
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
androidTestCompile 'com.android.support.test:runner:0.4'
androidTestCompile 'com.android.support.test:rules:0.4'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
}
</pre>
</li>
@@ -572,9 +572,9 @@ android {
}
}</pre>
</li>
<li>Run your tests from the command-line by calling the the {@code connectedCheck}
(or {@code cC}) task:
<li>Run your tests from the command-line by calling the the {@code connectedAndroidTest}
(or {@code cAT}) task:
<pre>
./gradlew cC</pre>
./gradlew cAT</pre>
</li>
</ol>
</ol>