├── app ├── .gitignore ├── src │ ├── main │ │ ├── sms-web.png │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── sms.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── sms_round.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── sms.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── sms_round.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── sms.png │ │ │ │ ├── sms_round.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── sms.png │ │ │ │ ├── sms_round.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── sms.png │ │ │ │ ├── sms_round.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_sms.png │ │ │ │ ├── ic_call.png │ │ │ │ ├── ic_insta.png │ │ │ │ ├── ic_contact.png │ │ │ │ └── ic_action_name.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_sms.png │ │ │ │ ├── ic_call.png │ │ │ │ ├── ic_insta.png │ │ │ │ ├── ic_contact.png │ │ │ │ └── ic_action_name.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_call.png │ │ │ │ ├── ic_insta.png │ │ │ │ ├── ic_sms.png │ │ │ │ ├── ic_contact.png │ │ │ │ ├── ic_action_name.png │ │ │ │ └── ic_fcb.xml │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_call.png │ │ │ │ ├── ic_sms.png │ │ │ │ ├── ic_insta.png │ │ │ │ ├── ic_contact.png │ │ │ │ └── ic_action_name.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── drawables.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── sms.xml │ │ │ │ ├── sms_round.xml │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── drawable │ │ │ │ ├── side_nav_bar.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_menu_send.xml │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ └── ic_menu_share.xml │ │ │ ├── menu │ │ │ │ ├── main.xml │ │ │ │ └── activity_main_drawer.xml │ │ │ ├── layout │ │ │ │ ├── fragment_received_sms.xml │ │ │ │ ├── fragment_call_log.xml │ │ │ │ ├── fragment_insta_notifications.xml │ │ │ │ ├── fragment_camera.xml │ │ │ │ ├── fragment_email.xml │ │ │ │ ├── fragment_contact.xml │ │ │ │ ├── fragment_notification.xml │ │ │ │ ├── content_main.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── app_bar_main.xml │ │ │ │ ├── nav_header_main.xml │ │ │ │ ├── contact_cardview_layout.xml │ │ │ │ ├── item_cardview_layout.xml │ │ │ │ ├── notification_cardview_layout.xml │ │ │ │ ├── email_cardview_layout.xml │ │ │ │ └── call_log_cardview_layout.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ghazi │ │ │ │ └── admin │ │ │ │ ├── Contact.java │ │ │ │ ├── Sms.java │ │ │ │ ├── Email.java │ │ │ │ ├── CallLog.java │ │ │ │ ├── Notification.java │ │ │ │ ├── SmsAdapter.java │ │ │ │ ├── EmailAdapter.java │ │ │ │ ├── ContactAdapter.java │ │ │ │ ├── CallLogAdapter.java │ │ │ │ ├── NotificationAdapter.java │ │ │ │ ├── ReceivedSmsFragment.java │ │ │ │ ├── CallLogFragment.java │ │ │ │ ├── CameraFragment.java │ │ │ │ ├── EmailFragment.java │ │ │ │ ├── ContactFragment.java │ │ │ │ ├── InstaNotificationsFragment.java │ │ │ │ ├── NotificationFragment.java │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── ghazi │ │ │ └── admin │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── ghazi │ │ └── admin │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro ├── build.gradle └── google-services.json ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .idea ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml └── misc.xml ├── README.md ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/src/main/sms-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/sms-web.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-hdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-mdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xhdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxhdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxxhdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-hdpi/ic_sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-mdpi/ic_sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-hdpi/ic_call.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-hdpi/ic_insta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-mdpi/ic_call.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-mdpi/ic_insta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xhdpi/ic_call.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xhdpi/ic_insta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xhdpi/ic_sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xxhdpi/ic_call.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xxhdpi/ic_sms.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/sms_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-hdpi/sms_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/sms_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-mdpi/sms_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/sms_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xhdpi/sms_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sms_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxhdpi/sms_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-hdpi/ic_contact.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-mdpi/ic_contact.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xhdpi/ic_contact.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xxhdpi/ic_insta.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/sms_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxxhdpi/sms_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xxhdpi/ic_contact.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghazikr/SpyAppAdmin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SpyAppAdmin 2 | An android Spy app(Admin module) using FireBase, it is complementary to SpyAppClient 3 | 4 | ![25434030_1654543597935642_444718770_o](https://user-images.githubusercontent.com/33207077/33975448-eab4d3c0-e08e-11e7-95d8-a2196ec8c103.png) 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 12 19:56:26 WAT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/sms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/sms_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_fcb.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Admin 3 | 4 | Open navigation drawer 5 | Close navigation drawer 6 | 7 | Settings 8 | 9 | 10 | Hello blank fragment 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/test/java/com/example/ghazi/admin/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.ghazi.admin; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_received_sms.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_call_log.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_insta_notifications.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_camera.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_email.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_contact.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_notification.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/ghazi/admin/Contact.java: -------------------------------------------------------------------------------- 1 | package com.example.ghazi.admin; 2 | 3 | /** 4 | * Created by ghazi on 13-Dec-17. 5 | */ 6 | 7 | public class Contact { 8 | private String name; 9 | private String phoneNumber; 10 | 11 | public Contact(String name, String phoneNumber) { 12 | this.name = name; 13 | this.phoneNumber = phoneNumber; 14 | } 15 | 16 | public Contact() { 17 | } 18 | 19 | public String getName() { 20 | return name; 21 | } 22 | 23 | public void setName(String name) { 24 | this.name = name; 25 | } 26 | 27 | public String getPhoneNumber() { 28 | return phoneNumber; 29 | } 30 | 31 | public void setPhoneNumber(String phoneNumber) { 32 | this.phoneNumber = phoneNumber; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |