├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── io │ │ └── github │ │ └── tonnyl │ │ └── sample │ │ ├── AnotherActivity.java │ │ ├── BackgroundColorActivity.kt │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_heart.xml │ ├── ic_launcher_background.xml │ ├── ic_satisfied_face.xml │ └── ic_thumb_up.xml │ ├── layout │ ├── activity_main.xml │ └── background_color_activity.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 │ ├── strings.xml │ └── styles.xml ├── art └── screenshot.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── whatsnew ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src ├── androidTest ├── AndroidManifest.xml ├── java │ └── io │ │ └── github │ │ └── tonnyl │ │ └── whatsnew │ │ ├── MockActivity.kt │ │ └── WhatsNewTest.kt └── res │ ├── drawable │ ├── ic_heart.xml │ ├── ic_launcher_background.xml │ ├── ic_satisfied_face.xml │ └── ic_thumb_up.xml │ ├── layout │ └── activity_mock.xml │ └── values │ ├── colors.xml │ └── styles.xml └── main ├── AndroidManifest.xml ├── java └── io │ └── github │ └── tonnyl │ └── whatsnew │ ├── WhatsNew.kt │ ├── adapter │ └── WhatsNewItemAdapter.kt │ ├── item │ ├── DslItemBuilder.kt │ └── WhatsNewItem.kt │ └── util │ ├── ItemLayoutOption.kt │ └── PresentationOption.kt └── res ├── anim ├── push_bottom_in.xml └── push_bottom_out.xml ├── layout ├── whatsnew_item.xml ├── whatsnew_item_ios.xml └── whatsnew_main.xml └── values └── styles.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/io/github/tonnyl/sample/AnotherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/java/io/github/tonnyl/sample/AnotherActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/tonnyl/sample/BackgroundColorActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/java/io/github/tonnyl/sample/BackgroundColorActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/tonnyl/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/java/io/github/tonnyl/sample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_satisfied_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/drawable/ic_satisfied_face.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thumb_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/drawable/ic_thumb_up.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/background_color_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/layout/background_color_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/art/screenshot.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /whatsnew/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /whatsnew/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/build.gradle.kts -------------------------------------------------------------------------------- /whatsnew/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/proguard-rules.pro -------------------------------------------------------------------------------- /whatsnew/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/java/io/github/tonnyl/whatsnew/MockActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/java/io/github/tonnyl/whatsnew/MockActivity.kt -------------------------------------------------------------------------------- /whatsnew/src/androidTest/java/io/github/tonnyl/whatsnew/WhatsNewTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/java/io/github/tonnyl/whatsnew/WhatsNewTest.kt -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/drawable/ic_satisfied_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/drawable/ic_satisfied_face.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/drawable/ic_thumb_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/drawable/ic_thumb_up.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/layout/activity_mock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/layout/activity_mock.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/values/colors.xml -------------------------------------------------------------------------------- /whatsnew/src/androidTest/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/androidTest/res/values/styles.xml -------------------------------------------------------------------------------- /whatsnew/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/WhatsNew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/WhatsNew.kt -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/adapter/WhatsNewItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/adapter/WhatsNewItemAdapter.kt -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/item/DslItemBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/item/DslItemBuilder.kt -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/item/WhatsNewItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/item/WhatsNewItem.kt -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/util/ItemLayoutOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/util/ItemLayoutOption.kt -------------------------------------------------------------------------------- /whatsnew/src/main/java/io/github/tonnyl/whatsnew/util/PresentationOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/java/io/github/tonnyl/whatsnew/util/PresentationOption.kt -------------------------------------------------------------------------------- /whatsnew/src/main/res/anim/push_bottom_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/anim/push_bottom_in.xml -------------------------------------------------------------------------------- /whatsnew/src/main/res/anim/push_bottom_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/anim/push_bottom_out.xml -------------------------------------------------------------------------------- /whatsnew/src/main/res/layout/whatsnew_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/layout/whatsnew_item.xml -------------------------------------------------------------------------------- /whatsnew/src/main/res/layout/whatsnew_item_ios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/layout/whatsnew_item_ios.xml -------------------------------------------------------------------------------- /whatsnew/src/main/res/layout/whatsnew_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/layout/whatsnew_main.xml -------------------------------------------------------------------------------- /whatsnew/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnyL/WhatsNew/HEAD/whatsnew/src/main/res/values/styles.xml --------------------------------------------------------------------------------