Skip to content

Commit ba14ef9

Browse files
committed
Merge pull request android#60 from cdsap/master
Fix "disabling animations" instructions in READMEs.
2 parents 402ba56 + 8316a9d commit ba14ef9

File tree

9 files changed

+18
-9
lines changed

9 files changed

+18
-9
lines changed

runner/AndroidJunitRunnerSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
2626
(AndroidTestSuite, UnitTestSuite, InstrumentationTestSuite)
2727
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
2828
1. Connect a device or start an emulator
29-
* [https://code.google.com/p/android-test-kit/wiki/DisablingAnimations Turn animations off].
29+
* Turn animations off.
30+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
3031
1. Run the newly created configuration
3132

3233
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/BasicSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1616
* Choose a module
1717
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
1818
1. Connect a device or start an emulator
19-
* [Turn animations off](https://code.google.com/p/android-test-kit/wiki/DisablingAnimations).
19+
* Turn animations off.
20+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2021
1. Run the newly created configuration
2122

2223
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/BasicSampleBundled/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ The problem is that the same LICENSE.TXT file is found multiple times and AAPT d
1919
* Select your project by clicking the "Browse" button
2020
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
2121
1. Connect a device or start an emulator
22-
* Turn animations off [link link]
22+
* Turn animations off.
23+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2324
1. Run the newly created configuration
2425

2526
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/CustomMatcherSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1616
* Choose a module
1717
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
1818
1. Connect a device or start an emulator
19-
* [https://code.google.com/p/android-test-kit/wiki/DisablingAnimations Turn animations off].
19+
* Turn animations off.
20+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2021
1. Run the newly created configuration
2122

2223
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/DataAdapterSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1919
* Choose a module
2020
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
2121
1. Connect a device or start an emulator
22-
* [https://code.google.com/p/android-test-kit/wiki/DisablingAnimations Turn animations off].
22+
* Turn animations off.
23+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2324
1. Run the newly created configuration
2425

2526
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/IntentsAdvancedSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1818
* Choose a module
1919
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
2020
1. Connect a device or start an emulator
21-
* [Turn animations off](https://code.google.com/p/android-test-kit/wiki/DisablingAnimations).
21+
* Turn animations off.
22+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2223
1. Run the newly created configuration
2324

2425
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/IntentsBasicSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1717
* Choose a module
1818
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
1919
1. Connect a device or start an emulator
20-
* [Turn animations off](https://code.google.com/p/android-test-kit/wiki/DisablingAnimations).
20+
* Turn animations off.
21+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2122
1. Run the newly created configuration
2223

2324
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/MultiWindowSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
3030
* Choose a module
3131
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
3232
1. Connect a device or start an emulator
33-
* [https://code.google.com/p/android-test-kit/wiki/DisablingAnimations Turn animations off].
33+
* Turn animations off.
34+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
3435
1. Run the newly created configuration
3536

3637
The application will be started on the device/emulator and a series of actions will be performed automatically.

ui/espresso/WebBasicSample/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
2020
* Choose a module
2121
* Add a *Specific instrumentation runner*: `android.support.test.runner.AndroidJUnitRunner`
2222
1. Connect a device or start an emulator
23-
* [Turn animations off](https://code.google.com/p/android-test-kit/wiki/DisablingAnimations).
23+
* Turn animations off.
24+
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
2425
1. Run the newly created configuration
2526

2627
The application will be started on the device/emulator and a series of actions will be performed automatically.

0 commit comments

Comments
 (0)