├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── libraries │ ├── android_support_v4.xml │ ├── android_support_v41.xml │ ├── android_support_v42.xml │ └── dexedLibs.xml ├── compiler.xml ├── modules.xml ├── misc.xml └── uiDesigner.xml ├── android-bluetooth-client ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── encodings.xml │ ├── vcs.xml │ ├── libraries │ │ ├── android_support_v4.xml │ │ └── dexedLibs.xml │ ├── modules.xml │ ├── compiler.xml │ ├── misc.xml │ ├── uiDesigner.xml │ └── workspace.xml ├── target │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ ├── classes │ │ └── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ └── transapps │ │ │ └── g6-bluetooth-client │ │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── target │ │ │ └── classes │ │ │ │ └── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ └── transapps │ │ │ │ └── g6-bluetooth-client │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ ├── pom.properties │ │ │ ├── .project │ │ │ ├── .classpath │ │ │ └── pom.xml │ └── generated-sources │ │ ├── r │ │ └── transapps │ │ │ └── android_blutooth │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ │ └── generated-sources.iml ├── bin │ ├── classes.dex │ ├── resources.ap_ │ ├── BluetoothClient.apk │ ├── jarlist.cache │ ├── classes │ │ └── transapps │ │ │ ├── android_blutooth │ │ │ ├── R.class │ │ │ ├── Coord.class │ │ │ ├── R$id.class │ │ │ ├── Utils.class │ │ │ ├── Coord$1.class │ │ │ ├── NavTool.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$menu.class │ │ │ ├── AlertCard.class │ │ │ ├── ChatCard.class │ │ │ ├── Coordinate.class │ │ │ ├── GeoPoint$1.class │ │ │ ├── GeoPoint.class │ │ │ ├── NavTool$1.class │ │ │ ├── NavTool$2.class │ │ │ ├── R$drawable.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── AlertMessage.class │ │ │ ├── BuildConfig.class │ │ │ ├── ChatMessage.class │ │ │ ├── GeoConstants.class │ │ │ ├── BluetoothClient.class │ │ │ ├── LiveCardService.class │ │ │ ├── BluetoothClient$1.class │ │ │ ├── BluetoothClient$2.class │ │ │ ├── BluetoothClient$3.class │ │ │ ├── BluetoothClient$4.class │ │ │ ├── LiveCardService$LocalBinder.class │ │ │ ├── BluetoothClient$ConnectThread.class │ │ │ └── BluetoothClient$ConnectedThread.class │ │ │ └── conversion │ │ │ ├── AziDist.class │ │ │ ├── Magfield.class │ │ │ ├── MoreMath.class │ │ │ ├── ProjMath.class │ │ │ ├── UTMPoint.class │ │ │ ├── Ellipsoid.class │ │ │ ├── GreatCircle.class │ │ │ ├── LatLonPoint.class │ │ │ ├── MGRSPoint.class │ │ │ ├── ZonedUTMPoint.class │ │ │ └── Magfield$Model.class │ ├── dexedLibs │ │ ├── annotations-48dc123d124d84d968030f8d2e270d3c.jar │ │ └── android-support-v4-7b4210a4f7fe06bca567040e014ff8d1.jar │ └── AndroidManifest.xml ├── .settings │ └── org.eclipse.m2e.core.prefs ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── styles.xml │ │ ├── dimens.xml │ │ └── strings.xml │ ├── menu │ │ └── bluetooth.xml │ └── layout │ │ └── bluetooth_activity_layout.xml ├── gen │ └── transapps │ │ └── android_blutooth │ │ ├── Manifest.java │ │ ├── BuildConfig.java │ │ └── R.java ├── .classpath ├── project.properties ├── android-bluetooth-client.iml ├── proguard-project.txt ├── pom.xml.save ├── .project ├── AndroidManifest.xml └── src │ └── transapps │ └── android_blutooth │ └── BluetoothClient.java ├── android-bluetooth-host ├── res │ ├── values │ │ ├── styles.xml │ │ ├── dimens.xml │ │ └── strings.xml │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── menu │ │ └── main.xml │ └── layout │ │ └── activity_main.xml ├── ic_launcher-web.png ├── bin │ ├── jarlist.cache │ ├── classes │ │ └── transapps │ │ │ └── android_bluetooth_host │ │ │ ├── R.class │ │ │ ├── R$attr.class │ │ │ ├── R$id.class │ │ │ ├── R$menu.class │ │ │ ├── R$dimen.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── BuildConfig.class │ │ │ ├── R$drawable.class │ │ │ ├── BluetoothHost.class │ │ │ ├── ChatConstants.class │ │ │ ├── BluetoothHost$1.class │ │ │ ├── BluetoothHost$2.class │ │ │ ├── BluetoothHost$AcceptThread.class │ │ │ ├── BluetoothHost$ChatReceiver.class │ │ │ ├── BluetoothHost$HostBroadRec.class │ │ │ └── BluetoothHost$ConnectedThread.class │ └── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── gen │ └── transapps │ │ └── android_bluetooth_host │ │ ├── BuildConfig.java │ │ └── R.java ├── .classpath ├── project.properties ├── android-bluetooth-host.iml ├── proguard-project.txt ├── .project ├── AndroidManifest.xml └── src │ └── transapps │ └── android_bluetooth_host │ └── BluetoothHost.java ├── WifiDirectHost ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── values │ │ └── strings.xml │ └── layout │ │ └── main.xml ├── gen │ └── transapps │ │ └── wifi_direct_host │ │ ├── R.java │ │ ├── Manifest.java │ │ └── BuildConfig.java ├── local.properties ├── project.properties ├── ant.properties ├── WifiDirectHost.iml ├── proguard-project.txt ├── AndroidManifest.xml ├── build.xml └── src │ └── transapps │ └── wifi_direct_host │ └── WifiP2PHost.java ├── out └── production │ └── WifiDirectHost │ ├── WifiDirectHost.apk │ ├── WifiDirectHost.unaligned.apk │ └── transapps │ └── wifi_direct_host │ ├── R.class │ ├── R$id.class │ ├── R$attr.class │ ├── R$layout.class │ ├── R$string.class │ ├── BuildConfig.class │ ├── R$drawable.class │ ├── WifiP2PHost.class │ ├── WifiP2PHost$1.class │ ├── WifiP2PHost$2.class │ ├── WifiP2PHost$3.class │ ├── WifiP2PHost$4.class │ ├── WifiP2PHost$5.class │ ├── WifiP2PHost$6.class │ ├── WifiP2PHost$7.class │ ├── WifiP2PHost$8.class │ ├── WifiP2PHost$7$1.class │ └── WifiP2PHost$8$1.class └── README.md /.idea/.name: -------------------------------------------------------------------------------- 1 | GoogleGlassBlutooth -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/.name: -------------------------------------------------------------------------------- 1 | android-bluetooth-client -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes.dex -------------------------------------------------------------------------------- /android-bluetooth-client/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/resources.ap_ -------------------------------------------------------------------------------- /android-bluetooth-host/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/ic_launcher-web.png -------------------------------------------------------------------------------- /android-bluetooth-client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /android-bluetooth-client/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/ic_launcher-web.png -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /WifiDirectHost/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiDirectHost/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiDirectHost/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiDirectHost/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | WifiDirectHost 4 | 5 | -------------------------------------------------------------------------------- /android-bluetooth-client/bin/BluetoothClient.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/BluetoothClient.apk -------------------------------------------------------------------------------- /android-bluetooth-host/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /android-bluetooth-host/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/libs/android-support-v4.jar -------------------------------------------------------------------------------- /out/production/WifiDirectHost/WifiDirectHost.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/WifiDirectHost.apk -------------------------------------------------------------------------------- /android-bluetooth-client/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /android-bluetooth-client/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/libs/android-support-v4.jar -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Build-Jdk: 1.6.0_27 3 | Built-By: root 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /android-bluetooth-host/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-host/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-host/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-bluetooth-client/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-client/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-client/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-client/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /android-bluetooth-host/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /out/production/WifiDirectHost/WifiDirectHost.unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/WifiDirectHost.unaligned.apk -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R.class -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$id.class -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$attr.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/AziDist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/AziDist.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/Magfield.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/Magfield.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/MoreMath.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/MoreMath.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/ProjMath.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/ProjMath.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/UTMPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/UTMPoint.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$layout.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$string.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/Coord.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/Coord.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$id.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/Utils.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/Ellipsoid.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/Ellipsoid.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/GreatCircle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/GreatCircle.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/LatLonPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/LatLonPoint.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/MGRSPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/MGRSPoint.class -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/BuildConfig.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$drawable.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/Coord$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/Coord$1.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$attr.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$dimen.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$menu.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/ZonedUTMPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/ZonedUTMPoint.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$1.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$2.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$3.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$4.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$5.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$6.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$7.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$8.class -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/AlertCard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/AlertCard.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/ChatCard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/ChatCard.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/Coordinate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/Coordinate.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoPoint$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoPoint$1.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoPoint.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool$1.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/NavTool$2.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$drawable.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$layout.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/R$string.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/conversion/Magfield$Model.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/conversion/Magfield$Model.class -------------------------------------------------------------------------------- /android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/BuildConfig.java: -------------------------------------------------------------------------------- 1 | package transapps.android_blutooth; 2 | 3 | public final class BuildConfig { 4 | public static final boolean DEBUG = true; 5 | } 6 | -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$attr.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$id.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$menu.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$7$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$7$1.class -------------------------------------------------------------------------------- /out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$8$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$8$1.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/AlertMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/AlertMessage.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BuildConfig.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/ChatMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/ChatMessage.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoConstants.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$dimen.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$layout.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$string.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/LiveCardService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/LiveCardService.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BuildConfig.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$drawable.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$1.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$2.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$3.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$4.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/dexedLibs/annotations-48dc123d124d84d968030f8d2e270d3c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/dexedLibs/annotations-48dc123d124d84d968030f8d2e270d3c.jar -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Build-Jdk: 1.7.0_51 3 | Built-By: root 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/ChatConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/ChatConstants.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$1.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$2.class -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package transapps.wifi_direct_host; 4 | 5 | /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /android-bluetooth-client/bin/dexedLibs/android-support-v4-7b4210a4f7fe06bca567040e014ff8d1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/dexedLibs/android-support-v4-7b4210a4f7fe06bca567040e014ff8d1.jar -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/LiveCardService$LocalBinder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/LiveCardService$LocalBinder.class -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$ConnectThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$ConnectThread.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$AcceptThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$AcceptThread.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$ChatReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$ChatReceiver.class -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$HostBroadRec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$HostBroadRec.class -------------------------------------------------------------------------------- /android-bluetooth-host/gen/transapps/android_bluetooth_host/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package transapps.android_bluetooth_host; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$ConnectedThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/BluetoothClient$ConnectedThread.class -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | GoogleGlassBlutooth 2 | =================== 3 | 4 | A host app for android phones and client app for Google Glass allowing blutooth comms between the two devices. 5 | 6 | This is currently set up as an IntelliJ project. Will add git ignore for that in next push.. 7 | -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package transapps.wifi_direct_host; 4 | 5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$ConnectedThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$ConnectedThread.class -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /android-bluetooth-client/gen/transapps/android_blutooth/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package transapps.android_blutooth; 4 | 5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /android-bluetooth-host/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android-bluetooth-client/res/menu/bluetooth.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | android-blutooth 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | android-bluetooth-host 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/android_support_v41.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/android_support_v42.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package transapps.wifi_direct_host; 4 | 5 | /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = Boolean.parseBoolean(null); 8 | } -------------------------------------------------------------------------------- /android-bluetooth-client/gen/transapps/android_blutooth/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package transapps.android_blutooth; 4 | 5 | /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = Boolean.parseBoolean(null); 8 | } -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.6 6 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Wed Dec 04 15:44:44 EST 2013 3 | version=1.0.0-SNAPSHOT 4 | groupId=transapps 5 | m2e.projectName=BluetoothClient 6 | m2e.projectLocation=/home/transapps/hackathon-g6/android-bluetooth-client 7 | artifactId=g6-bluetooth-client 8 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/libraries/dexedLibs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/libraries/dexedLibs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Fri Feb 07 13:21:20 EST 2014 3 | version=1.0.0-SNAPSHOT 4 | groupId=transapps 5 | m2e.projectName=g6-bluetooth-client 6 | m2e.projectLocation=/home/transapps/hackathon-g6/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client 7 | artifactId=g6-bluetooth-client 8 | -------------------------------------------------------------------------------- /WifiDirectHost/local.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 *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/home/transapps/Desktop/android-sdk-linux 11 | -------------------------------------------------------------------------------- /android-bluetooth-client/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android-bluetooth-host/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/generated-sources/generated-sources.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | /home/transapps/hackathon-g6/android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/R.java 2 | /home/transapps/hackathon-g6/android-bluetooth-client/src/transapps/android_blutooth/Utils.java 3 | /home/transapps/hackathon-g6/android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/BuildConfig.java 4 | /home/transapps/hackathon-g6/android-bluetooth-client/src/transapps/android_blutooth/BluetoothClient.java 5 | /home/transapps/hackathon-g6/android-bluetooth-client/src/transapps/android_blutooth/NavTool.java 6 | -------------------------------------------------------------------------------- /android-bluetooth-host/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 | -------------------------------------------------------------------------------- /WifiDirectHost/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=Google Inc.:Glass Development Kit Sneak Peek:15 15 | -------------------------------------------------------------------------------- /android-bluetooth-client/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=Google Inc.:Glass Development Kit Sneak Peek:15 15 | -------------------------------------------------------------------------------- /android-bluetooth-client/android-bluetooth-client.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /android-bluetooth-client/res/layout/bluetooth_activity_layout.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /WifiDirectHost/ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked into Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | -------------------------------------------------------------------------------- /WifiDirectHost/WifiDirectHost.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /android-bluetooth-host/android-bluetooth-host.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WifiDirectHost/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 | -------------------------------------------------------------------------------- /android-bluetooth-client/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 | -------------------------------------------------------------------------------- /android-bluetooth-host/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 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android-bluetooth-host/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | BluetoothHost 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 | -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Android API 17 Platform 14 | 15 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android-bluetooth-host/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /WifiDirectHost/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 14 | 15 |