├── .classpath ├── .project ├── AndroidManifest.xml ├── default.properties ├── gen └── org │ └── addhen │ └── whereami │ └── R.java ├── res ├── drawable │ └── icon.png ├── layout │ └── main.xml └── values │ └── strings.xml └── src └── org └── addhen └── whereami ├── LocationService.java ├── SMSReceiver.java ├── Whereami.java └── net └── ClientHttpRequest.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Whereami 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 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /default.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 use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-3 12 | -------------------------------------------------------------------------------- /gen/org/addhen/whereami/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 org.addhen.whereami; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class drawable { 14 | public static final int icon=0x7f020000; 15 | } 16 | public static final class id { 17 | public static final int save_btn=0x7f050003; 18 | public static final int spacer=0x7f050001; 19 | public static final int spacer2=0x7f050005; 20 | public static final int start_service=0x7f050004; 21 | public static final int stop_service=0x7f050006; 22 | public static final int title=0x7f050000; 23 | public static final int vcode=0x7f050002; 24 | } 25 | public static final class layout { 26 | public static final int main=0x7f030000; 27 | } 28 | public static final class string { 29 | public static final int app_name=0x7f040001; 30 | public static final int hello=0x7f040000; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjith/whereami/b12fdc8ed27fa5dcadd5f4c0b85557f52368001b/res/drawable/icon.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 11 | 16 | 17 | 23 | 24 | 27 | 28 | 31 | 32 | 35 | 36 | 41 | 42 |