├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── libraries │ ├── android_support_v4.xml │ ├── android_support_v41.xml │ ├── android_support_v42.xml │ └── dexedLibs.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── README.md ├── WifiDirectHost ├── AndroidManifest.xml ├── WifiDirectHost.iml ├── ant.properties ├── build.xml ├── gen │ └── transapps │ │ └── wifi_direct_host │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java ├── local.properties ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── transapps │ └── wifi_direct_host │ └── WifiP2PHost.java ├── android-bluetooth-client ├── .classpath ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── libraries │ │ ├── android_support_v4.xml │ │ └── dexedLibs.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml ├── .project ├── .settings │ └── org.eclipse.m2e.core.prefs ├── AndroidManifest.xml ├── android-bluetooth-client.iml ├── bin │ ├── AndroidManifest.xml │ ├── BluetoothClient.apk │ ├── classes.dex │ ├── classes │ │ └── transapps │ │ │ ├── android_blutooth │ │ │ ├── AlertCard.class │ │ │ ├── AlertMessage.class │ │ │ ├── BluetoothClient$1.class │ │ │ ├── BluetoothClient$2.class │ │ │ ├── BluetoothClient$3.class │ │ │ ├── BluetoothClient$4.class │ │ │ ├── BluetoothClient$ConnectThread.class │ │ │ ├── BluetoothClient$ConnectedThread.class │ │ │ ├── BluetoothClient.class │ │ │ ├── BuildConfig.class │ │ │ ├── ChatCard.class │ │ │ ├── ChatMessage.class │ │ │ ├── Coord$1.class │ │ │ ├── Coord.class │ │ │ ├── Coordinate.class │ │ │ ├── GeoConstants.class │ │ │ ├── GeoPoint$1.class │ │ │ ├── GeoPoint.class │ │ │ ├── LiveCardService$LocalBinder.class │ │ │ ├── LiveCardService.class │ │ │ ├── NavTool$1.class │ │ │ ├── NavTool$2.class │ │ │ ├── NavTool.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R.class │ │ │ └── Utils.class │ │ │ └── conversion │ │ │ ├── AziDist.class │ │ │ ├── Ellipsoid.class │ │ │ ├── GreatCircle.class │ │ │ ├── LatLonPoint.class │ │ │ ├── MGRSPoint.class │ │ │ ├── Magfield$Model.class │ │ │ ├── Magfield.class │ │ │ ├── MoreMath.class │ │ │ ├── ProjMath.class │ │ │ ├── UTMPoint.class │ │ │ └── ZonedUTMPoint.class │ ├── dexedLibs │ │ ├── android-support-v4-7b4210a4f7fe06bca567040e014ff8d1.jar │ │ └── annotations-48dc123d124d84d968030f8d2e270d3c.jar │ ├── jarlist.cache │ └── resources.ap_ ├── gen │ └── transapps │ │ └── android_blutooth │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── pom.xml.save ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── bluetooth_activity_layout.xml │ ├── menu │ │ └── bluetooth.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── src │ └── transapps │ │ └── android_blutooth │ │ └── BluetoothClient.java └── target │ ├── classes │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── transapps │ │ └── g6-bluetooth-client │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.properties │ │ ├── pom.xml │ │ └── target │ │ └── classes │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── transapps │ │ └── g6-bluetooth-client │ │ ├── pom.properties │ │ └── pom.xml │ ├── generated-sources │ ├── generated-sources.iml │ └── r │ │ └── transapps │ │ └── android_blutooth │ │ ├── BuildConfig.java │ │ └── R.java │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── android-bluetooth-host ├── .classpath ├── .project ├── AndroidManifest.xml ├── android-bluetooth-host.iml ├── bin │ ├── AndroidManifest.xml │ ├── classes │ │ └── transapps │ │ │ └── android_bluetooth_host │ │ │ ├── BluetoothHost$1.class │ │ │ ├── BluetoothHost$2.class │ │ │ ├── BluetoothHost$AcceptThread.class │ │ │ ├── BluetoothHost$ChatReceiver.class │ │ │ ├── BluetoothHost$ConnectedThread.class │ │ │ ├── BluetoothHost$HostBroadRec.class │ │ │ ├── BluetoothHost.class │ │ │ ├── BuildConfig.class │ │ │ ├── ChatConstants.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ └── R.class │ └── jarlist.cache ├── gen │ └── transapps │ │ └── android_bluetooth_host │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── transapps │ └── android_bluetooth_host │ └── BluetoothHost.java └── out └── production └── WifiDirectHost ├── WifiDirectHost.apk ├── WifiDirectHost.unaligned.apk └── transapps └── wifi_direct_host ├── BuildConfig.class ├── R$attr.class ├── R$drawable.class ├── R$id.class ├── R$layout.class ├── R$string.class ├── R.class ├── WifiP2PHost$1.class ├── WifiP2PHost$2.class ├── WifiP2PHost$3.class ├── WifiP2PHost$4.class ├── WifiP2PHost$5.class ├── WifiP2PHost$6.class ├── WifiP2PHost$7$1.class ├── WifiP2PHost$7.class ├── WifiP2PHost$8$1.class ├── WifiP2PHost$8.class └── WifiP2PHost.class /.idea/.name: -------------------------------------------------------------------------------- 1 | GoogleGlassBlutooth -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/libraries/android_support_v4.xml -------------------------------------------------------------------------------- /.idea/libraries/android_support_v41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/libraries/android_support_v41.xml -------------------------------------------------------------------------------- /.idea/libraries/android_support_v42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/libraries/android_support_v42.xml -------------------------------------------------------------------------------- /.idea/libraries/dexedLibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/libraries/dexedLibs.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/README.md -------------------------------------------------------------------------------- /WifiDirectHost/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/AndroidManifest.xml -------------------------------------------------------------------------------- /WifiDirectHost/WifiDirectHost.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/WifiDirectHost.iml -------------------------------------------------------------------------------- /WifiDirectHost/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/ant.properties -------------------------------------------------------------------------------- /WifiDirectHost/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/build.xml -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/gen/transapps/wifi_direct_host/BuildConfig.java -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/gen/transapps/wifi_direct_host/Manifest.java -------------------------------------------------------------------------------- /WifiDirectHost/gen/transapps/wifi_direct_host/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/gen/transapps/wifi_direct_host/R.java -------------------------------------------------------------------------------- /WifiDirectHost/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/local.properties -------------------------------------------------------------------------------- /WifiDirectHost/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/proguard-project.txt -------------------------------------------------------------------------------- /WifiDirectHost/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/project.properties -------------------------------------------------------------------------------- /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/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/res/layout/main.xml -------------------------------------------------------------------------------- /WifiDirectHost/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/res/values/strings.xml -------------------------------------------------------------------------------- /WifiDirectHost/src/transapps/wifi_direct_host/WifiP2PHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/WifiDirectHost/src/transapps/wifi_direct_host/WifiP2PHost.java -------------------------------------------------------------------------------- /android-bluetooth-client/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.classpath -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/.name: -------------------------------------------------------------------------------- 1 | android-bluetooth-client -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/compiler.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/encodings.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/libraries/android_support_v4.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/libraries/dexedLibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/libraries/dexedLibs.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/misc.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/modules.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/vcs.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.idea/workspace.xml -------------------------------------------------------------------------------- /android-bluetooth-client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.project -------------------------------------------------------------------------------- /android-bluetooth-client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /android-bluetooth-client/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/AndroidManifest.xml -------------------------------------------------------------------------------- /android-bluetooth-client/android-bluetooth-client.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/android-bluetooth-client.iml -------------------------------------------------------------------------------- /android-bluetooth-client/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /android-bluetooth-client/bin/BluetoothClient.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/BluetoothClient.apk -------------------------------------------------------------------------------- /android-bluetooth-client/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes.dex -------------------------------------------------------------------------------- /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/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/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/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-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/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/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/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/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/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/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/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/GeoConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/GeoConstants.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/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/LiveCardService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/classes/transapps/android_blutooth/LiveCardService.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/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$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$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/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$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/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/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/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/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/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/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/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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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/dexedLibs/annotations-48dc123d124d84d968030f8d2e270d3c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/dexedLibs/annotations-48dc123d124d84d968030f8d2e270d3c.jar -------------------------------------------------------------------------------- /android-bluetooth-client/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/jarlist.cache -------------------------------------------------------------------------------- /android-bluetooth-client/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/bin/resources.ap_ -------------------------------------------------------------------------------- /android-bluetooth-client/gen/transapps/android_blutooth/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/gen/transapps/android_blutooth/BuildConfig.java -------------------------------------------------------------------------------- /android-bluetooth-client/gen/transapps/android_blutooth/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/gen/transapps/android_blutooth/Manifest.java -------------------------------------------------------------------------------- /android-bluetooth-client/gen/transapps/android_blutooth/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/gen/transapps/android_blutooth/R.java -------------------------------------------------------------------------------- /android-bluetooth-client/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/ic_launcher-web.png -------------------------------------------------------------------------------- /android-bluetooth-client/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android-bluetooth-client/pom.xml.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/pom.xml.save -------------------------------------------------------------------------------- /android-bluetooth-client/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/proguard-project.txt -------------------------------------------------------------------------------- /android-bluetooth-client/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/project.properties -------------------------------------------------------------------------------- /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/res/layout/bluetooth_activity_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/layout/bluetooth_activity_layout.xml -------------------------------------------------------------------------------- /android-bluetooth-client/res/menu/bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/menu/bluetooth.xml -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/values/dimens.xml -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/values/strings.xml -------------------------------------------------------------------------------- /android-bluetooth-client/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/res/values/styles.xml -------------------------------------------------------------------------------- /android-bluetooth-client/src/transapps/android_blutooth/BluetoothClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/src/transapps/android_blutooth/BluetoothClient.java -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.classpath -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.project -------------------------------------------------------------------------------- /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-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.xml -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.properties -------------------------------------------------------------------------------- /android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/target/classes/META-INF/maven/transapps/g6-bluetooth-client/pom.xml -------------------------------------------------------------------------------- /android-bluetooth-client/target/generated-sources/generated-sources.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/generated-sources/generated-sources.iml -------------------------------------------------------------------------------- /android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/BuildConfig.java -------------------------------------------------------------------------------- /android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/generated-sources/r/transapps/android_blutooth/R.java -------------------------------------------------------------------------------- /android-bluetooth-client/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android-bluetooth-client/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-client/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /android-bluetooth-host/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/.classpath -------------------------------------------------------------------------------- /android-bluetooth-host/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/.project -------------------------------------------------------------------------------- /android-bluetooth-host/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/AndroidManifest.xml -------------------------------------------------------------------------------- /android-bluetooth-host/android-bluetooth-host.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/android-bluetooth-host.iml -------------------------------------------------------------------------------- /android-bluetooth-host/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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$ConnectedThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/BluetoothHost$ConnectedThread.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/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/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/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/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$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$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$drawable.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$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$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/classes/transapps/android_bluetooth_host/R$menu.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-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 -------------------------------------------------------------------------------- /android-bluetooth-host/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/bin/jarlist.cache -------------------------------------------------------------------------------- /android-bluetooth-host/gen/transapps/android_bluetooth_host/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/gen/transapps/android_bluetooth_host/BuildConfig.java -------------------------------------------------------------------------------- /android-bluetooth-host/gen/transapps/android_bluetooth_host/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/gen/transapps/android_bluetooth_host/R.java -------------------------------------------------------------------------------- /android-bluetooth-host/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/ic_launcher-web.png -------------------------------------------------------------------------------- /android-bluetooth-host/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android-bluetooth-host/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/proguard-project.txt -------------------------------------------------------------------------------- /android-bluetooth-host/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/project.properties -------------------------------------------------------------------------------- /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-host/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-bluetooth-host/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android-bluetooth-host/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/menu/main.xml -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/values/dimens.xml -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/values/strings.xml -------------------------------------------------------------------------------- /android-bluetooth-host/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/res/values/styles.xml -------------------------------------------------------------------------------- /android-bluetooth-host/src/transapps/android_bluetooth_host/BluetoothHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/android-bluetooth-host/src/transapps/android_bluetooth_host/BluetoothHost.java -------------------------------------------------------------------------------- /out/production/WifiDirectHost/WifiDirectHost.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/WifiDirectHost.apk -------------------------------------------------------------------------------- /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/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$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$attr.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/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/R$id.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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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$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$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$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanielWaggoner/GoogleGlassBlutooth/HEAD/out/production/WifiDirectHost/transapps/wifi_direct_host/WifiP2PHost$8$1.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 -------------------------------------------------------------------------------- /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 --------------------------------------------------------------------------------