├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── device-animation-test-rule ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── io │ │ └── victoralbertos │ │ └── device_animation_test_rule │ │ └── DeviceAnimationTestRule.java │ └── res │ └── values │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── test-sample ├── build.gradle ├── proguard-rules.pro └── src ├── androidTest └── java │ └── io │ └── victoralbertos │ └── deviceanimationtestrule │ ├── DeviceAnimationDisabledTestRuleTest.kt │ ├── DeviceAnimationEnabledTestRuleTest.kt │ └── SuiteIntegration.kt └── main ├── AndroidManifest.xml ├── java └── io │ └── victoralbertos │ └── deviceanimationtestrule │ └── AnimationSampleActivity.kt └── res ├── layout └── animation_sample_activity.xml ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png ├── mipmap-xxxhdpi └── ic_launcher.png └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/README.md -------------------------------------------------------------------------------- /device-animation-test-rule/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/device-animation-test-rule/build.gradle -------------------------------------------------------------------------------- /device-animation-test-rule/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/device-animation-test-rule/proguard-rules.pro -------------------------------------------------------------------------------- /device-animation-test-rule/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/device-animation-test-rule/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /device-animation-test-rule/src/main/java/io/victoralbertos/device_animation_test_rule/DeviceAnimationTestRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/device-animation-test-rule/src/main/java/io/victoralbertos/device_animation_test_rule/DeviceAnimationTestRule.java -------------------------------------------------------------------------------- /device-animation-test-rule/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/device-animation-test-rule/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/settings.gradle -------------------------------------------------------------------------------- /test-sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/build.gradle -------------------------------------------------------------------------------- /test-sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/proguard-rules.pro -------------------------------------------------------------------------------- /test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/DeviceAnimationDisabledTestRuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/DeviceAnimationDisabledTestRuleTest.kt -------------------------------------------------------------------------------- /test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/DeviceAnimationEnabledTestRuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/DeviceAnimationEnabledTestRuleTest.kt -------------------------------------------------------------------------------- /test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/SuiteIntegration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/androidTest/java/io/victoralbertos/deviceanimationtestrule/SuiteIntegration.kt -------------------------------------------------------------------------------- /test-sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /test-sample/src/main/java/io/victoralbertos/deviceanimationtestrule/AnimationSampleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/java/io/victoralbertos/deviceanimationtestrule/AnimationSampleActivity.kt -------------------------------------------------------------------------------- /test-sample/src/main/res/layout/animation_sample_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/layout/animation_sample_activity.xml -------------------------------------------------------------------------------- /test-sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorAlbertos/DeviceAnimationTestRule/HEAD/test-sample/src/main/res/values/strings.xml --------------------------------------------------------------------------------