├── Gps Co-ordinat2 ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── Gps Co-ordinat.apk │ ├── Gps Co-ordinat2.apk │ ├── Gps.apk │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── kamrul │ │ │ └── gps │ │ │ ├── BuildConfig.class │ │ │ ├── Delinfo.class │ │ │ ├── Info.class │ │ │ ├── Mail.class │ │ │ ├── Mail_info.class │ │ │ ├── Mail_l$1.class │ │ │ ├── Mail_l$2.class │ │ │ ├── Mail_l.class │ │ │ ├── Main$1.class │ │ │ ├── Main$2.class │ │ │ ├── Main.class │ │ │ ├── Mserv$1.class │ │ │ ├── Mserv.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── SMSReceiver$1.class │ │ │ ├── SMSReceiver.class │ │ │ ├── Second$1.class │ │ │ ├── Second$2.class │ │ │ ├── Second$3.class │ │ │ ├── Second$4.class │ │ │ ├── Second$5.class │ │ │ ├── Second.class │ │ │ └── StartupBroadcastReceiver.class │ ├── dexedLibs │ │ ├── activation-abb88b910dbc3b2522db461238f1bb2d.jar │ │ ├── additionnal-a9db6e8390a03b1a443dc71ca15ca01e.jar │ │ ├── android-support-v4-09153a17e3bebba81fbfe9603922b95c.jar │ │ ├── android-support-v4-1fc1e1294085220003007da38f0c44f2.jar │ │ ├── android-support-v4-ec10c86f5de09cebeb9111b04467d8e8.jar │ │ └── mail-02a45233f63432ac1f45c92a542c6aa2.jar │ ├── jarlist.cache │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── kamrul │ │ └── gps │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── activation.jar │ ├── additionnal.jar │ ├── android-support-v4.jar │ └── mail.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout-land │ │ ├── mail_l.xml │ │ └── second.xml │ ├── layout │ │ ├── delinfo.xml │ │ ├── info.xml │ │ ├── mail_info.xml │ │ ├── mail_l.xml │ │ ├── main.xml │ │ └── second.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── kamrul │ └── gps │ ├── Delinfo.java │ ├── Info.java │ ├── Mail.java │ ├── Mail_info.java │ ├── Mail_l.java │ ├── Main.java │ ├── Mserv.java │ ├── SMSReceiver.java │ ├── Second.java │ └── StartupBroadcastReceiver.java └── Project Application APK to Install ├── Remote Phone Controller.apk └── final.apk /Gps Co-ordinat2/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Gps Co-ordinat2 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/Gps Co-ordinat.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/Gps Co-ordinat.apk -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/Gps Co-ordinat2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/Gps Co-ordinat2.apk -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/Gps.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/Gps.apk -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes.dex -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/BuildConfig.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Delinfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Delinfo.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Info.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_info.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l$1.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l$2.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mail_l.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main$1.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main$2.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Main.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mserv$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mserv$1.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mserv.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Mserv.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$attr.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$dimen.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$drawable.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$id.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$layout.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$menu.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$string.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R$style.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/R.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/SMSReceiver$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/SMSReceiver$1.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/SMSReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/SMSReceiver.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$1.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$2.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$3.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$4.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second$5.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/Second.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/classes/com/kamrul/gps/StartupBroadcastReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/classes/com/kamrul/gps/StartupBroadcastReceiver.class -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/activation-abb88b910dbc3b2522db461238f1bb2d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/activation-abb88b910dbc3b2522db461238f1bb2d.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/additionnal-a9db6e8390a03b1a443dc71ca15ca01e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/additionnal-a9db6e8390a03b1a443dc71ca15ca01e.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/android-support-v4-09153a17e3bebba81fbfe9603922b95c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/android-support-v4-09153a17e3bebba81fbfe9603922b95c.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/android-support-v4-1fc1e1294085220003007da38f0c44f2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/android-support-v4-1fc1e1294085220003007da38f0c44f2.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/android-support-v4-ec10c86f5de09cebeb9111b04467d8e8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/android-support-v4-ec10c86f5de09cebeb9111b04467d8e8.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/dexedLibs/mail-02a45233f63432ac1f45c92a542c6aa2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/dexedLibs/mail-02a45233f63432ac1f45c92a542c6aa2.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependecy. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/bin/resources.ap_ -------------------------------------------------------------------------------- /Gps Co-ordinat2/gen/com/kamrul/gps/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.kamrul.gps; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Gps Co-ordinat2/gen/com/kamrul/gps/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.kamrul.gps; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | /** Default screen margins, per the Android Design guidelines. 15 | 16 | Customize dimensions originally defined in res/values/dimens.xml (such as 17 | screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. 18 | 19 | */ 20 | public static final int activity_horizontal_margin=0x7f040000; 21 | public static final int activity_vertical_margin=0x7f040001; 22 | } 23 | public static final class drawable { 24 | public static final int ic_launcher=0x7f020000; 25 | } 26 | public static final class id { 27 | public static final int Button01=0x7f080010; 28 | public static final int Button02=0x7f08000f; 29 | public static final int RelativeLayout1=0x7f08000b; 30 | public static final int ScrollView1=0x7f080001; 31 | public static final int TextView01=0x7f080011; 32 | public static final int action_settings=0x7f080012; 33 | public static final int button1=0x7f080008; 34 | public static final int button2=0x7f080007; 35 | public static final int button3=0x7f08000d; 36 | public static final int button4=0x7f08000c; 37 | public static final int button5=0x7f08000e; 38 | public static final int editText1=0x7f080002; 39 | public static final int editText2=0x7f080004; 40 | public static final int editText3=0x7f080009; 41 | public static final int textView1=0x7f080000; 42 | public static final int textView2=0x7f080003; 43 | public static final int textView3=0x7f080005; 44 | public static final int textView4=0x7f080006; 45 | public static final int textView5=0x7f08000a; 46 | } 47 | public static final class layout { 48 | public static final int delinfo=0x7f030000; 49 | public static final int info=0x7f030001; 50 | public static final int mail_info=0x7f030002; 51 | public static final int mail_l=0x7f030003; 52 | public static final int main=0x7f030004; 53 | public static final int second=0x7f030005; 54 | } 55 | public static final class menu { 56 | public static final int main=0x7f070000; 57 | } 58 | public static final class string { 59 | public static final int action_settings=0x7f050001; 60 | public static final int app_name=0x7f050000; 61 | public static final int button1=0x7f050005; 62 | public static final int button2=0x7f050006; 63 | public static final int button3=0x7f050009; 64 | public static final int hello_world=0x7f050002; 65 | public static final int latitude=0x7f050003; 66 | public static final int longitude=0x7f050004; 67 | public static final int medium_text=0x7f050007; 68 | public static final int medium_text2=0x7f050008; 69 | public static final int textview3=0x7f05000a; 70 | } 71 | public static final class style { 72 | /** 73 | Base application theme, dependent on API level. This theme is replaced 74 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 75 | 76 | 77 | Theme customizations available in newer API levels can go in 78 | res/values-vXX/styles.xml, while customizations related to 79 | backward-compatibility can go here. 80 | 81 | 82 | Base application theme for API 11+. This theme completely replaces 83 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 84 | 85 | API 11 theme customizations can go here. 86 | 87 | Base application theme for API 14+. This theme completely replaces 88 | AppBaseTheme from BOTH res/values/styles.xml and 89 | res/values-v11/styles.xml on API 14+ devices. 90 | 91 | API 14 theme customizations can go here. 92 | */ 93 | public static final int AppBaseTheme=0x7f060000; 94 | /** Application theme. 95 | All customizations that are NOT specific to a particular API-level can go here. 96 | */ 97 | public static final int AppTheme=0x7f060001; 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/ic_launcher-web.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/libs/activation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/libs/activation.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/libs/additionnal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/libs/additionnal.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/libs/mail.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/libs/mail.jar -------------------------------------------------------------------------------- /Gps Co-ordinat2/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakibmahmud/Track-Retrieve-Data-and-Phone/f05ec3f2ed21f7da6e6de4187c54e703cf0f83d9/Gps Co-ordinat2/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gps Co-ordinat2/res/layout-land/mail_l.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 18 | 19 | 26 | 27 | 35 | 36 | 45 | 46 | 54 | 55 | 62 | 63 |