├── .github └── workflows │ └── android.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── io │ │ └── github │ │ └── subhamtyagi │ │ └── quickcalculation │ │ ├── LaunchActivity.java │ │ ├── QuizActivity.java │ │ ├── SettingsActivity.java │ │ ├── dialog │ │ └── TimeDialog.java │ │ ├── factory │ │ ├── GenerateQuestion.java │ │ └── Question.java │ │ └── utils │ │ ├── CrashUtils.java │ │ ├── SpUtil.java │ │ └── Utils.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── layout │ ├── activity_launch.xml │ ├── activity_quiz.xml │ ├── settings_activity.xml │ └── time_dialog.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── values-night │ └── colors.xml │ ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ └── settings.xml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ └── 5.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/LaunchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/LaunchActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/QuizActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/QuizActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/dialog/TimeDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/dialog/TimeDialog.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/factory/GenerateQuestion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/factory/GenerateQuestion.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/factory/Question.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/factory/Question.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/CrashUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/CrashUtils.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/SpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/SpUtil.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/java/io/github/subhamtyagi/quickcalculation/utils/Utils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/layout/activity_launch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/layout/settings_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/time_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/layout/time_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/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/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | First Version without icon -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | New icon 2 | 3 | 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | Fix Android 12 crash 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Improve your Maths Calculation Speed -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Quick Calculation -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubhamTyagi/quick-calculation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "QuickCalculation" 2 | include ':app' 3 | --------------------------------------------------------------------------------