├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── appInsightsSettings.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml ├── studiobot.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── police-operation-siren.mp3 │ ├── ic_launcher-playstore.png │ ├── java │ └── com │ │ └── android │ │ └── sheguard │ │ ├── SheGuard.java │ │ ├── api │ │ ├── MyFirebaseAuth.java │ │ └── NotificationAPI.java │ │ ├── common │ │ └── Constants.java │ │ ├── config │ │ └── Prefs.java │ │ ├── model │ │ ├── ContactModel.java │ │ ├── HelplineModel.java │ │ ├── NotificationDataModel.java │ │ ├── NotificationSenderModel.java │ │ ├── NotificationTokenModel.java │ │ └── UserModel.java │ │ ├── service │ │ ├── FireBaseMessageService.java │ │ └── SosService.java │ │ ├── ui │ │ ├── activity │ │ │ ├── LoginRegisterActivity.java │ │ │ ├── MainActivity.java │ │ │ └── OnBoardingActivity.java │ │ ├── adapter │ │ │ ├── ContactsAdapter.java │ │ │ ├── HelplineAdapter.java │ │ │ ├── NewContactAdapter.java │ │ │ ├── OnBoardingPagerAdapter.java │ │ │ └── SafetyTipsAdapter.java │ │ ├── core │ │ │ ├── FadeTransition.java │ │ │ ├── PopTransition.java │ │ │ └── Transform.java │ │ ├── entity │ │ │ └── OnBoardingPage.java │ │ ├── fragment │ │ │ ├── AboutFragment.java │ │ │ ├── ContactsFragment.java │ │ │ ├── EditProfileFragment.java │ │ │ ├── HelplineFragment.java │ │ │ ├── HomeFragment.java │ │ │ ├── LoginFragment.java │ │ │ ├── ProfileFragment.java │ │ │ ├── RegisterFragment.java │ │ │ ├── SafetyTipsFragment.java │ │ │ └── SettingsFragment.java │ │ └── view │ │ │ ├── InfoDialog.java │ │ │ ├── LoadingDialog.java │ │ │ ├── OnBoardingView.java │ │ │ └── VerifyEmailDialog.java │ │ └── util │ │ ├── AppUtil.java │ │ ├── FirebaseUtil.java │ │ ├── NotificationClient.java │ │ ├── NotificationResponse.java │ │ ├── ObservableVariable.java │ │ └── SosUtil.java │ └── res │ ├── anim │ ├── fade_in.xml │ ├── fade_out.xml │ ├── slide_in.xml │ └── slide_out.xml │ ├── color │ ├── color_material_ripple.xml │ ├── color_ripple_sos.xml │ ├── text_color_primary.xml │ └── text_color_secondary.xml │ ├── drawable │ ├── btn_large_sos.xml │ ├── container.xml │ ├── ic_about.png │ ├── ic_arrow_back.xml │ ├── ic_call_emergency_service.png │ ├── ic_call_small.png │ ├── ic_contacts.png │ ├── ic_copy.xml │ ├── ic_done.png │ ├── ic_email_small.png │ ├── ic_helpline.png │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_notification.xml │ ├── ic_location_small.png │ ├── ic_logout.png │ ├── ic_logout_2.xml │ ├── ic_name_small.png │ ├── ic_nav_drawer.xml │ ├── ic_onboarding_img1.xml │ ├── ic_onboarding_img2.xml │ ├── ic_onboarding_img3.xml │ ├── ic_password_small.png │ ├── ic_play_siren.png │ ├── ic_profile.png │ ├── ic_remove.xml │ ├── ic_safety_tips.png │ ├── ic_send_notification.png │ ├── ic_send_sms.png │ ├── ic_settings.png │ ├── ic_shake_detection.png │ ├── ic_tick.png │ ├── ic_verified.png │ ├── ic_warning.png │ ├── img_drdisagree.png │ ├── item_background_material.xml │ ├── rectangle_colorful.xml │ └── round_colorful.xml │ ├── layout-land │ └── view_onboarding_page_item.xml │ ├── layout │ ├── activity_login_register.xml │ ├── activity_main.xml │ ├── activity_onboarding.xml │ ├── fragment_about.xml │ ├── fragment_contacts.xml │ ├── fragment_edit_profile.xml │ ├── fragment_helpline.xml │ ├── fragment_home.xml │ ├── fragment_login.xml │ ├── fragment_profile.xml │ ├── fragment_register.xml │ ├── fragment_safety_tips.xml │ ├── fragment_settings.xml │ ├── view_add_new_contact.xml │ ├── view_contacts_list_item.xml │ ├── view_header_expandable.xml │ ├── view_header_navigation_drawer.xml │ ├── view_helpline_list_item.xml │ ├── view_info_dialog.xml │ ├── view_loading_dialog.xml │ ├── view_onboarding_page.xml │ ├── view_onboarding_page_item.xml │ ├── view_safety_tips_list_item.xml │ └── view_verify_email_dialog.xml │ ├── menu │ └── nav_drawer.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── navigation │ ├── nav_home.xml │ └── nav_login_register.xml │ ├── raw │ └── service_account.json │ ├── transition │ ├── activity_main_exit.xml │ └── activity_main_reenter.xml │ ├── values-night │ ├── colors.xml │ └── themes.xml │ ├── values-v28 │ └── styles.xml │ ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── integers.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ ├── data_extraction_rules.xml │ └── onboarding_main_scene.xml ├── banner.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── about.jpg ├── contacts.jpg ├── edit_profile.jpg ├── helpline.jpg ├── home.jpg ├── onboarding.jpg ├── profile.jpg ├── safety_tips.jpg ├── settings.jpg ├── signin.jpg └── signup.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/studiobot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/studiobot.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/police-operation-siren.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/assets/police-operation-siren.mp3 -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/SheGuard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/SheGuard.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/api/MyFirebaseAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/api/MyFirebaseAuth.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/api/NotificationAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/api/NotificationAPI.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/common/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/common/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/config/Prefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/config/Prefs.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/ContactModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/ContactModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/HelplineModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/HelplineModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/NotificationDataModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/NotificationDataModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/NotificationSenderModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/NotificationSenderModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/NotificationTokenModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/NotificationTokenModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/model/UserModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/model/UserModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/service/FireBaseMessageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/service/FireBaseMessageService.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/service/SosService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/service/SosService.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/activity/LoginRegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/activity/LoginRegisterActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/activity/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/activity/OnBoardingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/activity/OnBoardingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/adapter/ContactsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/adapter/ContactsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/adapter/HelplineAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/adapter/HelplineAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/adapter/NewContactAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/adapter/NewContactAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/adapter/OnBoardingPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/adapter/OnBoardingPagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/adapter/SafetyTipsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/adapter/SafetyTipsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/core/FadeTransition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/core/FadeTransition.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/core/PopTransition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/core/PopTransition.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/core/Transform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/core/Transform.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/entity/OnBoardingPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/entity/OnBoardingPage.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/AboutFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/AboutFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/ContactsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/ContactsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/EditProfileFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/EditProfileFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/HelplineFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/HelplineFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/HomeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/LoginFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/LoginFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/ProfileFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/ProfileFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/RegisterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/RegisterFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/SafetyTipsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/SafetyTipsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/fragment/SettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/fragment/SettingsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/view/InfoDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/view/InfoDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/view/LoadingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/view/LoadingDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/view/OnBoardingView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/view/OnBoardingView.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/ui/view/VerifyEmailDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/ui/view/VerifyEmailDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/AppUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/AppUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/FirebaseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/FirebaseUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/NotificationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/NotificationClient.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/NotificationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/NotificationResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/ObservableVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/ObservableVariable.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/sheguard/util/SosUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/java/com/android/sheguard/util/SosUtil.java -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/anim/slide_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/anim/slide_out.xml -------------------------------------------------------------------------------- /app/src/main/res/color/color_material_ripple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/color/color_material_ripple.xml -------------------------------------------------------------------------------- /app/src/main/res/color/color_ripple_sos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/color/color_ripple_sos.xml -------------------------------------------------------------------------------- /app/src/main/res/color/text_color_primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/color/text_color_primary.xml -------------------------------------------------------------------------------- /app/src/main/res/color/text_color_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/color/text_color_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_large_sos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/btn_large_sos.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/container.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_emergency_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_call_emergency_service.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_call_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_contacts.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_copy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_email_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_helpline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_helpline.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_launcher_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_location_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_location_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_logout.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logout_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_logout_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_name_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_name_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nav_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_nav_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_onboarding_img1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_onboarding_img1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_onboarding_img2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_onboarding_img2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_onboarding_img3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_onboarding_img3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_password_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_password_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_play_siren.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_profile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_safety_tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_safety_tips.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_send_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_send_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_send_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_send_sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shake_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_shake_detection.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_verified.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_drdisagree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/img_drdisagree.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/item_background_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/item_background_material.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_colorful.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/rectangle_colorful.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_colorful.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/drawable/round_colorful.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/view_onboarding_page_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout-land/view_onboarding_page_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/activity_login_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_contacts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_edit_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_edit_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_helpline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_helpline.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_safety_tips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_safety_tips.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_add_new_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_add_new_contact.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_contacts_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_contacts_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_header_expandable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_header_expandable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_header_navigation_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_header_navigation_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_helpline_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_helpline_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_info_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_info_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_loading_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_loading_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_onboarding_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_onboarding_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_onboarding_page_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_onboarding_page_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_safety_tips_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_safety_tips_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_verify_email_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/layout/view_verify_email_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/nav_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/menu/nav_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/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/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/navigation/nav_home.xml -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_login_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/navigation/nav_login_register.xml -------------------------------------------------------------------------------- /app/src/main/res/raw/service_account.json: -------------------------------------------------------------------------------- 1 | { 2 | "TODO": "Replace with your own service_account.json" 3 | } 4 | -------------------------------------------------------------------------------- /app/src/main/res/transition/activity_main_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/transition/activity_main_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/activity_main_reenter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/transition/activity_main_reenter.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v28/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values-v28/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/onboarding_main_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/app/src/main/res/xml/onboarding_main_scene.xml -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/banner.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/about.jpg -------------------------------------------------------------------------------- /screenshots/contacts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/contacts.jpg -------------------------------------------------------------------------------- /screenshots/edit_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/edit_profile.jpg -------------------------------------------------------------------------------- /screenshots/helpline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/helpline.jpg -------------------------------------------------------------------------------- /screenshots/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/home.jpg -------------------------------------------------------------------------------- /screenshots/onboarding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/onboarding.jpg -------------------------------------------------------------------------------- /screenshots/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/profile.jpg -------------------------------------------------------------------------------- /screenshots/safety_tips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/safety_tips.jpg -------------------------------------------------------------------------------- /screenshots/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/settings.jpg -------------------------------------------------------------------------------- /screenshots/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/signin.jpg -------------------------------------------------------------------------------- /screenshots/signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/screenshots/signup.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/SheGuard/HEAD/settings.gradle --------------------------------------------------------------------------------