├── libs ├── gcm.jar ├── httpcore-4.3.3.jar ├── httpmime-4.3.6.jar ├── httpclient-4.3.6.jar ├── android-support-v4.jar └── apache-mime4j-core-0.7.2.jar ├── bin ├── classes.dex ├── resources.ap_ ├── Monitordroid.apk ├── classes │ └── com │ │ ├── monitordroid │ │ └── app │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$attr.class │ │ │ ├── R$menu.class │ │ │ ├── R$xml.class │ │ │ ├── Volume.class │ │ │ ├── Manifest.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── Telephone.class │ │ │ ├── AudioPlayer.class │ │ │ ├── BuildConfig.class │ │ │ ├── DeviceAdmin.class │ │ │ ├── Flashlight.class │ │ │ ├── R$drawable.class │ │ │ ├── R$styleable.class │ │ │ ├── UploadFile.class │ │ │ ├── AudioPlayer$1.class │ │ │ ├── BootReceiver.class │ │ │ ├── CallLogGetter.class │ │ │ ├── ContactObject.class │ │ │ ├── FileUtilities.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$2.class │ │ │ ├── MainActivity.class │ │ │ ├── MessageAction.class │ │ │ ├── SMSUtilities.class │ │ │ ├── SoundRecorder.class │ │ │ ├── WebpageOpener.class │ │ │ ├── CommonUtilities.class │ │ │ ├── ContactsFetcher.class │ │ │ ├── GCMIntentService.class │ │ │ ├── LocationService.class │ │ │ ├── RegisterActivity.class │ │ │ ├── SendNotification.class │ │ │ ├── ServerUtilities.class │ │ │ ├── AlertDialogManager.class │ │ │ ├── ConnectionDetector.class │ │ │ ├── DeviceInformation.class │ │ │ ├── GCMHeartbeatAlarm.class │ │ │ ├── GetBrowserHistory.class │ │ │ ├── Manifest$permission.class │ │ │ ├── RegisterActivity$1.class │ │ │ ├── RegisterActivity$2.class │ │ │ ├── AlertDialogManager$1.class │ │ │ ├── InstalledAppsFetcher.class │ │ │ ├── SMSUtilities$MyAsyncTask.class │ │ │ ├── UploadFile$MyAsyncTask.class │ │ │ ├── CallLogGetter$MyAsyncTask.class │ │ │ ├── FileUtilities$MyAsyncTask.class │ │ │ ├── SoundRecorder$MyAsyncTask.class │ │ │ ├── ContactsFetcher$MyAsyncTask.class │ │ │ ├── DeviceInformation$MyAsyncTask.class │ │ │ ├── GetBrowserHistory$MyAsyncTask.class │ │ │ ├── LocationService$MyAsyncTask.class │ │ │ └── InstalledAppsFetcher$MyAsyncTask.class │ │ └── google │ │ └── android │ │ └── gms │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$color.class │ │ ├── R$style.class │ │ ├── R$integer.class │ │ ├── R$string.class │ │ ├── R$drawable.class │ │ └── R$styleable.class ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── newlogo2.png │ │ └── notification_icon.png │ │ ├── drawable-mdpi │ │ ├── newlogo2.png │ │ └── notification_icon.png │ │ ├── drawable-xhdpi │ │ └── newlogo2.png │ │ └── drawable-xxhdpi │ │ ├── newlogo2.png │ │ └── notification_icon.png ├── jarlist.cache ├── dexedLibs │ ├── gcm-2d66078dca4286b76c17d4f4414cc87f.jar │ ├── httpcore-4.3.3-2e737fd43fe53a608dc6d2795937448a.jar │ ├── httpmime-4.3.6-bd7615789073fef68f59496953f45bb3.jar │ ├── httpclient-4.3.6-011ac456dad81afde3b7981bab230ea1.jar │ ├── android-support-v4-3c521ca09da189a3aade50fe93762a74.jar │ ├── google-play-services-dcddfb676741990ec2dc0b33b35abd6a.jar │ ├── apache-mime4j-core-0.7.2-aefa4df7efd0a12f1589c925f2983ecc.jar │ └── google-play-services_lib-acc6f2a316df6fb304eed9781de67e0c.jar ├── AndroidManifest.xml └── R.txt ├── newlogo2-web.png ├── notification_icon-web.png ├── README.md ├── res ├── drawable-hdpi │ ├── newlogo2.png │ └── notification_icon.png ├── drawable-mdpi │ ├── newlogo2.png │ └── notification_icon.png ├── drawable-xhdpi │ └── newlogo2.png ├── drawable-xxhdpi │ ├── newlogo2.png │ └── notification_icon.png ├── values │ ├── styles.xml │ ├── dimens.xml │ └── strings.xml ├── values-large │ └── dimens.xml ├── menu │ ├── activity_main.xml │ └── options_menu.xml ├── xml │ └── device_admin.xml └── layout │ ├── activity_main.xml │ └── activity_register.xml ├── lint.xml ├── gen └── com │ ├── monitordroid │ └── app │ │ ├── BuildConfig.java │ │ └── Manifest.java │ └── google │ └── android │ └── gms │ └── R.java ├── .gitattributes ├── .gitignore ├── project.properties ├── .settings └── org.eclipse.jdt.core.prefs ├── .project ├── src └── com │ └── monitordroid │ └── app │ ├── WebpageOpener.java │ ├── BootReceiver.java │ ├── Telephone.java │ ├── ContactObject.java │ ├── ConnectionDetector.java │ ├── AlertDialogManager.java │ ├── Flashlight.java │ ├── GCMHeartbeatAlarm.java │ ├── SendNotification.java │ ├── GCMIntentService.java │ ├── Volume.java │ ├── AudioPlayer.java │ ├── CommonUtilities.java │ ├── InstalledAppsFetcher.java │ ├── UploadFile.java │ ├── DeviceAdmin.java │ ├── SoundRecorder.java │ ├── CallLogGetter.java │ ├── MainActivity.java │ ├── RegisterActivity.java │ ├── ContactsFetcher.java │ ├── GetBrowserHistory.java │ ├── ServerUtilities.java │ ├── LocationService.java │ ├── FileUtilities.java │ ├── SMSUtilities.java │ ├── DeviceInformation.java │ └── MessageAction.java ├── .classpath ├── proguard-project.txt └── AndroidManifest.xml /libs/gcm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/gcm.jar -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /newlogo2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/newlogo2-web.png -------------------------------------------------------------------------------- /bin/Monitordroid.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/bin/Monitordroid.apk -------------------------------------------------------------------------------- /libs/httpcore-4.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/httpcore-4.3.3.jar -------------------------------------------------------------------------------- /libs/httpmime-4.3.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/httpmime-4.3.6.jar -------------------------------------------------------------------------------- /libs/httpclient-4.3.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/httpclient-4.3.6.jar -------------------------------------------------------------------------------- /notification_icon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/notification_icon-web.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This was a college project that I enjoyed working on with some friends. Don't judge too harshly :) 2 | -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/newlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/res/drawable-hdpi/newlogo2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/newlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/res/drawable-mdpi/newlogo2.png -------------------------------------------------------------------------------- /libs/apache-mime4j-core-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/libs/apache-mime4j-core-0.7.2.jar -------------------------------------------------------------------------------- /res/drawable-xhdpi/newlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/res/drawable-xhdpi/newlogo2.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/newlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler124/Monitordroid/HEAD/res/drawable-xxhdpi/newlogo2.png -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |