├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── app ├── .gitignore ├── app-release.apk ├── build.gradle ├── google-services.json ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── numetriclabz │ │ └── webapp │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── dott │ │ │ └── webapp │ │ │ ├── AfterRegisterActivity.java │ │ │ ├── BlogActivity.java │ │ │ ├── BusinessesActivity.java │ │ │ ├── DatePickerFragment.java │ │ │ ├── EventsActivity.java │ │ │ ├── FeedsActivity.java │ │ │ ├── Firebase.java │ │ │ ├── FirebaseInstanceIDService.java │ │ │ ├── FirebaseMessagingService.java │ │ │ ├── ForgetPasswordActivity.java │ │ │ ├── HomeActivity.java │ │ │ ├── JobsActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── NewsActivity.java │ │ │ ├── RegisterActivity.java │ │ │ ├── SplashscreenActivity.java │ │ │ ├── businessDottActivity.java │ │ │ ├── login.java │ │ │ └── uploadphoto.java │ └── res │ │ ├── drawable-hdpi │ │ ├── Thumbs.db │ │ ├── ab_bottom_solid_appdecors.9.png │ │ ├── ab_solid_appdecors.9.png │ │ ├── ab_stacked_solid_appdecors.9.png │ │ ├── ab_texture_tile_appdecors.png │ │ ├── ab_transparent_appdecors.9.png │ │ ├── bluebg.png │ │ ├── blurbg.jpg │ │ ├── btn_cab_done_default_appdecors.9.png │ │ ├── btn_cab_done_focused_appdecors.9.png │ │ ├── btn_cab_done_pressed_appdecors.9.png │ │ ├── cab_background_bottom_appdecors.9.png │ │ ├── cab_background_top_appdecors.9.png │ │ ├── fbbg.jpg │ │ ├── flatppl.png │ │ ├── greenbg.jpg │ │ ├── ic_action_name.png │ │ ├── list_focused_appdecors.9.png │ │ ├── list_pressed_appdecors.9.png │ │ ├── loginapp.png │ │ ├── menu_dropdown_panel_appdecors.9.png │ │ ├── movie.png │ │ ├── patternbg.jpg │ │ ├── progress_bg_appdecors.9.png │ │ ├── progress_primary_appdecors.9.png │ │ ├── progress_secondary_appdecors.9.png │ │ ├── spinner_ab_default_appdecors.9.png │ │ ├── spinner_ab_disabled_appdecors.9.png │ │ ├── spinner_ab_focused_appdecors.9.png │ │ ├── spinner_ab_pressed_appdecors.9.png │ │ ├── tab_selected_appdecors.9.png │ │ ├── tab_selected_focused_appdecors.9.png │ │ ├── tab_selected_pressed_appdecors.9.png │ │ ├── tab_unselected_appdecors.9.png │ │ ├── tab_unselected_focused_appdecors.9.png │ │ └── tab_unselected_pressed_appdecors.9.png │ │ ├── drawable-mdpi │ │ ├── Thumbs.db │ │ ├── ab_bottom_solid_appdecors.9.png │ │ ├── ab_solid_appdecors.9.png │ │ ├── ab_stacked_solid_appdecors.9.png │ │ ├── ab_texture_tile_appdecors.png │ │ ├── ab_transparent_appdecors.9.png │ │ ├── btn_cab_done_default_appdecors.9.png │ │ ├── btn_cab_done_focused_appdecors.9.png │ │ ├── btn_cab_done_pressed_appdecors.9.png │ │ ├── cab_background_bottom_appdecors.9.png │ │ ├── cab_background_top_appdecors.9.png │ │ ├── ic_action_name.png │ │ ├── list_focused_appdecors.9.png │ │ ├── list_pressed_appdecors.9.png │ │ ├── menu_dropdown_panel_appdecors.9.png │ │ ├── progress_bg_appdecors.9.png │ │ ├── progress_primary_appdecors.9.png │ │ ├── progress_secondary_appdecors.9.png │ │ ├── spinner_ab_default_appdecors.9.png │ │ ├── spinner_ab_disabled_appdecors.9.png │ │ ├── spinner_ab_focused_appdecors.9.png │ │ ├── spinner_ab_pressed_appdecors.9.png │ │ ├── tab_selected_appdecors.9.png │ │ ├── tab_selected_focused_appdecors.9.png │ │ ├── tab_selected_pressed_appdecors.9.png │ │ ├── tab_unselected_appdecors.9.png │ │ ├── tab_unselected_focused_appdecors.9.png │ │ └── tab_unselected_pressed_appdecors.9.png │ │ ├── drawable-xhdpi │ │ ├── Thumbs.db │ │ ├── ab_bottom_solid_appdecors.9.png │ │ ├── ab_solid_appdecors.9.png │ │ ├── ab_stacked_solid_appdecors.9.png │ │ ├── ab_texture_tile_appdecors.png │ │ ├── ab_transparent_appdecors.9.png │ │ ├── btn_cab_done_default_appdecors.9.png │ │ ├── btn_cab_done_focused_appdecors.9.png │ │ ├── btn_cab_done_pressed_appdecors.9.png │ │ ├── cab_background_bottom_appdecors.9.png │ │ ├── cab_background_top_appdecors.9.png │ │ ├── ic_action_name.png │ │ ├── list_focused_appdecors.9.png │ │ ├── list_pressed_appdecors.9.png │ │ ├── menu_dropdown_panel_appdecors.9.png │ │ ├── progress_bg_appdecors.9.png │ │ ├── progress_primary_appdecors.9.png │ │ ├── progress_secondary_appdecors.9.png │ │ ├── spinner_ab_default_appdecors.9.png │ │ ├── spinner_ab_disabled_appdecors.9.png │ │ ├── spinner_ab_focused_appdecors.9.png │ │ ├── spinner_ab_pressed_appdecors.9.png │ │ ├── tab_selected_appdecors.9.png │ │ ├── tab_selected_focused_appdecors.9.png │ │ ├── tab_selected_pressed_appdecors.9.png │ │ ├── tab_unselected_appdecors.9.png │ │ ├── tab_unselected_focused_appdecors.9.png │ │ └── tab_unselected_pressed_appdecors.9.png │ │ ├── drawable-xxhdpi │ │ ├── Thumbs.db │ │ ├── ab_bottom_solid_appdecors.9.png │ │ ├── ab_solid_appdecors.9.png │ │ ├── ab_stacked_solid_appdecors.9.png │ │ ├── ab_texture_tile_appdecors.png │ │ ├── ab_transparent_appdecors.9.png │ │ ├── btn_cab_done_default_appdecors.9.png │ │ ├── btn_cab_done_focused_appdecors.9.png │ │ ├── btn_cab_done_pressed_appdecors.9.png │ │ ├── cab_background_bottom_appdecors.9.png │ │ ├── cab_background_top_appdecors.9.png │ │ ├── ic_action_name.png │ │ ├── list_focused_appdecors.9.png │ │ ├── list_pressed_appdecors.9.png │ │ ├── menu_dropdown_panel_appdecors.9.png │ │ ├── progress_bg_appdecors.9.png │ │ ├── progress_primary_appdecors.9.png │ │ ├── progress_secondary_appdecors.9.png │ │ ├── spinner_ab_default_appdecors.9.png │ │ ├── spinner_ab_disabled_appdecors.9.png │ │ ├── spinner_ab_focused_appdecors.9.png │ │ ├── spinner_ab_pressed_appdecors.9.png │ │ ├── tab_selected_appdecors.9.png │ │ ├── tab_selected_focused_appdecors.9.png │ │ ├── tab_selected_pressed_appdecors.9.png │ │ ├── tab_unselected_appdecors.9.png │ │ ├── tab_unselected_focused_appdecors.9.png │ │ └── tab_unselected_pressed_appdecors.9.png │ │ ├── drawable │ │ ├── Thumbs.db │ │ ├── ab_background_textured_appdecors.xml │ │ ├── addimage48.png │ │ ├── all.png │ │ ├── border.xml │ │ ├── border_set.xml │ │ ├── borderbreak.xml │ │ ├── borderpurple.xml │ │ ├── btn_cab_done_appdecors.xml │ │ ├── business.png │ │ ├── businessman24.png │ │ ├── button_background.xml │ │ ├── cellphone24.png │ │ ├── cellphone48.png │ │ ├── circle.xml │ │ ├── color_cursor.xml │ │ ├── contractjob24.png │ │ ├── date24.png │ │ ├── dd.gif │ │ ├── dott.png │ │ ├── dott_logo_login.png │ │ ├── dottprogress.xml │ │ ├── email24.png │ │ ├── email48.png │ │ ├── eventacceptedtentatively24.png │ │ ├── eventacceptedtentatively242.png │ │ ├── eventacceptedtentativelyfilled24.png │ │ ├── eventdeclined24.png │ │ ├── follow.png │ │ ├── gender24.png │ │ ├── gender244.png │ │ ├── google.png │ │ ├── googleblogsearch24.png │ │ ├── historical24.png │ │ ├── home24.png │ │ ├── ic_face_black_24dp.png │ │ ├── ic_face_black_24dp │ │ │ ├── android │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ └── ic_face_black_24dp.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_face_black_24dp.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_face_black_24dp.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_face_black_24dp.png │ │ │ │ └── drawable-xxxhdpi │ │ │ │ │ └── ic_face_black_24dp.png │ │ │ ├── ios │ │ │ │ └── ic_face.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_face.png │ │ │ │ │ ├── ic_face_2x.png │ │ │ │ │ └── ic_face_3x.png │ │ │ └── web │ │ │ │ ├── ic_face_black_24dp_1x.png │ │ │ │ └── ic_face_black_24dp_2x.png │ │ ├── ic_launcher.png │ │ ├── icon.png │ │ ├── images.jpg │ │ ├── invitefilled24.png │ │ ├── item_bg.xml │ │ ├── justrounded.xml │ │ ├── lifecyclefilled24.png │ │ ├── logoutroundeddown24.png │ │ ├── map24.png │ │ ├── nav_header_bg.png │ │ ├── news24.png │ │ ├── password24.png │ │ ├── password48.png │ │ ├── pattern.xml │ │ ├── picture24.png │ │ ├── plugin.png │ │ ├── progress_horizontal_appdecors.xml │ │ ├── r.jpg │ │ ├── radiobutton_drawable.xml │ │ ├── resume24.png │ │ ├── rounded_button.xml │ │ ├── rounded_edittext.xml │ │ ├── roundedblue.xml │ │ ├── roundedbutton2.xml │ │ ├── roundedfbblue.xml │ │ ├── roundedwhite.xml │ │ ├── selectable_background_appdecors.xml │ │ ├── settings24.png │ │ ├── showingvideoframes24.png │ │ ├── simple_icon_36.png │ │ ├── spinner_background_ab_appdecors.xml │ │ ├── splashscreenbackground2.png │ │ ├── splashscreenlogo.png │ │ ├── tab_indicator_ab_appdecors.xml │ │ ├── talkmale24.png │ │ ├── user24.png │ │ ├── user48.png │ │ ├── usergroupmanman24.png │ │ ├── viral_android.png │ │ └── whiterounded.xml │ │ ├── layout │ │ ├── activity_after_register.xml │ │ ├── activity_blog.xml │ │ ├── activity_business_dott.xml │ │ ├── activity_businesses.xml │ │ ├── activity_events.xml │ │ ├── activity_feeds.xml │ │ ├── activity_firebase.xml │ │ ├── activity_forget_password.xml │ │ ├── activity_home.xml │ │ ├── activity_jobs.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_news.xml │ │ ├── activity_register.xml │ │ ├── activity_splashscreen.xml │ │ ├── activity_uploadphoto.xml │ │ └── drawer_header.xml │ │ ├── menu │ │ ├── blog.xml │ │ ├── businesses.xml │ │ ├── events.xml │ │ ├── feed.xml │ │ ├── home.xml │ │ ├── jobs.xml │ │ ├── menu_main.xml │ │ ├── navigation_items.xml │ │ ├── navigation_items2.xml │ │ └── news.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── numetriclabz │ └── webapp │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | dottandroid -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/numetriclabz/webapp/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/androidTest/java/com/numetriclabz/webapp/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/AfterRegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/AfterRegisterActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/BlogActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/BlogActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/BusinessesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/BusinessesActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/DatePickerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/DatePickerFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/EventsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/EventsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/FeedsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/FeedsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/Firebase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/Firebase.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/FirebaseInstanceIDService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/FirebaseInstanceIDService.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/FirebaseMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/FirebaseMessagingService.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/ForgetPasswordActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/ForgetPasswordActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/HomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/HomeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/JobsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/JobsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/NewsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/NewsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/RegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/RegisterActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/SplashscreenActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/SplashscreenActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/businessDottActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/businessDottActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/login.java -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/uploadphoto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/java/com/dott/webapp/uploadphoto.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ab_bottom_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ab_bottom_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ab_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ab_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ab_stacked_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ab_stacked_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ab_texture_tile_appdecors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ab_texture_tile_appdecors.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ab_transparent_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ab_transparent_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/bluebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/bluebg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/blurbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/blurbg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_cab_done_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/btn_cab_done_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_cab_done_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/btn_cab_done_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_cab_done_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/btn_cab_done_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/cab_background_bottom_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/cab_background_bottom_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/cab_background_top_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/cab_background_top_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/fbbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/fbbg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/flatppl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/flatppl.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/greenbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/greenbg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/list_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/list_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/list_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/list_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/loginapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/loginapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menu_dropdown_panel_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/menu_dropdown_panel_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/movie.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/patternbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/patternbg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/progress_bg_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/progress_bg_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/progress_primary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/progress_primary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/progress_secondary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/progress_secondary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/spinner_ab_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/spinner_ab_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/spinner_ab_disabled_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/spinner_ab_disabled_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/spinner_ab_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/spinner_ab_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/spinner_ab_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/spinner_ab_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_selected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_selected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_selected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_selected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_selected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_selected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_unselected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_unselected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_unselected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_unselected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/tab_unselected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-hdpi/tab_unselected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ab_bottom_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ab_bottom_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ab_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ab_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ab_stacked_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ab_stacked_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ab_texture_tile_appdecors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ab_texture_tile_appdecors.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ab_transparent_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ab_transparent_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_cab_done_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/btn_cab_done_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_cab_done_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/btn_cab_done_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_cab_done_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/btn_cab_done_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/cab_background_bottom_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/cab_background_bottom_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/cab_background_top_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/cab_background_top_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/list_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/list_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/list_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/list_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/menu_dropdown_panel_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/menu_dropdown_panel_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/progress_bg_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/progress_bg_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/progress_primary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/progress_primary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/progress_secondary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/progress_secondary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/spinner_ab_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/spinner_ab_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/spinner_ab_disabled_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/spinner_ab_disabled_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/spinner_ab_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/spinner_ab_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/spinner_ab_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/spinner_ab_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_selected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_selected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_selected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_selected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_selected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_selected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_unselected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_unselected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_unselected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_unselected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/tab_unselected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-mdpi/tab_unselected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ab_bottom_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ab_bottom_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ab_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ab_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ab_stacked_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ab_stacked_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ab_texture_tile_appdecors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ab_texture_tile_appdecors.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ab_transparent_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ab_transparent_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_cab_done_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/btn_cab_done_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_cab_done_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/btn_cab_done_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_cab_done_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/btn_cab_done_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/cab_background_bottom_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/cab_background_bottom_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/cab_background_top_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/cab_background_top_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/list_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/list_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/list_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/list_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/menu_dropdown_panel_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/menu_dropdown_panel_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/progress_bg_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/progress_bg_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/progress_primary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/progress_primary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/progress_secondary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/progress_secondary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/spinner_ab_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/spinner_ab_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/spinner_ab_disabled_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/spinner_ab_disabled_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/spinner_ab_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/spinner_ab_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/spinner_ab_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/spinner_ab_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_selected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_selected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_selected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_selected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_selected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_selected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_unselected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_unselected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_unselected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_unselected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_unselected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xhdpi/tab_unselected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ab_bottom_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ab_bottom_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ab_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ab_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ab_stacked_solid_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ab_stacked_solid_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ab_texture_tile_appdecors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ab_texture_tile_appdecors.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ab_transparent_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ab_transparent_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_cab_done_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/btn_cab_done_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_cab_done_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/btn_cab_done_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/cab_background_bottom_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/cab_background_bottom_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/cab_background_top_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/cab_background_top_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/list_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/list_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/list_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/list_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/menu_dropdown_panel_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/menu_dropdown_panel_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/progress_bg_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/progress_bg_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/progress_primary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/progress_primary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/progress_secondary_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/progress_secondary_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/spinner_ab_default_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/spinner_ab_default_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/spinner_ab_disabled_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/spinner_ab_disabled_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/spinner_ab_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/spinner_ab_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/spinner_ab_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/spinner_ab_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_selected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_selected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_selected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_selected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_selected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_selected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_unselected_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_unselected_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_unselected_focused_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_unselected_focused_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tab_unselected_pressed_appdecors.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable-xxhdpi/tab_unselected_pressed_appdecors.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable/ab_background_textured_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ab_background_textured_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/addimage48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/addimage48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/all.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/border_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/border_set.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/borderbreak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/borderbreak.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/borderpurple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/borderpurple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_cab_done_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/btn_cab_done_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/business.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/businessman24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/businessman24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/button_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cellphone24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/cellphone24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cellphone48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/cellphone48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/color_cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/color_cursor.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/contractjob24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/contractjob24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/date24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/date24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/dd.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/dott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/dott.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dott_logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/dott_logo_login.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dottprogress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/dottprogress.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/email24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/email24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/email48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/email48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/eventacceptedtentatively24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/eventacceptedtentatively24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/eventacceptedtentatively242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/eventacceptedtentatively242.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/eventacceptedtentativelyfilled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/eventacceptedtentativelyfilled24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/eventdeclined24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/eventdeclined24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/follow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/gender24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/gender24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/gender244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/gender244.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/googleblogsearch24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/googleblogsearch24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/historical24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/historical24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/home24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-hdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-hdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-hdpi/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-hdpi/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-mdpi/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-mdpi/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xhdpi/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xhdpi/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xxhdpi/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xxhdpi/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xxxhdpi/ic_face_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/android/drawable-xxxhdpi/ic_face_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/Contents.json -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face_2x.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/ios/ic_face.imageset/ic_face_3x.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/web/ic_face_black_24dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/web/ic_face_black_24dp_1x.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_face_black_24dp/web/ic_face_black_24dp_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_face_black_24dp/web/ic_face_black_24dp_2x.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/images.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/invitefilled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/invitefilled24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/item_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/justrounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/justrounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/lifecyclefilled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/lifecyclefilled24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/logoutroundeddown24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/logoutroundeddown24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/map24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/map24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/nav_header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/nav_header_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/news24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/news24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/password24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/password24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/password48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/password48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/pattern.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/picture24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/picture24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/plugin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_horizontal_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/progress_horizontal_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/r.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/radiobutton_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/radiobutton_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/resume24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/resume24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/rounded_edittext.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedblue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/roundedblue.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedbutton2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/roundedbutton2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedfbblue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/roundedfbblue.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedwhite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/roundedwhite.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selectable_background_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/selectable_background_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/settings24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/showingvideoframes24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/showingvideoframes24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/simple_icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/simple_icon_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/spinner_background_ab_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/spinner_background_ab_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splashscreenbackground2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/splashscreenbackground2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/splashscreenlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/splashscreenlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_indicator_ab_appdecors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/tab_indicator_ab_appdecors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/talkmale24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/talkmale24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/user24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/user48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/user48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/usergroupmanman24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/usergroupmanman24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/viral_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/viral_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/whiterounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/drawable/whiterounded.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_after_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_after_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_blog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_blog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_business_dott.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_business_dott.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_businesses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_businesses.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_events.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_feeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_feeds.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_firebase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_firebase.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_forget_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_forget_password.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_jobs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_news.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_splashscreen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_uploadphoto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/activity_uploadphoto.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drawer_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/layout/drawer_header.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/blog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/blog.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/businesses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/businesses.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/events.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/feed.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/home.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/jobs.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/navigation_items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/navigation_items.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/navigation_items2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/navigation_items2.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/menu/news.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/numetriclabz/webapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/app/src/test/java/com/numetriclabz/webapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------