├── .github └── ISSUE_TEMPLATE │ └── -advanced-android-in-kotlin-issue.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── begin ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── samples │ │ │ └── propertyanimation │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_star.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── end ├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── samples │ │ └── propertyanimation │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_star.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE/-advanced-android-in-kotlin-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/.github/ISSUE_TEMPLATE/-advanced-android-in-kotlin-issue.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/README.md -------------------------------------------------------------------------------- /begin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/.gitignore -------------------------------------------------------------------------------- /begin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/README.md -------------------------------------------------------------------------------- /begin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /begin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/build.gradle -------------------------------------------------------------------------------- /begin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/proguard-rules.pro -------------------------------------------------------------------------------- /begin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /begin/app/src/main/java/com/google/samples/propertyanimation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/java/com/google/samples/propertyanimation/MainActivity.kt -------------------------------------------------------------------------------- /begin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/drawable/ic_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/drawable/ic_star.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /begin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /begin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /begin/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /begin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/build.gradle -------------------------------------------------------------------------------- /begin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/gradle.properties -------------------------------------------------------------------------------- /begin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /begin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /begin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/gradlew -------------------------------------------------------------------------------- /begin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/gradlew.bat -------------------------------------------------------------------------------- /begin/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/begin/settings.gradle -------------------------------------------------------------------------------- /end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/.gitignore -------------------------------------------------------------------------------- /end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/README.md -------------------------------------------------------------------------------- /end/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /end/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/build.gradle -------------------------------------------------------------------------------- /end/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/proguard-rules.pro -------------------------------------------------------------------------------- /end/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /end/app/src/main/java/com/google/samples/propertyanimation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/java/com/google/samples/propertyanimation/MainActivity.kt -------------------------------------------------------------------------------- /end/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /end/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /end/app/src/main/res/drawable/ic_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/drawable/ic_star.xml -------------------------------------------------------------------------------- /end/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /end/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /end/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /end/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /end/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /end/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /end/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/build.gradle -------------------------------------------------------------------------------- /end/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/gradle.properties -------------------------------------------------------------------------------- /end/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /end/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /end/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/gradlew -------------------------------------------------------------------------------- /end/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/gradlew.bat -------------------------------------------------------------------------------- /end/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/advanced-android-kotlin-animation-property-animation/HEAD/end/settings.gradle --------------------------------------------------------------------------------