├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HappyTimer ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── androchef │ │ └── happytimer │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── androchef │ │ │ └── happytimer │ │ │ ├── countdowntimer │ │ │ ├── CircularCountDownView.kt │ │ │ ├── DynamicCountDownView.kt │ │ │ ├── HappyTimer.kt │ │ │ ├── NormalCountDownView.kt │ │ │ └── pojo │ │ │ │ └── NormalCountDownTime.kt │ │ │ ├── ui │ │ │ └── CircleProgressBar.kt │ │ │ └── utils │ │ │ ├── DateTimeUtils.kt │ │ │ └── extensions │ │ │ └── ViewExtensions.kt │ └── res │ │ ├── drawable │ │ ├── bg_textview_count_down_circle.xml │ │ └── bg_textview_countdown_rectangle.xml │ │ ├── layout │ │ ├── layout_circular_count_down_timer.xml │ │ ├── layout_dynamic_countdown_timer.xml │ │ └── layout_normal_countdown_timer.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── androchef │ └── happytimer │ └── ExampleUnitTest.kt ├── LICENSE ├── PULL_REQUEST_TEMPLETE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── androchef │ │ └── happytimersample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── androchef │ │ │ └── happytimersample │ │ │ ├── HomeActivity.kt │ │ │ ├── circular_countdown │ │ │ └── DemoCircularCountDownActivity.kt │ │ │ ├── dynamic_countdown │ │ │ └── DemoDynamicCountDownActivity.kt │ │ │ ├── normal_countdown │ │ │ └── NormalCountDownActivity.kt │ │ │ └── utils │ │ │ └── ViewExtensions.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_demo_circular_count_down.xml │ │ ├── activity_demo_dynamic_count_down.xml │ │ ├── activity_home.xml │ │ └── activity_normal_count_down.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 │ └── test │ └── java │ └── com │ └── androchef │ └── happytimersample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots └── Happytimer.png └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HappyTimer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HappyTimer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/build.gradle -------------------------------------------------------------------------------- /HappyTimer/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HappyTimer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/proguard-rules.pro -------------------------------------------------------------------------------- /HappyTimer/src/androidTest/java/com/androchef/happytimer/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/androidTest/java/com/androchef/happytimer/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/CircularCountDownView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/CircularCountDownView.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/DynamicCountDownView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/DynamicCountDownView.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/HappyTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/HappyTimer.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/NormalCountDownView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/NormalCountDownView.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/pojo/NormalCountDownTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/countdowntimer/pojo/NormalCountDownTime.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/ui/CircleProgressBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/ui/CircleProgressBar.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/utils/DateTimeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/utils/DateTimeUtils.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/java/com/androchef/happytimer/utils/extensions/ViewExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/java/com/androchef/happytimer/utils/extensions/ViewExtensions.kt -------------------------------------------------------------------------------- /HappyTimer/src/main/res/drawable/bg_textview_count_down_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/drawable/bg_textview_count_down_circle.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/drawable/bg_textview_countdown_rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/drawable/bg_textview_countdown_rectangle.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/layout/layout_circular_count_down_timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/layout/layout_circular_count_down_timer.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/layout/layout_dynamic_countdown_timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/layout/layout_dynamic_countdown_timer.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/layout/layout_normal_countdown_timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/layout/layout_normal_countdown_timer.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /HappyTimer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /HappyTimer/src/test/java/com/androchef/happytimer/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/HappyTimer/src/test/java/com/androchef/happytimer/ExampleUnitTest.kt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/PULL_REQUEST_TEMPLETE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/androchef/happytimersample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/androidTest/java/com/androchef/happytimersample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/androchef/happytimersample/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/java/com/androchef/happytimersample/HomeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/androchef/happytimersample/circular_countdown/DemoCircularCountDownActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/java/com/androchef/happytimersample/circular_countdown/DemoCircularCountDownActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/androchef/happytimersample/dynamic_countdown/DemoDynamicCountDownActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/java/com/androchef/happytimersample/dynamic_countdown/DemoDynamicCountDownActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/androchef/happytimersample/normal_countdown/NormalCountDownActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/java/com/androchef/happytimersample/normal_countdown/NormalCountDownActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/androchef/happytimersample/utils/ViewExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/java/com/androchef/happytimersample/utils/ViewExtensions.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_demo_circular_count_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/layout/activity_demo_circular_count_down.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_demo_dynamic_count_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/layout/activity_demo_dynamic_count_down.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_normal_count_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/layout/activity_normal_count_down.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/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/happysingh23828/HappyTimer/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/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/androchef/happytimersample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/app/src/test/java/com/androchef/happytimersample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/Happytimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/screenshots/Happytimer.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happysingh23828/HappyTimer/HEAD/settings.gradle --------------------------------------------------------------------------------