├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── thendianappguy │ │ └── whattodonext │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── thendianappguy │ │ │ └── whattodonext │ │ │ ├── Adapter │ │ │ ├── TaskAdapter.java │ │ │ ├── TaskRecycleViewAdapter.java │ │ │ └── TasksAdapter.java │ │ │ ├── AddTask.java │ │ │ ├── CustomClass │ │ │ ├── TasksClass.java │ │ │ └── UserClass.java │ │ │ ├── HelpingClass │ │ │ ├── FunctionClass.java │ │ │ └── SessionManagement.java │ │ │ ├── MainActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SplashActivity.java │ │ │ ├── login_register │ │ │ ├── LoginActivity.java │ │ │ ├── RegisterActivity.java │ │ │ └── ResetPass.java │ │ │ └── other │ │ │ └── BottomSheetDialog.java │ └── res │ │ ├── drawable-v24 │ │ ├── chip_bg.xml │ │ ├── circularborderbtn.xml │ │ ├── email_white.xml │ │ ├── ic_check_circle_color_24dp.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── key_white.xml │ │ ├── person_white.xml │ │ ├── rectangle_bottom_shadow.xml │ │ ├── white_circular_border_btn.xml │ │ ├── white_circular_button.xml │ │ └── white_circularborderbtn.xml │ │ ├── drawable │ │ ├── add.xml │ │ ├── arrow_back.xml │ │ ├── bacjground_gradient1.xml │ │ ├── background.jpg │ │ ├── background_gradient.xml │ │ ├── chatwht.xml │ │ ├── circlegreyfil.xml │ │ ├── circular_border_btn.xml │ │ ├── circularbordersolidsquare.xml │ │ ├── emailwht.xml │ │ ├── empty.png │ │ ├── ic_help_white.xml │ │ ├── ic_launcher_background.xml │ │ ├── left_circular_gradient_background1.xml │ │ ├── left_circular_gradient_background2.xml │ │ ├── left_circular_gradient_background3.xml │ │ ├── left_circular_gradient_background4.xml │ │ ├── left_circular_gradient_background5.xml │ │ ├── logo.png │ │ ├── man.png │ │ ├── nextblc.xml │ │ ├── passwht.xml │ │ ├── privacywht.xml │ │ ├── profilewht.xml │ │ ├── right_circular_white_background.xml │ │ └── settings.xml │ │ ├── font │ │ └── ralewayregular.ttf │ │ ├── layout │ │ ├── activity_add_task.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_register.xml │ │ ├── activity_reset_pass.xml │ │ ├── activity_settings.xml │ │ ├── activity_splash.xml │ │ ├── add_task_bottom_sheet.xml │ │ ├── task_card_new.xml │ │ └── tasks_card.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 │ └── test │ └── java │ └── com │ └── thendianappguy │ └── whattodonext │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/thendianappguy/whattodonext/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/androidTest/java/com/thendianappguy/whattodonext/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/Adapter/TaskAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/Adapter/TaskAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/Adapter/TaskRecycleViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/Adapter/TaskRecycleViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/Adapter/TasksAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/Adapter/TasksAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/AddTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/AddTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/CustomClass/TasksClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/CustomClass/TasksClass.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/CustomClass/UserClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/CustomClass/UserClass.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/HelpingClass/FunctionClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/HelpingClass/FunctionClass.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/HelpingClass/SessionManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/HelpingClass/SessionManagement.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/SplashActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/login_register/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/login_register/LoginActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/login_register/RegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/login_register/RegisterActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/login_register/ResetPass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/login_register/ResetPass.java -------------------------------------------------------------------------------- /app/src/main/java/com/thendianappguy/whattodonext/other/BottomSheetDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/java/com/thendianappguy/whattodonext/other/BottomSheetDialog.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/chip_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/chip_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/circularborderbtn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/circularborderbtn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/email_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/email_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_check_circle_color_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/ic_check_circle_color_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/key_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/key_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/person_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/person_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/rectangle_bottom_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/rectangle_bottom_shadow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/white_circular_border_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/white_circular_border_btn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/white_circular_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/white_circular_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/white_circularborderbtn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable-v24/white_circularborderbtn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bacjground_gradient1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/bacjground_gradient1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/background.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/background_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/chatwht.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/chatwht.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circlegreyfil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/circlegreyfil.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circular_border_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/circular_border_btn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circularbordersolidsquare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/circularbordersolidsquare.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/emailwht.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/emailwht.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/empty.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/ic_help_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_circular_gradient_background1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/left_circular_gradient_background1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_circular_gradient_background2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/left_circular_gradient_background2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_circular_gradient_background3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/left_circular_gradient_background3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_circular_gradient_background4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/left_circular_gradient_background4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_circular_gradient_background5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/left_circular_gradient_background5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/man.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/nextblc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/nextblc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/passwht.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/passwht.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/privacywht.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/privacywht.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/profilewht.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/profilewht.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/right_circular_white_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/right_circular_white_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/drawable/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/font/ralewayregular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/font/ralewayregular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_add_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_add_task.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_reset_pass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_reset_pass.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_task_bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/add_task_bottom_sheet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/task_card_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/task_card_new.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tasks_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/layout/tasks_card.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/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/theindianappguy/WhattodoNext/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/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/thendianappguy/whattodonext/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/app/src/test/java/com/thendianappguy/whattodonext/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theindianappguy/WhattodoNext/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='What to do Next' 3 | --------------------------------------------------------------------------------