├── .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 ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | dottandroid -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/app/app-release.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.2" 6 | //useLibrary 'org.apache.http.legacy' 7 | 8 | defaultConfig { 9 | applicationId "com.dott.webapp" 10 | minSdkVersion 15 11 | targetSdkVersion 23 12 | versionCode 13 13 | versionName "2.7" 14 | } 15 | buildTypes { 16 | release { 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 | } 20 | } 21 | useLibrary 'org.apache.http.legacy' 22 | } 23 | 24 | dependencies { 25 | compile fileTree(dir: 'libs', include: ['*.jar']) 26 | testCompile 'junit:junit:4.12' 27 | compile 'com.android.support:appcompat-v7:23.1.1' 28 | compile 'com.google.firebase:firebase-messaging:9.0.0' 29 | compile 'com.squareup.okhttp3:okhttp:3.2.0' 30 | compile 'com.android.support:design:23.2.1' 31 | compile "com.squareup.picasso:picasso:2.4.0" 32 | compile 'de.hdodenhof:circleimageview:1.3.0' 33 | compile 'com.wang.avi:library:2.1.1' 34 | 35 | compile 'com.github.delight-im:Android-AdvancedWebView:v3.0.0' 36 | 37 | 38 | 39 | } 40 | apply plugin: 'com.google.gms.google-services' 41 | -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "107386417104", 4 | "firebase_url": "https://dott-1218.firebaseio.com", 5 | "project_id": "dott-1218", 6 | "storage_bucket": "dott-1218.appspot.com" 7 | }, 8 | "client": [ 9 | { 10 | "client_info": { 11 | "mobilesdk_app_id": "1:107386417104:android:7459522a9ded8b63", 12 | "android_client_info": { 13 | "package_name": "com.dott.webapp" 14 | } 15 | }, 16 | "oauth_client": [ 17 | { 18 | "client_id": "107386417104-lqugg7gvg26b8jte83k5rkb3bb2oa6ju.apps.googleusercontent.com", 19 | "client_type": 3 20 | }, 21 | { 22 | "client_id": "107386417104-0040pru42sislr2q4a6j66i91m99lsmj.apps.googleusercontent.com", 23 | "client_type": 3 24 | } 25 | ], 26 | "api_key": [ 27 | { 28 | "current_key": "AIzaSyB3xOe7VC2VACE6hyQIJDUN-7_9SS_HktA" 29 | } 30 | ], 31 | "services": { 32 | "analytics_service": { 33 | "status": 1 34 | }, 35 | "appinvite_service": { 36 | "status": 1, 37 | "other_platform_oauth_client": [] 38 | }, 39 | "ads_service": { 40 | "status": 2 41 | } 42 | } 43 | } 44 | ], 45 | "configuration_version": "1" 46 | } -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/vishal/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/numetriclabz/webapp/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.numetriclabz.webapp; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |      16 | 17 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 40 | 44 | 49 | 54 | 59 | 64 | 69 | 74 | 79 | 84 | 88 | 93 | 94 | 95 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/DatePickerFragment.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.app.DatePickerDialog; 4 | import android.app.Dialog; 5 | import android.os.Bundle; 6 | import android.support.v4.app.DialogFragment; 7 | import android.widget.DatePicker; 8 | import android.widget.TextView; 9 | 10 | import java.util.Calendar; 11 | 12 | 13 | /** 14 | * Created by jahid on 12/10/15. 15 | */ 16 | public class DatePickerFragment extends DialogFragment 17 | implements DatePickerDialog.OnDateSetListener { 18 | 19 | @Override 20 | public Dialog onCreateDialog(Bundle savedInstanceState) { 21 | // Use the current date as the default date in the picker 22 | final Calendar c = Calendar.getInstance(); 23 | int year = c.get(Calendar.YEAR); 24 | int month = c.get(Calendar.MONTH); 25 | int day = c.get(Calendar.DAY_OF_MONTH); 26 | 27 | 28 | // Create a new instance of DatePickerDialog and return it 29 | return new DatePickerDialog(getActivity(), this, year, month, day); 30 | } 31 | 32 | public void onDateSet(DatePicker view, int year, int month, int day) { 33 | // Do something with the date chosen by the user 34 | TextView tv1= (TextView) getActivity().findViewById(R.id.date_of_birth); 35 | 36 | int yearData = view.getYear(); 37 | int monthData = view.getMonth()+1; 38 | int dayData = view.getDayOfMonth(); 39 | 40 | String monthString = Integer.toString(monthData); 41 | String dayString = Integer.toString(dayData); 42 | 43 | if (view.getMonth()<10) 44 | { 45 | monthString = "0"+monthString ; 46 | } 47 | 48 | if (view.getDayOfMonth()<10) 49 | { 50 | dayString = "0"+dayString ; 51 | } 52 | 53 | tv1.setText(yearData+"-"+monthString+"-"+dayString); 54 | 55 | } 56 | } -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/Firebase.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | import android.content.Intent; 7 | 8 | import com.google.firebase.iid.FirebaseInstanceId; 9 | import com.google.firebase.iid.FirebaseInstanceIdService; 10 | 11 | 12 | public class Firebase extends AppCompatActivity { 13 | 14 | @Override 15 | protected void onCreate(Bundle savedInstanceState) { 16 | super.onCreate(savedInstanceState); 17 | setContentView(R.layout.activity_firebase); 18 | 19 | 20 | class FirebaseInstanceIDService extends FirebaseInstanceIdService { 21 | 22 | @Override 23 | public void onTokenRefresh() { 24 | String token = FirebaseInstanceId.getInstance().getToken(); 25 | 26 | 27 | 28 | 29 | 30 | Intent intent = new Intent(FirebaseInstanceIDService.this, MainActivity.class); 31 | intent.putExtra("token", token); 32 | 33 | FirebaseInstanceIDService.this.startActivity(intent); 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | } 42 | 43 | 44 | 45 | 46 | } 47 | 48 | 49 | 50 | 51 | 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/FirebaseInstanceIDService.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import com.google.firebase.iid.FirebaseInstanceId; 4 | import com.google.firebase.iid.FirebaseInstanceIdService; 5 | 6 | import java.io.IOException; 7 | 8 | import okhttp3.FormBody; 9 | import okhttp3.OkHttpClient; 10 | import okhttp3.Request; 11 | import okhttp3.RequestBody; 12 | 13 | /** 14 | * Created by filipp on 5/23/2016. 15 | */ 16 | public class FirebaseInstanceIDService extends FirebaseInstanceIdService { 17 | 18 | 19 | 20 | 21 | 22 | @Override 23 | public void onTokenRefresh() { 24 | 25 | String token = FirebaseInstanceId.getInstance().getToken(); 26 | 27 | // registerToken(token); 28 | 29 | 30 | 31 | } 32 | 33 | private void registerToken(String token) { 34 | 35 | OkHttpClient client = new OkHttpClient(); 36 | RequestBody body = new FormBody.Builder() 37 | .add("Token",token) 38 | .build(); 39 | 40 | Request request = new Request.Builder() 41 | .url("http://192.168.1.71/fcm/register.php") 42 | .post(body) 43 | .build(); 44 | 45 | try { 46 | client.newCall(request).execute(); 47 | } catch (IOException e) { 48 | e.printStackTrace(); 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/FirebaseMessagingService.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.app.NotificationManager; 4 | import android.app.PendingIntent; 5 | import android.content.Intent; 6 | import android.support.v4.app.NotificationCompat; 7 | 8 | import com.google.firebase.messaging.RemoteMessage; 9 | 10 | /** 11 | * Created by filipp on 5/23/2016. 12 | */ 13 | public class FirebaseMessagingService extends com.google.firebase.messaging.FirebaseMessagingService{ 14 | 15 | @Override 16 | public void onMessageReceived(RemoteMessage remoteMessage) { 17 | 18 | // showNotification(remoteMessage.getData().get("notification")); 19 | // Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody()); 20 | showNotification( remoteMessage.getNotification().getBody(),remoteMessage.getNotification().getTitle()); 21 | 22 | } 23 | 24 | private void showNotification(String Body ,String Title ) { 25 | 26 | Intent i = new Intent(this,MainActivity.class); 27 | i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 28 | 29 | PendingIntent pendingIntent = PendingIntent.getActivity(this,0,i,PendingIntent.FLAG_UPDATE_CURRENT); 30 | 31 | NotificationCompat.Builder builder = new NotificationCompat.Builder(this) 32 | 33 | .setAutoCancel(false) 34 | .setContentTitle(Title) 35 | .setContentText(Body) 36 | .setSmallIcon(R.drawable.dd) 37 | .setContentIntent(pendingIntent); 38 | 39 | 40 | NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 41 | 42 | manager.notify(0,builder.build()); 43 | } 44 | 45 | 46 | } 47 | -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/SplashscreenActivity.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.app.Activity; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.content.SharedPreferences; 7 | import android.os.Bundle; 8 | import android.os.Handler; 9 | 10 | public class SplashscreenActivity extends Activity { 11 | SharedPreferences sharedpreferences; 12 | public static final String mypreference = "mypref"; 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.activity_splashscreen); 17 | sharedpreferences = getSharedPreferences(mypreference, Context.MODE_PRIVATE); 18 | 19 | String indicator=getIntent().getStringExtra("indicator"); 20 | int secondsDelayed = 4; 21 | new Handler().postDelayed(new Runnable() { 22 | public void run() { 23 | if(sharedpreferences.getBoolean("logged",false) == true) 24 | { 25 | //redirect to home page 26 | startActivity(new Intent(SplashscreenActivity.this, HomeActivity.class)); 27 | finish(); 28 | 29 | 30 | } 31 | else 32 | { 33 | startActivity(new Intent(SplashscreenActivity.this, MainActivity.class)); 34 | finish(); 35 | 36 | 37 | } 38 | 39 | if(sharedpreferences.getBoolean("first_time",true) == true) 40 | { 41 | startActivity(new Intent(SplashscreenActivity.this, RegisterActivity.class)); 42 | finish(); 43 | 44 | } 45 | else 46 | { 47 | 48 | 49 | } 50 | } 51 | }, secondsDelayed * 1000); 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/login.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.content.Context; 4 | import android.content.SharedPreferences; 5 | import android.content.res.Configuration; 6 | import android.os.Bundle; 7 | import android.support.design.widget.NavigationView; 8 | import android.support.v4.widget.DrawerLayout; 9 | import android.support.v7.app.ActionBarDrawerToggle; 10 | import android.support.v7.app.AppCompatActivity; 11 | import android.util.Log; 12 | import android.view.Menu; 13 | import android.view.MenuItem; 14 | import android.webkit.WebView; 15 | import android.webkit.WebViewClient; 16 | import android.widget.TextView; 17 | import android.widget.Toast; 18 | 19 | import org.apache.http.util.EncodingUtils; 20 | 21 | public class login extends AppCompatActivity { 22 | 23 | DrawerLayout drawerLayout; 24 | ActionBarDrawerToggle drawerToggle; 25 | NavigationView navigation; 26 | 27 | SharedPreferences sharedpreferences; 28 | public static final String mypreference = "mypref"; 29 | 30 | @Override 31 | protected void onCreate(Bundle savedInstanceState) { 32 | super.onCreate(savedInstanceState); 33 | setContentView(R.layout.activity_login); 34 | 35 | sharedpreferences = getSharedPreferences(mypreference, 36 | Context.MODE_PRIVATE); 37 | 38 | String Name = "name"; 39 | String NameData = "name texttttt"; 40 | 41 | SharedPreferences.Editor editor = sharedpreferences.edit(); 42 | editor.putString(Name, NameData); 43 | 44 | editor.commit(); 45 | //////////////// 46 | 47 | sharedpreferences = getSharedPreferences(mypreference, Context.MODE_PRIVATE); 48 | String user = sharedpreferences.getString("username", ""); 49 | String pass = sharedpreferences.getString("password", ""); 50 | 51 | 52 | 53 | // initInstances(); 54 | 55 | 56 | /* 57 | Intent intent = getIntent(); 58 | String user = intent.getStringExtra("user"); 59 | String pass = intent.getStringExtra("pass"); 60 | */ 61 | ////////////////Webview start//////////////// 62 | ////////////////////////////////// 63 | 64 | 65 | final WebView wv = (WebView) findViewById(R.id.webView); 66 | 67 | // WebView wv = new WebView(this); 68 | wv.setWebViewClient(new WebViewClient() { 69 | @Override 70 | public boolean shouldOverrideUrlLoading(WebView view, String url) { 71 | view.loadUrl(url); //this is controversial - see comments and other answers 72 | return true; 73 | } 74 | }); 75 | 76 | 77 | // setContentView(wv); 78 | wv.getSettings().setJavaScriptEnabled(true); 79 | 80 | 81 | final StringBuilder postData = new StringBuilder(); 82 | postData.append("username");postData.append("=");postData.append("ashraf.alsamman@gmail.com"); 83 | postData.append("&"); 84 | postData.append("password"); postData.append("="); postData.append("admin321"); 85 | postData.append("&"); 86 | postData.append("link");postData.append("=");postData.append("http://beta.dott.com/"); 87 | 88 | wv.postUrl("http://dott.com/en/auth/mlogin", EncodingUtils.getBytes(postData.toString(), "BASE64")); 89 | 90 | wv.setWebViewClient(new WebViewClient()); 91 | 92 | // test start 93 | // String webUrl = wv.ur(); 94 | // TextView outputView = (TextView) findViewById(R.id.showOutput); 95 | // outputView.setText(webUrl.toString() ); 96 | 97 | // test end 98 | 99 | 100 | // wv.loadUrl("http://dott.com/en"); 101 | 102 | wv.setWebViewClient(new WebViewClient() { 103 | public boolean shouldOverrideUrlLoading(WebView view, String url) { 104 | Toast.makeText(getApplicationContext(), url, Toast.LENGTH_SHORT).show(); 105 | 106 | String hallostring = url.toString(); 107 | if(hallostring.equals("http://dott.com/en")||hallostring.equals("http://dott.com/ar")||hallostring.equals("http://dott.com/tl")) 108 | { 109 | Log.v("TEST", "home"); 110 | TextView outputView = (TextView) findViewById(R.id.showOutput); 111 | } 112 | else 113 | { 114 | String asubstring = hallostring.substring(19, 22); 115 | 116 | Log.v("TEST", asubstring); 117 | TextView outputView = (TextView) findViewById(R.id.showOutput); 118 | outputView.setText(asubstring ); 119 | } 120 | 121 | 122 | 123 | if(url.equals("http://dott.com/en/jobs/all")){ 124 | Toast.makeText(getApplicationContext(), "222", Toast.LENGTH_SHORT).show(); 125 | wv.loadUrl("https://www.google.com/"); 126 | } 127 | else{ 128 | view.loadUrl(url); 129 | } 130 | return true; 131 | } 132 | }); 133 | 134 | 135 | 136 | getSupportActionBar().setHomeButtonEnabled(true); 137 | getSupportActionBar().setDisplayHomeAsUpEnabled(true); 138 | 139 | drawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout); 140 | drawerToggle = new ActionBarDrawerToggle(login.this, drawerLayout, R.string.hello_world, R.string.hello_world); 141 | drawerLayout.setDrawerListener(drawerToggle); 142 | 143 | navigation = (NavigationView) findViewById(R.id.navigation_view); 144 | navigation.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() { 145 | @Override 146 | public boolean onNavigationItemSelected(MenuItem menuItem) { 147 | int id = menuItem.getItemId(); 148 | switch (id) { 149 | case R.id.navigation_item_1: 150 | // startActivity(new Intent(login.this, MainActivity.class)); 151 | wv.loadUrl("http://dott.com/en/events"); 152 | break; 153 | case R.id.navigation_item_2: 154 | // startActivity(new Intent(GoogleActivity.this, ViralAndroidActivity.class)); 155 | break; 156 | case R.id.navigation_item_3: 157 | // startActivity(new Intent(GoogleActivity.this,GoogleActivity.class)); 158 | break; 159 | case R.id.navigation_item_4: 160 | // startActivity(new Intent(GoogleActivity.this, ViralAndroidActivity.class)); 161 | break; 162 | case R.id.navigation_item_5: 163 | // startActivity(new Intent(GoogleActivity.this,GoogleActivity.class)); 164 | break; 165 | } 166 | return false; 167 | } 168 | }); 169 | 170 | } 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | @Override 208 | public void onPostCreate(Bundle savedInstanceState) { 209 | super.onPostCreate(savedInstanceState); 210 | drawerToggle.syncState(); 211 | } 212 | 213 | @Override 214 | public void onConfigurationChanged(Configuration newConfig) { 215 | super.onConfigurationChanged(newConfig); 216 | drawerToggle.onConfigurationChanged(newConfig); 217 | } 218 | 219 | @Override 220 | public boolean onCreateOptionsMenu(Menu menu) { 221 | // Inflate the menu; this adds items to the action bar if it is present. 222 | getMenuInflater().inflate(R.menu.menu_main, menu); 223 | return true; 224 | } 225 | 226 | @Override 227 | public boolean onOptionsItemSelected(MenuItem item) { 228 | if (drawerToggle.onOptionsItemSelected(item)) 229 | return true; 230 | 231 | // Handle action bar item clicks here. The action bar will 232 | // automatically handle clicks on the Home/Up button, so long 233 | // as you specify a parent activity in AndroidManifest.xml. 234 | int id = item.getItemId(); 235 | 236 | //noinspection SimplifiableIfStatement 237 | if (id == R.id.action_settings) { 238 | return true; 239 | } 240 | 241 | return super.onOptionsItemSelected(item); 242 | } 243 | 244 | 245 | } // end -------------------------------------------------------------------------------- /app/src/main/java/com/dott/webapp/uploadphoto.java: -------------------------------------------------------------------------------- 1 | package com.dott.webapp; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class uploadphoto extends Activity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_uploadphoto); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable/ab_background_textured_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/addimage48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/all.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/border.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/border_set.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/borderbreak.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/borderpurple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_cab_done_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 23 | 25 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/businessman24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/cellphone24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/cellphone48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/color_cursor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/contractjob24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/dott_logo_login.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dottprogress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 27 | 28 | 29 | 30 | 33 | 34 | 35 | 37 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/email24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "filename": "ic_face.png", 5 | "idiom": "universal", 6 | "scale": "1x" 7 | }, 8 | { 9 | "filename": "ic_face_2x.png", 10 | "idiom": "universal", 11 | "scale": "2x" 12 | }, 13 | { 14 | "filename": "ic_face_3x.png", 15 | "idiom": "universal", 16 | "scale": "3x" 17 | } 18 | ], 19 | "info": { 20 | "author": "xcode", 21 | "version": 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/invitefilled24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/justrounded.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/lifecyclefilled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/password48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pattern.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/picture24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/plugin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_horizontal_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 24 | 25 | 26 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/r.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/radiobutton_drawable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/resume24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/resume24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedbutton2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedfbblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/roundedwhite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selectable_background_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/simple_icon_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/spinner_background_ab_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 23 | 25 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/splashscreenbackground2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/splashscreenlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_indicator_ab_appdecors.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/talkmale24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashraf-alsamman/android-webview-app-with-push-notification/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/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/35e37ac4fad20a3ef05681e779d1620479245b29/app/src/main/res/drawable/viral_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/whiterounded.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_after_register.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 20 | 21 | 22 | 23 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_blog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 21 | 22 | 29 | 30 | 40 | 41 | 45 | 50 | 51 |