实例介绍
Android智能穿戴设备开发从入门到精通光盘,讲述android传感器技术,其中对蓝牙讲述精彩,还有心率表的功能.
【实例截图】
【核心代码】
16359647401706983173.rar
├── Android智能穿戴设备开发从入门到精通
│ ├── 11
│ │ ├── Activity01
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── lan
│ │ │ │ │ ├── Activity01.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── ClientSocketActivity$1.class
│ │ │ │ │ ├── ClientSocketActivity.class
│ │ │ │ │ ├── DiscoveryActivity$1.class
│ │ │ │ │ ├── DiscoveryActivity$2.class
│ │ │ │ │ ├── DiscoveryActivity$3.class
│ │ │ │ │ ├── DiscoveryActivity$4.class
│ │ │ │ │ ├── DiscoveryActivity$5.class
│ │ │ │ │ ├── DiscoveryActivity.class
│ │ │ │ │ ├── OBEXActivity$1$1.class
│ │ │ │ │ ├── OBEXActivity$1.class
│ │ │ │ │ ├── OBEXActivity$2.class
│ │ │ │ │ ├── OBEXActivity$3.class
│ │ │ │ │ ├── OBEXActivity.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── SamplesUtils$1$1.class
│ │ │ │ │ ├── SamplesUtils$1.class
│ │ │ │ │ ├── SamplesUtils.class
│ │ │ │ │ ├── ServerSocketActivity$1.class
│ │ │ │ │ ├── ServerSocketActivity$2.class
│ │ │ │ │ ├── ServerSocketActivity$3.class
│ │ │ │ │ ├── ServerSocketActivity$4.class
│ │ │ │ │ └── ServerSocketActivity.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── dexedLibs
│ │ │ │ ├── lan.apk
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── resources.ap_
│ │ │ ├── classes
│ │ │ │ └── example
│ │ │ │ └── bluetooth
│ │ │ │ └── demo
│ │ │ │ ├── BTImageClient.class
│ │ │ │ ├── BTImageServer$ClientProcessor.class
│ │ │ │ ├── BTImageServer.class
│ │ │ │ ├── DemoMIDlet.class
│ │ │ │ ├── GUIImageClient.class
│ │ │ │ └── GUIImageServer.class
│ │ │ ├── docs
│ │ │ │ ├── allclasses-frame.html
│ │ │ │ ├── allclasses-noframe.html
│ │ │ │ ├── constant-values.html
│ │ │ │ ├── deprecated-list.html
│ │ │ │ ├── example
│ │ │ │ │ └── bluetooth
│ │ │ │ │ └── demo
│ │ │ │ │ ├── BTImageClient.html
│ │ │ │ │ ├── BTImageServer.html
│ │ │ │ │ ├── DemoMIDlet.html
│ │ │ │ │ ├── GUIImageClient.html
│ │ │ │ │ ├── GUIImageServer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ └── package-tree.html
│ │ │ │ ├── index.html
│ │ │ │ ├── overview-tree.html
│ │ │ │ ├── package-list
│ │ │ │ ├── resources
│ │ │ │ │ └── inherit.gif
│ │ │ │ └── stylesheet.css
│ │ │ ├── gen
│ │ │ │ └── com
│ │ │ │ └── lan
│ │ │ │ ├── BuildConfig.java
│ │ │ │ └── R.java
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── client_socket.xml
│ │ │ │ │ ├── discovery.xml
│ │ │ │ │ ├── main.xml
│ │ │ │ │ ├── obex_server_socket.xml
│ │ │ │ │ └── server_socket.xml
│ │ │ │ └── values
│ │ │ │ ├── colors.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── src
│ │ │ │ └── com
│ │ │ │ └── lan
│ │ │ │ ├── Activity01.java
│ │ │ │ ├── ClientSocketActivity.java
│ │ │ │ ├── DiscoveryActivity.java
│ │ │ │ ├── OBEXActivity.java
│ │ │ │ ├── SamplesUtils.java
│ │ │ │ └── ServerSocketActivity.java
│ │ │ └── tmpclasses
│ │ │ └── example
│ │ │ └── bluetooth
│ │ │ └── demo
│ │ │ ├── BTImageClient.class
│ │ │ ├── BTImageServer$ClientProcessor.class
│ │ │ ├── BTImageServer.class
│ │ │ ├── DemoMIDlet.class
│ │ │ ├── GUIImageClient.class
│ │ │ └── GUIImageServer.class
│ │ └── lanya
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── classes.dex
│ │ │ ├── com
│ │ │ │ └── lanya
│ │ │ │ ├── lanya$1.class
│ │ │ │ ├── lanya$2.class
│ │ │ │ ├── lanya$3.class
│ │ │ │ ├── lanya$4.class
│ │ │ │ ├── lanya$5.class
│ │ │ │ ├── lanya.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ └── R.class
│ │ │ ├── lanya.apk
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── com
│ │ │ └── lanya
│ │ │ └── R.java
│ │ ├── proguard.cfg
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── com
│ │ └── lanya
│ │ └── lanya.java
│ ├── 12
│ │ └── tongxun
│ │ └── Bluetooth
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── Bluetooth.apk
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ ├── bluetooth
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── ClientActivity$1.class
│ │ │ │ │ ├── ClientActivity$2.class
│ │ │ │ │ ├── ClientActivity$3.class
│ │ │ │ │ ├── ClientActivity$4.class
│ │ │ │ │ ├── ClientActivity.class
│ │ │ │ │ ├── MainActivity$ButtonClickListener.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── ServerActivity$1.class
│ │ │ │ │ ├── ServerActivity$2.class
│ │ │ │ │ └── ServerActivity.class
│ │ │ │ └── bluetoothUtil
│ │ │ │ ├── BluetoothClientConnThread.class
│ │ │ │ ├── BluetoothClientService$1.class
│ │ │ │ ├── BluetoothClientService$2.class
│ │ │ │ ├── BluetoothClientService$3.class
│ │ │ │ ├── BluetoothClientService.class
│ │ │ │ ├── BluetoothCommunThread.class
│ │ │ │ ├── BluetoothServerConnThread.class
│ │ │ │ ├── BluetoothServerService$1.class
│ │ │ │ ├── BluetoothServerService$2.class
│ │ │ │ ├── BluetoothServerService.class
│ │ │ │ ├── BluetoothTools.class
│ │ │ │ └── TransmitBean.class
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ └── resources.ap_
│ │ ├── gen
│ │ │ └── com
│ │ │ └── bluetooth
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── proguard.cfg
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ ├── client.xml
│ │ │ │ ├── main.xml
│ │ │ │ └── server.xml
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── com
│ │ ├── bluetooth
│ │ │ ├── ClientActivity.java
│ │ │ ├── MainActivity.java
│ │ │ └── ServerActivity.java
│ │ └── bluetoothUtil
│ │ ├── BluetoothClientConnThread.java
│ │ ├── BluetoothClientService.java
│ │ ├── BluetoothCommunThread.java
│ │ ├── BluetoothServerConnThread.java
│ │ ├── BluetoothServerService.java
│ │ ├── BluetoothTools.java
│ │ └── TransmitBean.java
│ ├── 13
│ │ └── xinlv
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── xinlv
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── DrawChart.class
│ │ │ │ ├── ImageProcessing.class
│ │ │ │ ├── MainActivity$1.class
│ │ │ │ ├── MainActivity$2.class
│ │ │ │ ├── MainActivity$3.class
│ │ │ │ ├── MainActivity$4.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$menu.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ └── R.class
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ │ └── android-support-v4-670f0ec5f44a824638abe51970743604.jar
│ │ │ ├── jarlist.cache
│ │ │ ├── MindTestNew.apk
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ └── drawable-xxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── resources.ap_
│ │ ├── gen
│ │ │ └── com
│ │ │ └── xinlv
│ │ │ ├── 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-ldpi
│ │ │ ├── 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
│ │ │ ├── values-sw600dp
│ │ │ │ └── dimens.xml
│ │ │ ├── values-sw720dp-land
│ │ │ │ └── dimens.xml
│ │ │ ├── values-v11
│ │ │ │ └── styles.xml
│ │ │ └── values-v14
│ │ │ └── styles.xml
│ │ └── src
│ │ └── com
│ │ └── xinlv
│ │ ├── DrawChart.java
│ │ ├── ImageProcessing.java
│ │ └── MainActivity.java
│ ├── 14
│ │ └── step
│ │ ├── AndroidManifest.xml
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ └── name
│ │ │ │ └── step
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── CaloriesNotifier$Listener.class
│ │ │ │ ├── CaloriesNotifier.class
│ │ │ │ ├── DistanceNotifier$Listener.class
│ │ │ │ ├── DistanceNotifier.class
│ │ │ │ ├── PaceNotifier$Listener.class
│ │ │ │ ├── PaceNotifier.class
│ │ │ │ ├── Pedometer$1.class
│ │ │ │ ├── Pedometer$2.class
│ │ │ │ ├── Pedometer$3.class
│ │ │ │ ├── Pedometer$4.class
│ │ │ │ ├── Pedometer$5.class
│ │ │ │ ├── Pedometer.class
│ │ │ │ ├── PedometerSettings.class
│ │ │ │ ├── preferences
│ │ │ │ │ ├── BodyWeightPreference.class
│ │ │ │ │ ├── EditMeasurementPreference.class
│ │ │ │ │ └── StepLengthPreference.class
│ │ │ │ ├── R$array.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$xml.class
│ │ │ │ ├── R.class
│ │ │ │ ├── Settings.class
│ │ │ │ ├── SpeakingTimer$Listener.class
│ │ │ │ ├── SpeakingTimer.class
│ │ │ │ ├── SpeedNotifier$Listener.class
│ │ │ │ ├── SpeedNotifier.class
│ │ │ │ ├── StepBuzzer.class
│ │ │ │ ├── StepDetector.class
│ │ │ │ ├── StepDisplayer$Listener.class
│ │ │ │ ├── StepDisplayer.class
│ │ │ │ ├── StepListener.class
│ │ │ │ ├── StepService$1.class
│ │ │ │ ├── StepService$2.class
│ │ │ │ ├── StepService$3.class
│ │ │ │ ├── StepService$4.class
│ │ │ │ ├── StepService$5.class
│ │ │ │ ├── StepService$6.class
│ │ │ │ ├── StepService$ICallback.class
│ │ │ │ ├── StepService$StepBinder.class
│ │ │ │ ├── StepService.class
│ │ │ │ └── Utils.class
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ ├── jarlist.cache
│ │ │ ├── Pedometer.apk
│ │ │ ├── res
│ │ │ │ └── drawable
│ │ │ │ ├── ic_notification.png
│ │ │ │ ├── icon.png
│ │ │ │ └── line40.png
│ │ │ ├── resources.ap_
│ │ │ └── step.apk
│ │ ├── gen
│ │ │ └── name
│ │ │ └── step
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── ic_notification.png
│ │ │ │ ├── icon.png
│ │ │ │ └── line40.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ ├── values
│ │ │ │ ├── arrays.xml
│ │ │ │ ├── colors.xml
│ │ │ │ ├── dimens.xml
│ │ │ │ └── strings.xml
│ │ │ ├── values-large
│ │ │ │ └── dimens.xml
│ │ │ ├── values-small
│ │ │ │ └── dimens.xml
│ │ │ └── xml
│ │ │ └── preferences.xml
│ │ └── src
│ │ └── name
│ │ └── step
│ │ ├── CaloriesNotifier.java
│ │ ├── DistanceNotifier.java
│ │ ├── PaceNotifier.java
│ │ ├── Pedometer.java
│ │ ├── PedometerSettings.java
│ │ ├── preferences
│ │ │ ├── BodyWeightPreference.java
│ │ │ ├── EditMeasurementPreference.java
│ │ │ └── StepLengthPreference.java
│ │ ├── Settings.java
│ │ ├── SpeakingTimer.java
│ │ ├── SpeedNotifier.java
│ │ ├── StepBuzzer.java
│ │ ├── StepDetector.java
│ │ ├── StepDisplayer.java
│ │ ├── StepListener.java
│ │ ├── StepService.java
│ │ └── Utils.java
│ ├── 6
│ │ ├── chuan
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── chuan.apk
│ │ │ │ ├── classes.dex
│ │ │ │ ├── irdc
│ │ │ │ │ └── chuan
│ │ │ │ │ ├── chuan$1.class
│ │ │ │ │ ├── chuan$2.class
│ │ │ │ │ ├── chuan.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ └── resources.ap_
│ │ │ ├── default.properties
│ │ │ ├── gen
│ │ │ │ └── irdc
│ │ │ │ └── chuan
│ │ │ │ └── R.java
│ │ │ ├── res
│ │ │ │ ├── drawable
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ └── main.xml
│ │ │ │ └── values
│ │ │ │ ├── color.xml
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── irdc
│ │ │ └── chuan
│ │ │ └── chuan.java
│ │ ├── get
│ │ │ ├── ServerForGETMethod
│ │ │ │ ├── build
│ │ │ │ │ └── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── wangjialin
│ │ │ │ │ └── internet
│ │ │ │ │ ├── filter
│ │ │ │ │ │ ├── EncodingFilter.class
│ │ │ │ │ │ └── HttpServletRequestEncodingWrapper.class
│ │ │ │ │ └── servlet
│ │ │ │ │ └── ServletForGETMethod.class
│ │ │ │ ├── src
│ │ │ │ │ └── com
│ │ │ │ │ └── guan
│ │ │ │ │ └── internet
│ │ │ │ │ ├── filter
│ │ │ │ │ │ ├── EncodingFilter.java
│ │ │ │ │ │ └── HttpServletRequestEncodingWrapper.java
│ │ │ │ │ └── servlet
│ │ │ │ │ └── ServletForGETMethod.java
│ │ │ │ └── WebContent
│ │ │ │ ├── META-INF
│ │ │ │ │ └── MANIFEST.MF
│ │ │ │ └── WEB-INF
│ │ │ │ ├── lib
│ │ │ │ └── web.xml
│ │ │ └── UserInformation
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── guan
│ │ │ │ │ └── internet
│ │ │ │ │ └── userInformation
│ │ │ │ │ ├── get
│ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ └── UserInformationActivity.class
│ │ │ │ │ └── service
│ │ │ │ │ └── UserInformationService.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── dexedLibs
│ │ │ │ ├── jarlist.cache
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── resources.ap_
│ │ │ │ └── UserInformation.apk
│ │ │ ├── gen
│ │ │ │ └── com
│ │ │ │ └── guan
│ │ │ │ └── internet
│ │ │ │ └── userInformation
│ │ │ │ └── get
│ │ │ │ ├── BuildConfig.java
│ │ │ │ └── R.java
│ │ │ ├── proguard.cfg
│ │ │ ├── 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
│ │ │ └── com
│ │ │ └── guan
│ │ │ └── internet
│ │ │ └── userInformation
│ │ │ ├── get
│ │ │ │ └── UserInformationActivity.java
│ │ │ └── service
│ │ │ └── UserInformationService.java
│ │ ├── HTTP
│ │ │ ├── upload_file_android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── assets
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes
│ │ │ │ │ │ └── irdc
│ │ │ │ │ │ └── ex08_11
│ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ ├── EX08_11$1.class
│ │ │ │ │ │ ├── EX08_11.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── res
│ │ │ │ ├── gen
│ │ │ │ │ └── irdc
│ │ │ │ │ └── ex08_11
│ │ │ │ │ ├── BuildConfig.java
│ │ │ │ │ └── R.java
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ └── values
│ │ │ │ │ ├── color.xml
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── irdc
│ │ │ │ └── ex08_11
│ │ │ │ └── EX08_11.java
│ │ │ └── upload_file_service
│ │ │ ├── build
│ │ │ │ └── classes
│ │ │ │ └── net
│ │ │ │ └── blogjava
│ │ │ │ └── mobile
│ │ │ │ └── UploadServlet.class
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── src
│ │ │ │ └── net
│ │ │ │ └── blogjava
│ │ │ │ └── mobile
│ │ │ │ └── UploadServlet.java
│ │ │ ├── upload.jsp
│ │ │ ├── WebContent
│ │ │ │ ├── META-INF
│ │ │ │ │ └── MANIFEST.MF
│ │ │ │ ├── upload.jsp
│ │ │ │ └── WEB-INF
│ │ │ │ ├── lib
│ │ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ │ └── commons-io-1.4.jar
│ │ │ │ └── web.xml
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── net
│ │ │ │ └── blogjava
│ │ │ │ └── mobile
│ │ │ │ └── UploadServlet.class
│ │ │ ├── lib
│ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ └── commons-io-1.4.jar
│ │ │ └── web.xml
│ │ └── post
│ │ ├── POST
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── guan
│ │ │ │ │ └── internet
│ │ │ │ │ └── userInformation
│ │ │ │ │ ├── post
│ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ └── UploadUserInformationByPOSTActivity.class
│ │ │ │ │ └── service
│ │ │ │ │ └── UploadUserInformationByPostService.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── dexedLibs
│ │ │ │ │ └── annotations-2b8c0f22d6cae35764f5284e2de4c39d.jar
│ │ │ │ ├── jarlist.cache
│ │ │ │ ├── POST.apk
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── resources.ap_
│ │ │ │ └── UploadUserInformationByPOST.apk
│ │ │ ├── gen
│ │ │ │ └── com
│ │ │ │ └── guan
│ │ │ │ └── internet
│ │ │ │ └── userInformation
│ │ │ │ └── post
│ │ │ │ ├── BuildConfig.java
│ │ │ │ └── R.java
│ │ │ ├── proguard.cfg
│ │ │ ├── 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
│ │ │ └── com
│ │ │ └── guan
│ │ │ └── internet
│ │ │ └── userInformation
│ │ │ ├── post
│ │ │ │ └── UploadUserInformationByPOSTActivity.java
│ │ │ └── service
│ │ │ └── UploadUserInformationByPostService.java
│ │ └── ServerForPOSTMethod
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wangjialin
│ │ │ └── internet
│ │ │ └── servlet
│ │ │ └── ServletForPOSTMethod.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── guan
│ │ │ └── internet
│ │ │ └── servlet
│ │ │ └── ServletForPOSTMethod.java
│ │ └── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── lib
│ │ └── web.xml
│ ├── 7
│ │ ├── cichangLI
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── cichang.apk
│ │ │ │ ├── classes.dex
│ │ │ │ ├── dfzy
│ │ │ │ │ └── cichangCH
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ └── resources.ap_
│ │ │ ├── default.properties
│ │ │ ├── gen
│ │ │ │ └── dfzy
│ │ │ │ └── cichangCH
│ │ │ │ └── R.java
│ │ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ └── strings.xml
│ │ ├── jiaSLI
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ └── com
│ │ │ │ └── jiaS
│ │ │ │ ├── jiaS.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ └── R.class
│ │ │ ├── default.properties
│ │ │ ├── gen
│ │ │ │ └── dfzy
│ │ │ │ └── jiaSCH
│ │ │ │ └── R.java
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ └── main.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── dfzy
│ │ │ └── jiaSCH
│ │ │ └── jiaSCH.java
│ │ ├── wenduLI
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ └── com
│ │ │ │ └── wendu
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R.class
│ │ │ │ └── wendu.class
│ │ │ ├── default.properties
│ │ │ ├── gen
│ │ │ │ └── dfzy
│ │ │ │ └── wenduCH
│ │ │ │ └── R.java
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ └── main.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── dfzy
│ │ │ └── wenduCH
│ │ │ └── wenduCH.java
│ │ └── zitaiLI
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ └── wyf
│ │ │ └── ytl
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R.class
│ │ │ └── Sample_14_2.class
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── dfzy
│ │ │ └── zitaiCH
│ │ │ └── R.java
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── dfzy
│ │ └── zitaiCH
│ │ └── zitaiCH.java
│ ├── 8
│ │ └── AILI
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── AI.apk
│ │ │ ├── classes.dex
│ │ │ ├── com
│ │ │ │ └── AI
│ │ │ │ ├── AxingComparator.class
│ │ │ │ ├── Game$1.class
│ │ │ │ ├── Game$2.class
│ │ │ │ ├── Game$3.class
│ │ │ │ ├── Game$4.class
│ │ │ │ ├── Game$5.class
│ │ │ │ ├── Game.class
│ │ │ │ ├── MapList.class
│ │ │ │ ├── MyActivity$1.class
│ │ │ │ ├── MyActivity$2.class
│ │ │ │ ├── MyActivity$3.class
│ │ │ │ ├── MyActivity$4.class
│ │ │ │ ├── MyActivity$5.class
│ │ │ │ ├── MyActivity$6.class
│ │ │ │ ├── MyActivity.class
│ │ │ │ ├── MySurfaceView.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ └── R.class
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── com
│ │ │ └── AI
│ │ │ └── R.java
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── icon.png
│ │ │ │ ├── source.png
│ │ │ │ └── target.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── com
│ │ └── AI
│ │ ├── AxingComparator.java
│ │ ├── Game.java
│ │ ├── MapList.java
│ │ ├── MyActivity.java
│ │ └── MySurfaceView.java
│ ├── 9
│ │ └── move
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ └── irdc
│ │ │ │ └── example162
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── example162$1.class
│ │ │ │ ├── example162.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ └── R.class
│ │ │ └── res
│ │ ├── gen
│ │ │ └── irdc
│ │ │ └── example162
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── baby.png
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ ├── color.xml
│ │ │ └── strings.xml
│ │ └── src
│ │ └── irdc
│ │ └── example162
│ │ └── example162.java
│ └── 赠送代码
│ └── 赠送代码
│ ├── 1
│ │ └── musicplayer
│ │ └── musicplayer
│ │ └── MyMusicOne
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── classes.dex
│ │ │ ├── com
│ │ │ │ └── Android
│ │ │ │ └── player
│ │ │ │ ├── activity
│ │ │ │ │ ├── FileExplorerActivity$1.class
│ │ │ │ │ ├── FileExplorerActivity$2.class
│ │ │ │ │ ├── FileExplorerActivity.class
│ │ │ │ │ ├── MainPlayActivity$1.class
│ │ │ │ │ ├── MainPlayActivity$2.class
│ │ │ │ │ ├── MainPlayActivity$3.class
│ │ │ │ │ ├── MainPlayActivity$4.class
│ │ │ │ │ ├── MainPlayActivity$5.class
│ │ │ │ │ ├── MainPlayActivity$6.class
│ │ │ │ │ ├── MainPlayActivity$7.class
│ │ │ │ │ ├── MainPlayActivity$8.class
│ │ │ │ │ ├── MainPlayActivity$9.class
│ │ │ │ │ ├── MainPlayActivity$ImageAdapter.class
│ │ │ │ │ ├── MainPlayActivity.class
│ │ │ │ │ ├── MainPlayActivityRoot.class
│ │ │ │ │ ├── Menu$1.class
│ │ │ │ │ ├── Menu$2.class
│ │ │ │ │ ├── Menu$3.class
│ │ │ │ │ ├── Menu$4.class
│ │ │ │ │ ├── Menu.class
│ │ │ │ │ ├── PlayListActivity$1.class
│ │ │ │ │ ├── PlayListActivity$2.class
│ │ │ │ │ ├── PlayListActivity$3.class
│ │ │ │ │ ├── PlayListActivity$4.class
│ │ │ │ │ ├── PlayListActivity.class
│ │ │ │ │ ├── PlaySetting$1.class
│ │ │ │ │ ├── PlaySetting$2.class
│ │ │ │ │ ├── PlaySetting.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── common
│ │ │ │ │ ├── FileColumn.class
│ │ │ │ │ ├── LrcShow.class
│ │ │ │ │ ├── MusicAdapter$ViewHolder.class
│ │ │ │ │ ├── MusicAdapter.class
│ │ │ │ │ ├── MusicHelp.class
│ │ │ │ │ ├── ShowImage.class
│ │ │ │ │ └── StringHelper.class
│ │ │ │ └── dao
│ │ │ │ ├── DBHelper.class
│ │ │ │ ├── DBProvider.class
│ │ │ │ └── SystemService.class
│ │ │ ├── MyMusicPlayer.apk
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── com
│ │ │ └── Android
│ │ │ └── player
│ │ │ └── activity
│ │ │ └── R.java
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── background.png
│ │ │ │ ├── back.png
│ │ │ │ ├── back_pressed.png
│ │ │ │ ├── backward.png
│ │ │ │ ├── backwardpress.png
│ │ │ │ ├── bg.bmp
│ │ │ │ ├── buttonground.png
│ │ │ │ ├── father_file.png
│ │ │ │ ├── folder_file.png
│ │ │ │ ├── footer_bar.png
│ │ │ │ ├── forward.png
│ │ │ │ ├── forwardpress.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── itunes2.png
│ │ │ │ ├── itunesmusic.png
│ │ │ │ ├── itunespress.png
│ │ │ │ ├── listback.png
│ │ │ │ ├── list_bg.png
│ │ │ │ ├── list_item_bg.png
│ │ │ │ ├── list_item_selected.png
│ │ │ │ ├── list_item_xml.xml
│ │ │ │ ├── music_file.png
│ │ │ │ ├── music_icon.png
│ │ │ │ ├── next.png
│ │ │ │ ├── pause.png
│ │ │ │ ├── pausepress.png
│ │ │ │ ├── picture_frame.png
│ │ │ │ ├── play.png
│ │ │ │ ├── playpress.png
│ │ │ │ ├── seekbar.png
│ │ │ │ ├── seekbar_style.xml
│ │ │ │ ├── share.png
│ │ │ │ ├── share_pressed.png
│ │ │ │ ├── speaker0.png
│ │ │ │ ├── speaker10.png
│ │ │ │ ├── speaker11.png
│ │ │ │ ├── speaker12.png
│ │ │ │ ├── speaker13.png
│ │ │ │ ├── speaker14.png
│ │ │ │ ├── speaker15.png
│ │ │ │ ├── speaker16.png
│ │ │ │ ├── speaker17.png
│ │ │ │ ├── speaker1.png
│ │ │ │ ├── speaker2.png
│ │ │ │ ├── speaker3.png
│ │ │ │ ├── speaker4.png
│ │ │ │ ├── speaker5.png
│ │ │ │ ├── speaker6.png
│ │ │ │ ├── speaker7.png
│ │ │ │ ├── speaker8.png
│ │ │ │ ├── speaker9.png
│ │ │ │ ├── stop.png
│ │ │ │ ├── stoppress.png
│ │ │ │ ├── thumb.PNG
│ │ │ │ ├── white.png
│ │ │ │ ├── whitepress.png
│ │ │ │ ├── wmp2.png
│ │ │ │ └── wmppress.png
│ │ │ ├── layout
│ │ │ │ ├── directory_list.xml
│ │ │ │ ├── file_row.xml
│ │ │ │ ├── main.xml
│ │ │ │ ├── menu.xml
│ │ │ │ ├── play_list.xml
│ │ │ │ └── setting.xml
│ │ │ └── values
│ │ │ ├── color.xml
│ │ │ ├── dimen.xml
│ │ │ └── strings.xml
│ │ ├── src
│ │ │ └── com
│ │ │ └── Android
│ │ │ └── player
│ │ │ ├── activity
│ │ │ │ ├── FileExplorerActivity.java
│ │ │ │ ├── MainPlayActivity.java
│ │ │ │ ├── MainPlayActivityRoot.java
│ │ │ │ ├── Menu.java
│ │ │ │ ├── PlayListActivity.java
│ │ │ │ └── PlaySetting.java
│ │ │ ├── common
│ │ │ │ ├── FileColumn.java
│ │ │ │ ├── LrcShow.java
│ │ │ │ ├── MusicAdapter.java
│ │ │ │ ├── MusicHelp.java
│ │ │ │ ├── ShowImage.java
│ │ │ │ └── StringHelper.java
│ │ │ └── dao
│ │ │ ├── DBHelper.java
│ │ │ ├── DBProvider.java
│ │ │ └── SystemService.java
│ │ └── Test
│ ├── 10
│ │ └── android-quick-response-code-EX
│ │ ├── AndroidManifest.xml
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── AndroidQuickResponseCode.apk
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── jwetherell
│ │ │ │ └── quick_response_code
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── camera
│ │ │ │ │ ├── AutoFocusCallback.class
│ │ │ │ │ ├── CameraConfigurationManager.class
│ │ │ │ │ ├── CameraManager.class
│ │ │ │ │ └── PreviewCallback.class
│ │ │ │ ├── CaptureActivity.class
│ │ │ │ ├── data
│ │ │ │ │ ├── Contents$Type.class
│ │ │ │ │ ├── Contents.class
│ │ │ │ │ └── Preferences.class
│ │ │ │ ├── DecodeFormatManager.class
│ │ │ │ ├── DecodeHandler.class
│ │ │ │ ├── DecoderActivity.class
│ │ │ │ ├── DecoderActivityHandler$State.class
│ │ │ │ ├── DecoderActivityHandler.class
│ │ │ │ ├── DecodeThread.class
│ │ │ │ ├── EncoderActivity.class
│ │ │ │ ├── IDecoderActivity.class
│ │ │ │ ├── PlanarYUVLuminanceSource.class
│ │ │ │ ├── qrcode
│ │ │ │ │ ├── decoder
│ │ │ │ │ │ ├── BitMatrixParser.class
│ │ │ │ │ │ ├── DataBlock.class
│ │ │ │ │ │ ├── DataMask$DataMask000.class
│ │ │ │ │ │ ├── DataMask$DataMask001.class
│ │ │ │ │ │ ├── DataMask$DataMask010.class
│ │ │ │ │ │ ├── DataMask$DataMask011.class
│ │ │ │ │ │ ├── DataMask$DataMask100.class
│ │ │ │ │ │ ├── DataMask$DataMask101.class
│ │ │ │ │ │ ├── DataMask$DataMask110.class
│ │ │ │ │ │ ├── DataMask$DataMask111.class
│ │ │ │ │ │ ├── DataMask.class
│ │ │ │ │ │ ├── DecodedBitStreamParser.class
│ │ │ │ │ │ ├── Decoder.class
│ │ │ │ │ │ ├── ErrorCorrectionLevel.class
│ │ │ │ │ │ ├── FormatInformation.class
│ │ │ │ │ │ ├── Mode.class
│ │ │ │ │ │ ├── Version$ECB.class
│ │ │ │ │ │ ├── Version$ECBlocks.class
│ │ │ │ │ │ └── Version.class
│ │ │ │ │ ├── detector
│ │ │ │ │ │ ├── AlignmentPattern.class
│ │ │ │ │ │ ├── AlignmentPatternFinder.class
│ │ │ │ │ │ ├── Detector.class
│ │ │ │ │ │ ├── FinderPattern.class
│ │ │ │ │ │ ├── FinderPatternFinder$CenterComparator.class
│ │ │ │ │ │ ├── FinderPatternFinder$FurthestFromAverageComparator.class
│ │ │ │ │ │ ├── FinderPatternFinder.class
│ │ │ │ │ │ └── FinderPatternInfo.class
│ │ │ │ │ ├── encoder
│ │ │ │ │ │ ├── BlockPair.class
│ │ │ │ │ │ ├── ByteMatrix.class
│ │ │ │ │ │ ├── Encoder.class
│ │ │ │ │ │ ├── MaskUtil.class
│ │ │ │ │ │ ├── MatrixUtil.class
│ │ │ │ │ │ └── QRCode.class
│ │ │ │ │ ├── QRCodeEncoder.class
│ │ │ │ │ ├── QRCodeReader.class
│ │ │ │ │ └── QRCodeWriter.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R.class
│ │ │ │ ├── result
│ │ │ │ │ ├── AddressBookResultHandler.class
│ │ │ │ │ ├── CalendarResultHandler.class
│ │ │ │ │ ├── EmailAddressResultHandler.class
│ │ │ │ │ ├── GeoResultHandler.class
│ │ │ │ │ ├── ISBNResultHandler.class
│ │ │ │ │ ├── ProductResultHandler.class
│ │ │ │ │ ├── ResultHandler.class
│ │ │ │ │ ├── ResultHandlerFactory.class
│ │ │ │ │ ├── SMSResultHandler.class
│ │ │ │ │ ├── TelResultHandler.class
│ │ │ │ │ ├── TextResultHandler.class
│ │ │ │ │ ├── URIResultHandler.class
│ │ │ │ │ └── WifiResultHandler.class
│ │ │ │ ├── ViewfinderResultPointCallback.class
│ │ │ │ └── ViewfinderView.class
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ │ ├── annotations-2b8c0f22d6cae35764f5284e2de4c39d.jar
│ │ │ │ └── core-38abbafd7659203ba6c8d37129b2cfe9.jar
│ │ │ ├── jarlist.cache
│ │ │ ├── res
│ │ │ │ └── crunch
│ │ │ │ └── drawable
│ │ │ │ └── icon.png
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── com
│ │ │ └── jwetherell
│ │ │ └── quick_response_code
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── libs
│ │ │ └── core.jar
│ │ ├── LICENSE
│ │ ├── project.properties
│ │ ├── README.md
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ ├── capture.xml
│ │ │ │ ├── decoder.xml
│ │ │ │ └── encoder.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── ids.xml
│ │ │ └── strings.xml
│ │ └── src
│ │ └── com
│ │ └── jwetherell
│ │ └── quick_response_code
│ │ ├── camera
│ │ │ ├── AutoFocusCallback.java
│ │ │ ├── CameraConfigurationManager.java
│ │ │ ├── CameraManager.java
│ │ │ └── PreviewCallback.java
│ │ ├── CaptureActivity.java
│ │ ├── data
│ │ │ ├── Contents.java
│ │ │ └── Preferences.java
│ │ ├── DecodeFormatManager.java
│ │ ├── DecodeHandler.java
│ │ ├── DecoderActivityHandler.java
│ │ ├── DecoderActivity.java
│ │ ├── DecodeThread.java
│ │ ├── EncoderActivity.java
│ │ ├── IDecoderActivity.java
│ │ ├── PlanarYUVLuminanceSource.java
│ │ ├── qrcode
│ │ │ ├── decoder
│ │ │ │ ├── BitMatrixParser.java
│ │ │ │ ├── DataBlock.java
│ │ │ │ ├── DataMask.java
│ │ │ │ ├── DecodedBitStreamParser.java
│ │ │ │ ├── Decoder.java
│ │ │ │ ├── ErrorCorrectionLevel.java
│ │ │ │ ├── FormatInformation.java
│ │ │ │ ├── Mode.java
│ │ │ │ └── Version.java
│ │ │ ├── detector
│ │ │ │ ├── AlignmentPatternFinder.java
│ │ │ │ ├── AlignmentPattern.java
│ │ │ │ ├── Detector.java
│ │ │ │ ├── FinderPatternFinder.java
│ │ │ │ ├── FinderPatternInfo.java
│ │ │ │ └── FinderPattern.java
│ │ │ ├── encoder
│ │ │ │ ├── BlockPair.java
│ │ │ │ ├── ByteMatrix.java
│ │ │ │ ├── Encoder.java
│ │ │ │ ├── MaskUtil.java
│ │ │ │ ├── MatrixUtil.java
│ │ │ │ └── QRCode.java
│ │ │ ├── QRCodeEncoder.java
│ │ │ ├── QRCodeReader.java
│ │ │ └── QRCodeWriter.java
│ │ ├── result
│ │ │ ├── AddressBookResultHandler.java
│ │ │ ├── CalendarResultHandler.java
│ │ │ ├── EmailAddressResultHandler.java
│ │ │ ├── GeoResultHandler.java
│ │ │ ├── ISBNResultHandler.java
│ │ │ ├── ProductResultHandler.java
│ │ │ ├── ResultHandlerFactory.java
│ │ │ ├── ResultHandler.java
│ │ │ ├── SMSResultHandler.java
│ │ │ ├── TelResultHandler.java
│ │ │ ├── TextResultHandler.java
│ │ │ ├── URIResultHandler.java
│ │ │ └── WifiResultHandler.java
│ │ ├── ViewfinderResultPointCallback.java
│ │ └── ViewfinderView.java
│ ├── 11
│ │ └── heart
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ └── fonts
│ │ │ └── Clockopia.ttf
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── sample
│ │ │ │ └── hrv
│ │ │ │ ├── adapters
│ │ │ │ │ ├── BleDevicesAdapter$ViewHolder.class
│ │ │ │ │ ├── BleDevicesAdapter.class
│ │ │ │ │ ├── BleServicesAdapter$1.class
│ │ │ │ │ ├── BleServicesAdapter$2.class
│ │ │ │ │ ├── BleServicesAdapter$ChildViewHolder.class
│ │ │ │ │ ├── BleServicesAdapter$GroupViewHolder.class
│ │ │ │ │ ├── BleServicesAdapter$OnServiceItemClickListener.class
│ │ │ │ │ └── BleServicesAdapter.class
│ │ │ │ ├── BleService$1.class
│ │ │ │ ├── BleService$LocalBinder.class
│ │ │ │ ├── BleService.class
│ │ │ │ ├── BluetoothGattExecutor$ServiceAction$1.class
│ │ │ │ ├── BluetoothGattExecutor$ServiceAction.class
│ │ │ │ ├── BluetoothGattExecutor.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── demo
│ │ │ │ │ ├── DemoGLSurfaceView.class
│ │ │ │ │ ├── DemoHeartRateSensorActivity$AbstractRenderer.class
│ │ │ │ │ ├── DemoHeartRateSensorActivity$PolygonRenderer.class
│ │ │ │ │ ├── DemoHeartRateSensorActivity$RegularPolygon.class
│ │ │ │ │ ├── DemoHeartRateSensorActivity.class
│ │ │ │ │ ├── DemoSensorActivity$1.class
│ │ │ │ │ ├── DemoSensorActivity$2.class
│ │ │ │ │ └── DemoSensorActivity.class
│ │ │ │ ├── DeviceScanActivity$1$1.class
│ │ │ │ ├── DeviceScanActivity$1.class
│ │ │ │ ├── DeviceScanActivity$Scanner.class
│ │ │ │ ├── DeviceScanActivity.class
│ │ │ │ ├── DeviceServicesActivity$1.class
│ │ │ │ ├── DeviceServicesActivity$2.class
│ │ │ │ ├── DeviceServicesActivity$3.class
│ │ │ │ ├── DeviceServicesActivity$4.class
│ │ │ │ ├── DeviceServicesActivity$5.class
│ │ │ │ ├── DeviceServicesActivity$6.class
│ │ │ │ ├── DeviceServicesActivity.class
│ │ │ │ ├── info
│ │ │ │ │ ├── BleDeviceInfoService.class
│ │ │ │ │ ├── BleGapService.class
│ │ │ │ │ ├── BleGattService.class
│ │ │ │ │ ├── BleInfoService.class
│ │ │ │ │ └── BleInfoServices.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$menu.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ └── sensor
│ │ │ │ ├── BleHeartRateSensor.class
│ │ │ │ ├── BleSensor$1.class
│ │ │ │ ├── BleSensor$2.class
│ │ │ │ ├── BleSensor$3.class
│ │ │ │ ├── BleSensor.class
│ │ │ │ ├── BleSensors.class
│ │ │ │ ├── BleSensorUtils.class
│ │ │ │ └── BleTestSensor.class
│ │ │ ├── classes.dex
│ │ │ ├── DeskClock.apk
│ │ │ ├── dexedLibs
│ │ │ ├── heart.apk
│ │ │ ├── jarlist.cache
│ │ │ ├── res
│ │ │ │ ├── crunch
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ │ │ ├── dialog.9.png
│ │ │ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ │ │ ├── ic_dialog_time.png
│ │ │ │ │ │ ├── ic_indicator_off.png
│ │ │ │ │ │ ├── ic_indicator_on.png
│ │ │ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ │ │ ├── ic_menu_add.png
│ │ │ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ │ │ ├── ic_round_brightness.png
│ │ │ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ │ │ └── stat_notify_alarm.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ │ │ ├── dialog.9.png
│ │ │ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ │ │ ├── ic_dialog_time.png
│ │ │ │ │ │ ├── ic_indicator_off.png
│ │ │ │ │ │ ├── ic_indicator_on.png
│ │ │ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ │ │ ├── ic_menu_add.png
│ │ │ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ │ │ ├── ic_round_brightness.png
│ │ │ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ │ │ └── stat_notify_alarm.png
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ │ ├── dialog.9.png
│ │ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ │ ├── ic_dialog_time.png
│ │ │ │ │ ├── ic_indicator_off.png
│ │ │ │ │ ├── ic_indicator_on.png
│ │ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ │ ├── ic_menu_add.png
│ │ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ │ ├── ic_round_brightness.png
│ │ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ │ └── stat_notify_alarm.png
│ │ │ │ └── drawable-mdpi
│ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ ├── dialog.9.png
│ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ ├── ic_dialog_time.png
│ │ │ │ ├── ic_indicator_off.png
│ │ │ │ ├── ic_indicator_on.png
│ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ ├── ic_menu_add.png
│ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ ├── ic_round_brightness.png
│ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ └── stat_notify_alarm.png
│ │ │ └── resources.ap_
│ │ ├── gen
│ │ │ └── com
│ │ │ └── sample
│ │ │ └── hrv
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── ic_launcher-web.png
│ │ ├── LICENSE
│ │ ├── MODULE_LICENSE_APACHE2
│ │ ├── NOTICE
│ │ ├── project.properties
│ │ ├── README.md
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── add_alarm.xml
│ │ │ │ ├── btn_strip_trans_left.xml
│ │ │ │ ├── btn_strip_trans_middle.xml
│ │ │ │ ├── btn_strip_trans_right.xml
│ │ │ │ ├── clock_selector.xml
│ │ │ │ ├── icon.png
│ │ │ │ ├── incall_round_button.xml
│ │ │ │ ├── indicator_bar_onoff.xml
│ │ │ │ └── indicator_clock_onoff.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ ├── dialog.9.png
│ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ ├── ic_dialog_time.png
│ │ │ │ ├── ic_indicator_off.png
│ │ │ │ ├── ic_indicator_on.png
│ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ ├── ic_menu_add.png
│ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ ├── ic_round_brightness.png
│ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ └── stat_notify_alarm.png
│ │ │ ├── drawable-ldpi
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── appwidget_clock_dial.png
│ │ │ │ ├── appwidget_clock_hour.png
│ │ │ │ ├── appwidget_clock_minute.png
│ │ │ │ ├── btn_in_call_round_disable_focused.png
│ │ │ │ ├── btn_in_call_round_disable.png
│ │ │ │ ├── btn_in_call_round_normal.png
│ │ │ │ ├── btn_in_call_round_pressed.png
│ │ │ │ ├── btn_in_call_round_selected.png
│ │ │ │ ├── btn_strip_trans_left_normal.9.png
│ │ │ │ ├── btn_strip_trans_left_pressed.9.png
│ │ │ │ ├── btn_strip_trans_left_selected.9.png
│ │ │ │ ├── btn_strip_trans_middle_normal.9.png
│ │ │ │ ├── btn_strip_trans_middle_pressed.9.png
│ │ │ │ ├── btn_strip_trans_middle_selected.9.png
│ │ │ │ ├── btn_strip_trans_right_normal.9.png
│ │ │ │ ├── btn_strip_trans_right_pressed.9.png
│ │ │ │ ├── btn_strip_trans_right_selected.9.png
│ │ │ │ ├── dialog.9.png
│ │ │ │ ├── dialog_divider_horizontal_light.9.png
│ │ │ │ ├── divider_vertical_dark.9.png
│ │ │ │ ├── ic_clock_add_alarm.png
│ │ │ │ ├── ic_clock_add_alarm_selected.png
│ │ │ │ ├── ic_clock_alarm_off.png
│ │ │ │ ├── ic_clock_alarm_on.png
│ │ │ │ ├── ic_clock_alarm_selected.png
│ │ │ │ ├── ic_clock_strip_alarm.png
│ │ │ │ ├── ic_clock_strip_desk_clock.png
│ │ │ │ ├── ic_clock_strip_gallery.png
│ │ │ │ ├── ic_clock_strip_home.png
│ │ │ │ ├── ic_clock_strip_music.png
│ │ │ │ ├── ic_dialog_time.png
│ │ │ │ ├── ic_indicator_off.png
│ │ │ │ ├── ic_indicator_on.png
│ │ │ │ ├── ic_launcher_alarmclock.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── ic_lock_idle_alarm.png
│ │ │ │ ├── ic_lock_idle_alarm_saver_dim.png
│ │ │ │ ├── ic_lock_idle_alarm_saver.png
│ │ │ │ ├── ic_menu_add.png
│ │ │ │ ├── ic_menu_alarms.png
│ │ │ │ ├── ic_menu_clock_face.png
│ │ │ │ ├── ic_menu_desk_clock.png
│ │ │ │ ├── ic_round_brightness.png
│ │ │ │ ├── ic_widget_analog_clock.png
│ │ │ │ ├── list_selector_background_pressed.9.png
│ │ │ │ └── stat_notify_alarm.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── layout
│ │ │ │ ├── actionbar_indeterminate_progress.xml
│ │ │ │ ├── demo_opengl.xml
│ │ │ │ ├── gatt_services_characteristics.xml
│ │ │ │ ├── listitem_characteristic.xml
│ │ │ │ ├── listitem_device.xml
│ │ │ │ └── listitem_service.xml
│ │ │ ├── menu
│ │ │ │ ├── gatt_scan.xml
│ │ │ │ └── gatt_services.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── donottranslate.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── src
│ │ └── com
│ │ └── sample
│ │ └── hrv
│ │ ├── adapters
│ │ │ ├── BleDevicesAdapter.java
│ │ │ └── BleServicesAdapter.java
│ │ ├── BleService.java
│ │ ├── BluetoothGattExecutor.java
│ │ ├── demo
│ │ │ ├── DemoGLSurfaceView.java
│ │ │ ├── DemoHeartRateSensorActivity.java
│ │ │ └── DemoSensorActivity.java
│ │ ├── DeviceScanActivity.java
│ │ ├── DeviceServicesActivity.java
│ │ ├── info
│ │ │ ├── BleDeviceInfoService.java
│ │ │ ├── BleGapService.java
│ │ │ ├── BleGattService.java
│ │ │ ├── BleInfoService.java
│ │ │ └── BleInfoServices.java
│ │ └── sensor
│ │ ├── BleHeartRateSensor.java
│ │ ├── BleSensor.java
│ │ ├── BleSensors.java
│ │ ├── BleSensorUtils.java
│ │ └── BleTestSensor.java
│ ├── 12
│ │ ├── Android_Attack_app
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ │ └── AttackAppDatabase
│ │ │ ├── bin
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── attack
│ │ │ │ │ └── android
│ │ │ │ │ ├── AnimationActivity$1.class
│ │ │ │ │ ├── AnimationActivity$2.class
│ │ │ │ │ ├── AnimationActivity.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CameraView$1.class
│ │ │ │ │ ├── CameraView$2.class
│ │ │ │ │ ├── CameraView$3.class
│ │ │ │ │ ├── CameraView$4.class
│ │ │ │ │ ├── CameraView$5.class
│ │ │ │ │ ├── CameraView$6$1.class
│ │ │ │ │ ├── CameraView$6.class
│ │ │ │ │ ├── CameraView.class
│ │ │ │ │ ├── Contacts$1.class
│ │ │ │ │ ├── Contacts$2.class
│ │ │ │ │ ├── ContactsArrayAdaptor.class
│ │ │ │ │ ├── Contacts.class
│ │ │ │ │ ├── Database.class
│ │ │ │ │ ├── DeactivateDialog$1.class
│ │ │ │ │ ├── DeactivateDialog$2.class
│ │ │ │ │ ├── DeactivateDialog.class
│ │ │ │ │ ├── EmailArrayAdaptor.class
│ │ │ │ │ ├── EmailContacts$1.class
│ │ │ │ │ ├── EmailContacts$2.class
│ │ │ │ │ ├── EmailContacts.class
│ │ │ │ │ ├── EmailForm$1.class
│ │ │ │ │ ├── EmailForm.class
│ │ │ │ │ ├── GmailSender$ByteArrayDataSource.class
│ │ │ │ │ ├── GmailSender.class
│ │ │ │ │ ├── JSSEProvider$1.class
│ │ │ │ │ ├── JSSEProvider.class
│ │ │ │ │ ├── LoadPage$1.class
│ │ │ │ │ ├── LoadPage.class
│ │ │ │ │ ├── MyLocationListener.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── sendDataToWebService.class
│ │ │ │ │ ├── Settings$1.class
│ │ │ │ │ ├── Settings$2.class
│ │ │ │ │ ├── SettingsArrayAdapter.class
│ │ │ │ │ ├── Settings.class
│ │ │ │ │ ├── SignUp$1.class
│ │ │ │ │ ├── SignUp.class
│ │ │ │ │ ├── SMS.class
│ │ │ │ │ ├── SubMenuViews$1.class
│ │ │ │ │ ├── SubMenuViews$2.class
│ │ │ │ │ ├── SubMenuViews$3.class
│ │ │ │ │ ├── SubMenuViews$4.class
│ │ │ │ │ ├── SubMenuViews$5.class
│ │ │ │ │ ├── SubMenuViews.class
│ │ │ │ │ ├── VoiceRecognition$1.class
│ │ │ │ │ └── VoiceRecognition.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── dexedLibs
│ │ │ │ │ ├── activation-250106829d23fab278274e6368c796df.jar
│ │ │ │ │ ├── activation-586f6a58c67d835ee9c59396ab21cc27.jar
│ │ │ │ │ ├── additionnal-2223cf83472dec1c1d5d89ad0b68a744.jar
│ │ │ │ │ ├── additionnal-ba727134eed47ea9f79e065e079dee6b.jar
│ │ │ │ │ ├── annotations-2b8c0f22d6cae35764f5284e2de4c39d.jar
│ │ │ │ │ ├── commons-io-1.3.2-04d4da757091834e4a3b7213de0757f9.jar
│ │ │ │ │ ├── commons-io-1.3.2-fbc9117984f75ae3d85e0de5f0afd033.jar
│ │ │ │ │ ├── mail-326657873458ce307e8e69166c56d28a.jar
│ │ │ │ │ └── mail-594acf7e7f22e63e7ee4d05281c31079.jar
│ │ │ │ ├── genzong.apk
│ │ │ │ ├── jarlist.cache
│ │ │ │ ├── res
│ │ │ │ │ └── crunch
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── dephone10.png
│ │ │ │ │ │ ├── dephone11.png
│ │ │ │ │ │ ├── dephone12.png
│ │ │ │ │ │ ├── dephone13.png
│ │ │ │ │ │ ├── dephone14.png
│ │ │ │ │ │ ├── dephone1.png
│ │ │ │ │ │ ├── dephone2.png
│ │ │ │ │ │ ├── dephone3.png
│ │ │ │ │ │ ├── dephone4.png
│ │ │ │ │ │ ├── dephone5.png
│ │ │ │ │ │ ├── dephone6.png
│ │ │ │ │ │ ├── dephone7.png
│ │ │ │ │ │ ├── dephone8.png
│ │ │ │ │ │ ├── dephone9.png
│ │ │ │ │ │ ├── dephone.png
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── pointer.png
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ ├── banner.png
│ │ │ │ │ │ ├── contacts.png
│ │ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ │ ├── details.png
│ │ │ │ │ │ ├── enail.png
│ │ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── off.png
│ │ │ │ │ │ ├── on.png
│ │ │ │ │ │ ├── password.png
│ │ │ │ │ │ ├── plus.png
│ │ │ │ │ │ ├── pressed.png
│ │ │ │ │ │ ├── speech.png
│ │ │ │ │ │ └── unpressed.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ ├── banner.png
│ │ │ │ │ │ ├── contacts.png
│ │ │ │ │ │ ├── deactivate.png
│ │ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ │ ├── details.png
│ │ │ │ │ │ ├── enail.png
│ │ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── off.png
│ │ │ │ │ │ ├── on.png
│ │ │ │ │ │ ├── password.png
│ │ │ │ │ │ ├── plus.png
│ │ │ │ │ │ ├── pressed.png
│ │ │ │ │ │ ├── speech.png
│ │ │ │ │ │ └── unpressed.png
│ │ │ │ │ └── drawable-mdpi
│ │ │ │ │ ├── banner.png
│ │ │ │ │ ├── contacts.png
│ │ │ │ │ ├── deactivate.png
│ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ ├── details.png
│ │ │ │ │ ├── enail.png
│ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ ├── off.png
│ │ │ │ │ ├── on.png
│ │ │ │ │ ├── password.png
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── pressed.png
│ │ │ │ │ ├── speech.png
│ │ │ │ │ └── unpressed.png
│ │ │ │ └── resources.ap_
│ │ │ ├── gen
│ │ │ │ └── com
│ │ │ │ └── attack
│ │ │ │ └── android
│ │ │ │ ├── BuildConfig.java
│ │ │ │ └── R.java
│ │ │ ├── libs
│ │ │ │ ├── activation.jar
│ │ │ │ ├── additionnal.jar
│ │ │ │ ├── commons-io-1.3.2.jar
│ │ │ │ └── mail.jar
│ │ │ ├── proguard.cfg
│ │ │ ├── project.properties
│ │ │ ├── README.md
│ │ │ ├── res
│ │ │ │ ├── drawable
│ │ │ │ │ ├── animation1.xml
│ │ │ │ │ ├── animation2.xml
│ │ │ │ │ ├── animation3.xml
│ │ │ │ │ ├── animation4.xml
│ │ │ │ │ ├── animation5.xml
│ │ │ │ │ ├── animation6.xml
│ │ │ │ │ ├── dephone10.png
│ │ │ │ │ ├── dephone11.png
│ │ │ │ │ ├── dephone12.png
│ │ │ │ │ ├── dephone13.png
│ │ │ │ │ ├── dephone14.png
│ │ │ │ │ ├── dephone1.png
│ │ │ │ │ ├── dephone2.png
│ │ │ │ │ ├── dephone3.png
│ │ │ │ │ ├── dephone4.png
│ │ │ │ │ ├── dephone5.png
│ │ │ │ │ ├── dephone6.png
│ │ │ │ │ ├── dephone7.png
│ │ │ │ │ ├── dephone8.png
│ │ │ │ │ ├── dephone9.png
│ │ │ │ │ ├── dephone.png
│ │ │ │ │ ├── email10.jpg
│ │ │ │ │ ├── email11.jpg
│ │ │ │ │ ├── email12.jpg
│ │ │ │ │ ├── email1.jpg
│ │ │ │ │ ├── email2.jpg
│ │ │ │ │ ├── email3.jpg
│ │ │ │ │ ├── email4.jpg
│ │ │ │ │ ├── email5.jpg
│ │ │ │ │ ├── email6.jpg
│ │ │ │ │ ├── email7.jpg
│ │ │ │ │ ├── email8.jpg
│ │ │ │ │ ├── email9.jpg
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── phone1.jpg
│ │ │ │ │ ├── phone2.jpg
│ │ │ │ │ ├── phone3.jpg
│ │ │ │ │ ├── phone4.jpg
│ │ │ │ │ ├── phone5.jpg
│ │ │ │ │ ├── phone.jpg
│ │ │ │ │ ├── pointer.png
│ │ │ │ │ ├── voice10.jpg
│ │ │ │ │ ├── voice11.jpg
│ │ │ │ │ ├── voice1.jpg
│ │ │ │ │ ├── voice2.jpg
│ │ │ │ │ ├── voice3.jpg
│ │ │ │ │ ├── voice4.jpg
│ │ │ │ │ ├── voice5.jpg
│ │ │ │ │ ├── voice6.jpg
│ │ │ │ │ ├── voice7.jpg
│ │ │ │ │ ├── voice8.jpg
│ │ │ │ │ ├── voice9.jpg
│ │ │ │ │ ├── word1.jpg
│ │ │ │ │ ├── word2.jpg
│ │ │ │ │ ├── word3.jpg
│ │ │ │ │ ├── word4.jpg
│ │ │ │ │ ├── word5.jpg
│ │ │ │ │ ├── word6.jpg
│ │ │ │ │ ├── word7.jpg
│ │ │ │ │ └── word8.jpg
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── attack.jpg
│ │ │ │ │ ├── banner.png
│ │ │ │ │ ├── contacts.png
│ │ │ │ │ ├── custom_button.xml
│ │ │ │ │ ├── deactivate_custom_button.xml
│ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ ├── details.png
│ │ │ │ │ ├── enail.png
│ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── off.png
│ │ │ │ │ ├── on.png
│ │ │ │ │ ├── password.png
│ │ │ │ │ ├── person.jpg
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── pressed.png
│ │ │ │ │ ├── speech.png
│ │ │ │ │ └── unpressed.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ ├── attack.jpg
│ │ │ │ │ ├── banner.png
│ │ │ │ │ ├── contacts.png
│ │ │ │ │ ├── custom_button.xml
│ │ │ │ │ ├── deactivate_custom_button.xml
│ │ │ │ │ ├── deactivate.png
│ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ ├── details.png
│ │ │ │ │ ├── enail.png
│ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── off.png
│ │ │ │ │ ├── on.png
│ │ │ │ │ ├── password.png
│ │ │ │ │ ├── person.jpg
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── pressed.png
│ │ │ │ │ ├── speech.png
│ │ │ │ │ └── unpressed.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ ├── animation1.xml
│ │ │ │ │ ├── attack.jpg
│ │ │ │ │ ├── banner.png
│ │ │ │ │ ├── contacts.png
│ │ │ │ │ ├── custom_button.xml
│ │ │ │ │ ├── deactivate_custom_button.xml
│ │ │ │ │ ├── deactivate.png
│ │ │ │ │ ├── deactivate_pressed.png
│ │ │ │ │ ├── deactivate_unpressed.png
│ │ │ │ │ ├── details.png
│ │ │ │ │ ├── enail.png
│ │ │ │ │ ├── help_symbol.png
│ │ │ │ │ ├── off.png
│ │ │ │ │ ├── on.png
│ │ │ │ │ ├── password.png
│ │ │ │ │ ├── person.jpg
│ │ │ │ │ ├── phone1.jpg
│ │ │ │ │ ├── phone2.jpg
│ │ │ │ │ ├── phone3.jpg
│ │ │ │ │ ├── phone4.jpg
│ │ │ │ │ ├── phone5.jpg
│ │ │ │ │ ├── phone.jpg
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── pressed.png
│ │ │ │ │ ├── speech.png
│ │ │ │ │ └── unpressed.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── animation.xml
│ │ │ │ │ ├── contacts.xml
│ │ │ │ │ ├── item_row.xml
│ │ │ │ │ ├── main.xml
│ │ │ │ │ ├── settings_menu.xml
│ │ │ │ │ ├── start_up.xml
│ │ │ │ │ ├── sub_menu_view.xml
│ │ │ │ │ └── surface_view.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── com
│ │ │ └── attack
│ │ │ └── android
│ │ │ ├── AnimationActivity.java
│ │ │ ├── CameraView.java
│ │ │ ├── ContactsArrayAdaptor.java
│ │ │ ├── Contacts.java
│ │ │ ├── Database.java
│ │ │ ├── DeactivateDialog.java
│ │ │ ├── EmailArrayAdaptor.java
│ │ │ ├── EmailContacts.java
│ │ │ ├── EmailForm.java
│ │ │ ├── GmailSender.java
│ │ │ ├── JSSEProvider.java
│ │ │ ├── LoadPage.java
│ │ │ ├── MyLocationListener.java
│ │ │ ├── sendDataToWebService.java
│ │ │ ├── SettingsArrayAdapter.java
│ │ │ ├── Settings.java
│ │ │ ├── SignUp.java
│ │ │ ├── SMS.java
│ │ │ ├── SubMenuViews.java
│ │ │ └── VoiceRecognition.java
│ │ └── web
│ │ └── Android_Attack_website
│ │ ├── README.md
│ │ ├── Servlets
│ │ │ ├── DataPingServlet.java
│ │ │ ├── RegisterServlet.java
│ │ │ └── VideoServlet.java
│ │ └── Webpages
│ │ ├── admin.jsp
│ │ ├── checkLogin.jsp
│ │ ├── index.jsp
│ │ ├── location.jsp
│ │ ├── login.jsp
│ │ ├── register.jsp
│ │ ├── statistics.jsp
│ │ └── style.css
│ ├── 2
│ │ └── wall0
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── classes.dex
│ │ │ ├── com
│ │ │ │ ├── googlecode
│ │ │ │ │ └── droidwall
│ │ │ │ │ ├── Api$DroidApp.class
│ │ │ │ │ ├── Api$LogInfo.class
│ │ │ │ │ ├── Api$ScriptRunner.class
│ │ │ │ │ ├── Api.class
│ │ │ │ │ ├── BootBroadcast$1.class
│ │ │ │ │ ├── BootBroadcast$2.class
│ │ │ │ │ ├── BootBroadcast.class
│ │ │ │ │ ├── HelpDialog.class
│ │ │ │ │ ├── MainActivity$10.class
│ │ │ │ │ ├── MainActivity$11.class
│ │ │ │ │ ├── MainActivity$12.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$2.class
│ │ │ │ │ ├── MainActivity$3.class
│ │ │ │ │ ├── MainActivity$4.class
│ │ │ │ │ ├── MainActivity$5.class
│ │ │ │ │ ├── MainActivity$6.class
│ │ │ │ │ ├── MainActivity$7.class
│ │ │ │ │ ├── MainActivity$8.class
│ │ │ │ │ ├── MainActivity$9.class
│ │ │ │ │ ├── MainActivity$ListEntry.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── PackageBroadcast.class
│ │ │ │ │ ├── PassDialog.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$raw.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$xml.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── StatusWidget$1.class
│ │ │ │ │ ├── StatusWidget$2.class
│ │ │ │ │ └── StatusWidget.class
│ │ │ │ └── wall
│ │ │ │ └── Wall0Activity.class
│ │ │ ├── resources.ap_
│ │ │ └── wall0.apk
│ │ ├── default.properties
│ │ ├── external
│ │ │ ├── busybox
│ │ │ │ ├── busybox-1.17.2.tar.bz2
│ │ │ │ └── config.droidwall
│ │ │ └── iptables
│ │ │ ├── aclocal.m4
│ │ │ ├── Android.mk
│ │ │ ├── autogen.sh
│ │ │ ├── CleanSpec.mk
│ │ │ ├── COMMIT_NOTES
│ │ │ ├── compile
│ │ │ ├── config.guess
│ │ │ ├── config.h.in
│ │ │ ├── config.sub
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── COPYING
│ │ │ ├── depcomp
│ │ │ ├── extensions
│ │ │ │ ├── create_initext4
│ │ │ │ ├── dscp_helper.c
│ │ │ │ ├── GNUmakefile.in
│ │ │ │ ├── initext4.c
│ │ │ │ ├── libip6t_ah.c
│ │ │ │ ├── libip6t_ah.man
│ │ │ │ ├── libip6t_dst.c
│ │ │ │ ├── libip6t_dst.man
│ │ │ │ ├── libip6t_eui64.c
│ │ │ │ ├── libip6t_eui64.man
│ │ │ │ ├── libip6t_frag.c
│ │ │ │ ├── libip6t_frag.man
│ │ │ │ ├── libip6t_hbh.c
│ │ │ │ ├── libip6t_hbh.man
│ │ │ │ ├── libip6t_hl.c
│ │ │ │ ├── libip6t_hl.man
│ │ │ │ ├── libip6t_icmp6.c
│ │ │ │ ├── libip6t_icmp6.man
│ │ │ │ ├── libip6t_ipv6header.c
│ │ │ │ ├── libip6t_ipv6header.man
│ │ │ │ ├── libip6t_LOG.c
│ │ │ │ ├── libip6t_LOG.man
│ │ │ │ ├── libip6t_mh.c
│ │ │ │ ├── libip6t_mh.man
│ │ │ │ ├── libip6t_REJECT.c
│ │ │ │ ├── libip6t_REJECT.man
│ │ │ │ ├── libip6t_rt.c
│ │ │ │ ├── libip6t_rt.man
│ │ │ │ ├── libipt_addrtype.c
│ │ │ │ ├── libipt_addrtype.man
│ │ │ │ ├── libipt_ah.c
│ │ │ │ ├── libipt_ah.man
│ │ │ │ ├── libipt_CLUSTERIP.c
│ │ │ │ ├── libipt_CLUSTERIP.man
│ │ │ │ ├── libipt_DNAT.c
│ │ │ │ ├── libipt_DNAT.man
│ │ │ │ ├── libipt_ecn.c
│ │ │ │ ├── libipt_ecn.man
│ │ │ │ ├── libipt_icmp.c
│ │ │ │ ├── libipt_icmp.man
│ │ │ │ ├── libipt_LOG.c
│ │ │ │ ├── libipt_LOG.man
│ │ │ │ ├── libipt_MASQUERADE.c
│ │ │ │ ├── libipt_MASQUERADE.man
│ │ │ │ ├── libipt_MIRROR.c
│ │ │ │ ├── libipt_MIRROR.man
│ │ │ │ ├── libipt_NETMAP.c
│ │ │ │ ├── libipt_NETMAP.man
│ │ │ │ ├── libipt_realm.c
│ │ │ │ ├── libipt_realm.man
│ │ │ │ ├── libipt_REDIRECT.c
│ │ │ │ ├── libipt_REDIRECT.man
│ │ │ │ ├── libipt_REJECT.c
│ │ │ │ ├── libipt_REJECT.man
│ │ │ │ ├── libipt_SAME.c
│ │ │ │ ├── libipt_SAME.man
│ │ │ │ ├── libipt_SNAT.c
│ │ │ │ ├── libipt_SNAT.man
│ │ │ │ ├── libipt_TAG.c
│ │ │ │ ├── libipt_ttl.c
│ │ │ │ ├── libipt_ttl.man
│ │ │ │ ├── libipt_ULOG.c
│ │ │ │ ├── libipt_ULOG.man
│ │ │ │ ├── libipt_unclean.c
│ │ │ │ ├── libipt_unclean.man
│ │ │ │ ├── libxt_CHECKSUM.c
│ │ │ │ ├── libxt_CHECKSUM.man
│ │ │ │ ├── libxt_CLASSIFY.c
│ │ │ │ ├── libxt_CLASSIFY.man
│ │ │ │ ├── libxt_cluster.c
│ │ │ │ ├── libxt_cluster.man
│ │ │ │ ├── libxt_comment.c
│ │ │ │ ├── libxt_comment.man
│ │ │ │ ├── libxt_connbytes.c
│ │ │ │ ├── libxt_connbytes.man
│ │ │ │ ├── libxt_connlimit.c
│ │ │ │ ├── libxt_connlimit.man
│ │ │ │ ├── libxt_connmark.c
│ │ │ │ ├── libxt_connmark.man
│ │ │ │ ├── libxt_CONNSECMARK.c
│ │ │ │ ├── libxt_CONNSECMARK.man
│ │ │ │ ├── libxt_conntrack.c
│ │ │ │ ├── libxt_conntrack.man
│ │ │ │ ├── libxt_cpu.c
│ │ │ │ ├── libxt_cpu.man
│ │ │ │ ├── libxt_CT.c
│ │ │ │ ├── libxt_CT.man
│ │ │ │ ├── libxt_dccp.c
│ │ │ │ ├── libxt_dccp.man
│ │ │ │ ├── libxt_dscp.c
│ │ │ │ ├── libxt_dscp.man
│ │ │ │ ├── libxt_esp.c
│ │ │ │ ├── libxt_esp.man
│ │ │ │ ├── libxt_hashlimit.c
│ │ │ │ ├── libxt_hashlimit.man
│ │ │ │ ├── libxt_helper.c
│ │ │ │ ├── libxt_helper.man
│ │ │ │ ├── libxt_IDLETIMER.c
│ │ │ │ ├── libxt_IDLETIMER.man
│ │ │ │ ├── libxt_iprange.c
│ │ │ │ ├── libxt_iprange.man
│ │ │ │ ├── libxt_ipvs.c
│ │ │ │ ├── libxt_ipvs.man
│ │ │ │ ├── libxt_LED.c
│ │ │ │ ├── libxt_LED.man
│ │ │ │ ├── libxt_length.c
│ │ │ │ ├── libxt_length.man
│ │ │ │ ├── libxt_limit.c
│ │ │ │ ├── libxt_limit.man
│ │ │ │ ├── libxt_mac.c
│ │ │ │ ├── libxt_mac.man
│ │ │ │ ├── libxt_mark.c
│ │ │ │ ├── libxt_mark.man
│ │ │ │ ├── libxt_multiport.c
│ │ │ │ ├── libxt_multiport.man
│ │ │ │ ├── libxt_NFLOG.c
│ │ │ │ ├── libxt_NFLOG.man
│ │ │ │ ├── libxt_NFQUEUE.c
│ │ │ │ ├── libxt_NFQUEUE.man
│ │ │ │ ├── libxt_NOTRACK.c
│ │ │ │ ├── libxt_NOTRACK.man
│ │ │ │ ├── libxt_osf.c
│ │ │ │ ├── libxt_osf.man
│ │ │ │ ├── libxt_owner.c
│ │ │ │ ├── libxt_owner.man
│ │ │ │ ├── libxt_physdev.c
│ │ │ │ ├── libxt_physdev.man
│ │ │ │ ├── libxt_pkttype.c
│ │ │ │ ├── libxt_pkttype.man
│ │ │ │ ├── libxt_policy.c
│ │ │ │ ├── libxt_policy.man
│ │ │ │ ├── libxt_quota.c
│ │ │ │ ├── libxt_quota.man
│ │ │ │ ├── libxt_rateest.c
│ │ │ │ ├── libxt_rateest.man
│ │ │ │ ├── libxt_recent.c
│ │ │ │ ├── libxt_recent.man
│ │ │ │ ├── libxt_sctp.c
│ │ │ │ ├── libxt_sctp.man
│ │ │ │ ├── libxt_SECMARK.c
│ │ │ │ ├── libxt_SECMARK.man
│ │ │ │ ├── libxt_set.c
│ │ │ │ ├── libxt_set.h
│ │ │ │ ├── libxt_set.man
│ │ │ │ ├── libxt_socket.c
│ │ │ │ ├── libxt_socket.man
│ │ │ │ ├── libxt_standard.c
│ │ │ │ ├── libxt_state.c
│ │ │ │ ├── libxt_state.man
│ │ │ │ ├── libxt_statistic.c
│ │ │ │ ├── libxt_statistic.man
│ │ │ │ ├── libxt_string.c
│ │ │ │ ├── libxt_string.man
│ │ │ │ ├── libxt_tcp.c
│ │ │ │ ├── libxt_tcp.man
│ │ │ │ ├── libxt_tcpmss.c
│ │ │ │ ├── libxt_tcpmss.man
│ │ │ │ ├── libxt_TCPOPTSTRIP.c
│ │ │ │ ├── libxt_TCPOPTSTRIP.man
│ │ │ │ ├── libxt_TEE.c
│ │ │ │ ├── libxt_TEE.man
│ │ │ │ ├── libxt_time.c
│ │ │ │ ├── libxt_time.man
│ │ │ │ ├── libxt_tos.c
│ │ │ │ ├── libxt_tos.man
│ │ │ │ ├── libxt_TPROXY.c
│ │ │ │ ├── libxt_TPROXY.man
│ │ │ │ ├── libxt_TRACE.c
│ │ │ │ ├── libxt_TRACE.man
│ │ │ │ ├── libxt_u32.c
│ │ │ │ ├── libxt_u32.man
│ │ │ │ ├── libxt_udp.c
│ │ │ │ ├── libxt_udp.man
│ │ │ │ └── tos_values.c
│ │ │ ├── include
│ │ │ │ ├── ip6tables.h
│ │ │ │ ├── iptables
│ │ │ │ │ ├── internal.h
│ │ │ │ │ └── internal.h.in
│ │ │ │ ├── iptables.h
│ │ │ │ ├── libipq
│ │ │ │ │ └── libipq.h
│ │ │ │ ├── libiptc
│ │ │ │ │ ├── ipt_kernel_headers.h
│ │ │ │ │ ├── libip6tc.h
│ │ │ │ │ ├── libiptc.h
│ │ │ │ │ └── libxtc.h
│ │ │ │ ├── libipulog
│ │ │ │ │ └── libipulog.h
│ │ │ │ ├── linux
│ │ │ │ │ ├── kernel.h
│ │ │ │ │ ├── netfilter
│ │ │ │ │ │ ├── nf_conntrack_common.h
│ │ │ │ │ │ ├── nf_conntrack_tuple_common.h
│ │ │ │ │ │ ├── x_tables.h
│ │ │ │ │ │ ├── xt_CHECKSUM.h
│ │ │ │ │ │ ├── xt_CLASSIFY.h
│ │ │ │ │ │ ├── xt_cluster.h
│ │ │ │ │ │ ├── xt_comment.h
│ │ │ │ │ │ ├── xt_connbytes.h
│ │ │ │ │ │ ├── xt_connlimit.h
│ │ │ │ │ │ ├── xt_connmark.h
│ │ │ │ │ │ ├── xt_CONNSECMARK.h
│ │ │ │ │ │ ├── xt_conntrack.h
│ │ │ │ │ │ ├── xt_cpu.h
│ │ │ │ │ │ ├── xt_CT.h
│ │ │ │ │ │ ├── xt_dccp.h
│ │ │ │ │ │ ├── xt_dscp.h
│ │ │ │ │ │ ├── xt_esp.h
│ │ │ │ │ │ ├── xt_hashlimit.h
│ │ │ │ │ │ ├── xt_helper.h
│ │ │ │ │ │ ├── xt_IDLETIMER.h
│ │ │ │ │ │ ├── xt_iprange.h
│ │ │ │ │ │ ├── xt_ipvs.h
│ │ │ │ │ │ ├── xt_LED.h
│ │ │ │ │ │ ├── xt_length.h
│ │ │ │ │ │ ├── xt_limit.h
│ │ │ │ │ │ ├── xt_mac.h
│ │ │ │ │ │ ├── xt_mark.h
│ │ │ │ │ │ ├── xt_multiport.h
│ │ │ │ │ │ ├── xt_NFLOG.h
│ │ │ │ │ │ ├── xt_NFQUEUE.h
│ │ │ │ │ │ ├── xt_osf.h
│ │ │ │ │ │ ├── xt_owner.h
│ │ │ │ │ │ ├── xt_physdev.h
│ │ │ │ │ │ ├── xt_pkttype.h
│ │ │ │ │ │ ├── xt_policy.h
│ │ │ │ │ │ ├── xt_quota.h
│ │ │ │ │ │ ├── xt_rateest.h
│ │ │ │ │ │ ├── xt_realm.h
│ │ │ │ │ │ ├── xt_recent.h
│ │ │ │ │ │ ├── xt_sctp.h
│ │ │ │ │ │ ├── xt_SECMARK.h
│ │ │ │ │ │ ├── xt_set.h
│ │ │ │ │ │ ├── xt_state.h
│ │ │ │ │ │ ├── xt_statistic.h
│ │ │ │ │ │ ├── xt_string.h
│ │ │ │ │ │ ├── xt_tcpmss.h
│ │ │ │ │ │ ├── xt_TCPOPTSTRIP.h
│ │ │ │ │ │ ├── xt_tcpudp.h
│ │ │ │ │ │ ├── xt_TEE.h
│ │ │ │ │ │ ├── xt_time.h
│ │ │ │ │ │ ├── xt_TPROXY.h
│ │ │ │ │ │ └── xt_u32.h
│ │ │ │ │ ├── netfilter.h
│ │ │ │ │ ├── netfilter_ipv4
│ │ │ │ │ │ ├── ip_tables.h
│ │ │ │ │ │ ├── ipt_addrtype.h
│ │ │ │ │ │ ├── ipt_ah.h
│ │ │ │ │ │ ├── ipt_CLUSTERIP.h
│ │ │ │ │ │ ├── ipt_ecn.h
│ │ │ │ │ │ ├── ipt_LOG.h
│ │ │ │ │ │ ├── ipt_realm.h
│ │ │ │ │ │ ├── ipt_REJECT.h
│ │ │ │ │ │ ├── ipt_SAME.h
│ │ │ │ │ │ ├── ipt_ttl.h
│ │ │ │ │ │ └── ipt_ULOG.h
│ │ │ │ │ ├── netfilter_ipv4.h
│ │ │ │ │ ├── netfilter_ipv6
│ │ │ │ │ │ ├── ip6_tables.h
│ │ │ │ │ │ ├── ip6t_ah.h
│ │ │ │ │ │ ├── ip6t_frag.h
│ │ │ │ │ │ ├── ip6t_hl.h
│ │ │ │ │ │ ├── ip6t_ipv6header.h
│ │ │ │ │ │ ├── ip6t_LOG.h
│ │ │ │ │ │ ├── ip6t_mh.h
│ │ │ │ │ │ ├── ip6t_opts.h
│ │ │ │ │ │ ├── ip6t_REJECT.h
│ │ │ │ │ │ └── ip6t_rt.h
│ │ │ │ │ ├── netfilter_ipv6.h
│ │ │ │ │ └── types.h
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── net
│ │ │ │ │ └── netfilter
│ │ │ │ │ ├── nf_conntrack_tuple.h
│ │ │ │ │ └── nf_nat.h
│ │ │ │ ├── xtables.h
│ │ │ │ └── xtables.h.in
│ │ │ ├── INCOMPATIBILITIES
│ │ │ ├── INSTALL
│ │ │ ├── install-sh
│ │ │ ├── ip6tables.8.in
│ │ │ ├── ip6tables.c
│ │ │ ├── ip6tables-multi.c
│ │ │ ├── ip6tables-multi.h
│ │ │ ├── ip6tables-restore.8
│ │ │ ├── ip6tables-restore.c
│ │ │ ├── ip6tables-save.8
│ │ │ ├── ip6tables-save.c
│ │ │ ├── ip6tables-standalone.c
│ │ │ ├── iptables.8.in
│ │ │ ├── iptables-apply
│ │ │ ├── iptables-apply.8
│ │ │ ├── iptables.c
│ │ │ ├── iptables-multi.c
│ │ │ ├── iptables-multi.h
│ │ │ ├── iptables-restore.8
│ │ │ ├── iptables-restore.c
│ │ │ ├── iptables-save.8
│ │ │ ├── iptables-save.c
│ │ │ ├── iptables-standalone.c
│ │ │ ├── iptables-xml.8
│ │ │ ├── iptables-xml.c
│ │ │ ├── iptables.xslt
│ │ │ ├── libipq
│ │ │ │ ├── ipq_create_handle.3
│ │ │ │ ├── ipq_destroy_handle.3
│ │ │ │ ├── ipq_errstr.3
│ │ │ │ ├── ipq_get_msgerr.3
│ │ │ │ ├── ipq_get_packet.3
│ │ │ │ ├── ipq_message_type.3
│ │ │ │ ├── ipq_perror.3
│ │ │ │ ├── ipq_read.3
│ │ │ │ ├── ipq_set_mode.3
│ │ │ │ ├── ipq_set_verdict.3
│ │ │ │ ├── libipq.3
│ │ │ │ ├── libipq.c
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── libiptc
│ │ │ │ ├── libip4tc.c
│ │ │ │ ├── libip6tc.c
│ │ │ │ ├── libiptc.c
│ │ │ │ ├── linux_list.h
│ │ │ │ └── linux_stddef.h
│ │ │ ├── libiptc.pc.in
│ │ │ ├── ltmain.sh
│ │ │ ├── m4
│ │ │ │ ├── ax_check_linker_flags.m4
│ │ │ │ ├── libtool.m4
│ │ │ │ ├── lt~obsolete.m4
│ │ │ │ ├── ltoptions.m4
│ │ │ │ ├── ltsugar.m4
│ │ │ │ └── ltversion.m4
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── missing
│ │ │ ├── release.sh
│ │ │ ├── utils
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── nfnl_osf.c
│ │ │ │ └── pf.os
│ │ │ ├── xshared.c
│ │ │ ├── xshared.h
│ │ │ ├── xtables.c
│ │ │ ├── xtables.c.original
│ │ │ └── xtables.pc.in
│ │ ├── gen
│ │ │ └── com
│ │ │ └── googlecode
│ │ │ └── droidwall
│ │ │ └── R.java
│ │ ├── icon-off.svg
│ │ ├── icon-on.svg
│ │ ├── package.sh
│ │ ├── proguard.cfg
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── apply.png
│ │ │ │ ├── download.png
│ │ │ │ ├── eth_3g.png
│ │ │ │ ├── eth_g.png
│ │ │ │ ├── eth_wifi.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── show.png
│ │ │ │ ├── upload.png
│ │ │ │ ├── widget_bg_focus.png
│ │ │ │ ├── widget_bg_pressed.png
│ │ │ │ ├── widget_bg.xml
│ │ │ │ ├── widget_off.png
│ │ │ │ └── widget_on.png
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── icon.png
│ │ │ │ ├── widget_off.png
│ │ │ │ └── widget_on.png
│ │ │ ├── drawable-ldpi
│ │ │ │ ├── icon.png
│ │ │ │ ├── widget_off.png
│ │ │ │ └── widget_on.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ ├── help_dialog.xml
│ │ │ │ ├── listitem.xml
│ │ │ │ ├── main.xml
│ │ │ │ ├── onoff_widget.xml
│ │ │ │ └── pass_dialog.xml
│ │ │ ├── raw
│ │ │ │ ├── busybox_g1
│ │ │ │ └── iptables_armv5
│ │ │ ├── values
│ │ │ │ └── strings.xml
│ │ │ ├── values-ar
│ │ │ │ └── strings.xml
│ │ │ ├── values-de
│ │ │ │ └── strings.xml
│ │ │ ├── values-es
│ │ │ │ └── strings.xml
│ │ │ ├── values-fr
│ │ │ │ └── strings.xml
│ │ │ ├── values-it
│ │ │ │ └── strings.xml
│ │ │ ├── values-pt-rBR
│ │ │ │ └── strings.xml
│ │ │ ├── values-ru
│ │ │ │ └── strings.xml
│ │ │ ├── values-zh-rCN
│ │ │ │ └── strings.xml
│ │ │ └── xml
│ │ │ └── onoff_widget.xml
│ │ └── src
│ │ └── com
│ │ ├── googlecode
│ │ │ └── droidwall
│ │ │ ├── Api.java
│ │ │ ├── BootBroadcast.java
│ │ │ ├── HelpDialog.java
│ │ │ ├── MainActivity.java
│ │ │ ├── PackageBroadcast.java
│ │ │ ├── PassDialog.java
│ │ │ └── StatusWidget.java
│ │ └── wall
│ │ └── Wall0Activity.java
│ ├── 3
│ │ └── phone
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ └── www
│ │ │ ├── add.html
│ │ │ ├── cordova-2.1.0.js
│ │ │ ├── css
│ │ │ │ ├── images
│ │ │ │ │ ├── ajax-loader.gif
│ │ │ │ │ ├── icons-18-black.png
│ │ │ │ │ ├── icons-18-white.png
│ │ │ │ │ ├── icons-36-black.png
│ │ │ │ │ └── icons-36-white.png
│ │ │ │ └── jquery.mobile-1.2.0.css
│ │ │ ├── img
│ │ │ │ └── bg.gif
│ │ │ ├── js
│ │ │ │ ├── index.js
│ │ │ │ ├── jquery.js
│ │ │ │ └── jquery.mobile-1.2.0.js
│ │ │ ├── main.html
│ │ │ ├── modfiry.html
│ │ │ ├── select.html
│ │ │ └── set.html
│ │ ├── bin
│ │ │ ├── 275.apk
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── web_dhb
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$menu.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R$xml.class
│ │ │ │ └── R.class
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ │ ├── android-support-v4-02c6448a9f93583d82bceb465e87cd34.jar
│ │ │ │ ├── android-support-v4-110b7ba67f5fd47ee2098929e59bf0e1.jar
│ │ │ │ ├── android-support-v4-ae1648a687d3c0d435586eaa67fd3362.jar
│ │ │ │ ├── annotations-2b8c0f22d6cae35764f5284e2de4c39d.jar
│ │ │ │ ├── cordova-2.1.0-0dd1cbaeeb31dd0e7106b608334bfacd.jar
│ │ │ │ ├── cordova-2.1.0-68d70ef836da7f832572b53ce67075d5.jar
│ │ │ │ └── cordova-2.1.0-bc4cf45c01324c4bbea6cfc762b3fafd.jar
│ │ │ ├── jarlist.cache
│ │ │ ├── phonebook.apk
│ │ │ ├── res
│ │ │ │ ├── crunch
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-xhdpi
│ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ └── drawable-xhdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ ├── resources.ap_
│ │ │ └── web_dhb.apk
│ │ ├── gen
│ │ │ └── com
│ │ │ └── example
│ │ │ └── web_dhb
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── ic_launcher-web.png
│ │ ├── libs
│ │ │ ├── android-support-v4.jar
│ │ │ └── cordova-2.1.0.jar
│ │ ├── proguard-project.txt
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ ├── layout
│ │ │ │ └── activity_main.xml
│ │ │ ├── menu
│ │ │ │ └── activity_main.xml
│ │ │ ├── values
│ │ │ │ ├── dimens.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── values-large
│ │ │ │ └── dimens.xml
│ │ │ └── xml
│ │ │ └── config.xml
│ │ └── src
│ │ └── com
│ │ └── example
│ │ └── web_dhb
│ │ └── MainActivity.java
│ ├── 4
│ │ ├── DWinterTabDemo
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ ├── bin
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── classes
│ │ │ │ │ └── com
│ │ │ │ │ └── demo
│ │ │ │ │ ├── MainActivity$MyOnClickListener.class
│ │ │ │ │ ├── MainActivity$MyOnPageChangeListener.class
│ │ │ │ │ ├── MainActivity$MyPagerAdapter.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── DWinterTabDemo.apk
│ │ │ │ ├── jarlist.cache
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ ├── a.png
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ └── resources.ap_
│ │ │ ├── default.properties
│ │ │ ├── gen
│ │ │ │ └── com
│ │ │ │ └── demo
│ │ │ │ ├── BuildConfig.java
│ │ │ │ └── R.java
│ │ │ ├── libs
│ │ │ │ └── android-support-v4.jar
│ │ │ ├── lint.xml
│ │ │ ├── proguard.cfg
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── a.png
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── lay1.xml
│ │ │ │ │ ├── lay2.xml
│ │ │ │ │ ├── lay3.xml
│ │ │ │ │ └── main.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── com
│ │ │ └── demo
│ │ │ └── MainActivity.java
│ │ └── Weixin
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes
│ │ │ │ ├── bottom_bar.9.png
│ │ │ │ ├── btn_cancle_normal.9.png
│ │ │ │ ├── btn_cancle_pressed.9.png
│ │ │ │ ├── btn_close.png
│ │ │ │ ├── btn_normal.9.png
│ │ │ │ ├── btn_pressed.9.png
│ │ │ │ ├── btn_style_alert_dialog_button_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_button_pressed.9.png
│ │ │ │ ├── btn_style_alert_dialog_cancel_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_special_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_special_pressed.9.png
│ │ │ │ ├── btn_style_five_focused.9.png
│ │ │ │ ├── btn_style_five_normal.9.png
│ │ │ │ ├── btn_style_five_pressed.9.png
│ │ │ │ ├── btn_style_four_focused.9.png
│ │ │ │ ├── btn_style_four_normal.9.png
│ │ │ │ ├── btn_style_four_pressed.9.png
│ │ │ │ ├── btn_style_one_disabled.9.png
│ │ │ │ ├── btn_style_one_focused.9.png
│ │ │ │ ├── btn_style_one_normal.9.png
│ │ │ │ ├── btn_style_one_pressed.9.png
│ │ │ │ ├── btn_style_two_focused.9.png
│ │ │ │ ├── btn_style_two_normal.9.png
│ │ │ │ ├── btn_style_two_pressed.9.png
│ │ │ │ ├── btn_style_zero_focused.9.png
│ │ │ │ ├── btn_style_zero_normal.9.png
│ │ │ │ ├── btn_style_zero_pressed.9.png
│ │ │ │ ├── chat_bg_default.jpg
│ │ │ │ ├── chat_footer_bg.png
│ │ │ │ ├── chatfrom_bg_focused.9.png
│ │ │ │ ├── chatfrom_bg_normal.9.png
│ │ │ │ ├── chatfrom_bg_pressed.9.png
│ │ │ │ ├── chatto_bg_focused.9.png
│ │ │ │ ├── chatto_bg_normal.9.png
│ │ │ │ ├── chatto_bg_pressed.9.png
│ │ │ │ ├── cn
│ │ │ │ │ └── buaa
│ │ │ │ │ └── myweixin
│ │ │ │ │ ├── Appstart$1.class
│ │ │ │ │ ├── Appstart.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── ChatActivity.class
│ │ │ │ │ ├── ChatMsgEntity.class
│ │ │ │ │ ├── ChatMsgViewAdapter$IMsgViewType.class
│ │ │ │ │ ├── ChatMsgViewAdapter$ViewHolder.class
│ │ │ │ │ ├── ChatMsgViewAdapter.class
│ │ │ │ │ ├── Exit$1.class
│ │ │ │ │ ├── Exit.class
│ │ │ │ │ ├── ExitFromSettings$1.class
│ │ │ │ │ ├── ExitFromSettings.class
│ │ │ │ │ ├── InfoXiaohei.class
│ │ │ │ │ ├── InfoXiaoheiHead.class
│ │ │ │ │ ├── LoadingActivity$1.class
│ │ │ │ │ ├── LoadingActivity.class
│ │ │ │ │ ├── Login.class
│ │ │ │ │ ├── MainTopRightDialog$1.class
│ │ │ │ │ ├── MainTopRightDialog.class
│ │ │ │ │ ├── MainWeixin$1.class
│ │ │ │ │ ├── MainWeixin$2.class
│ │ │ │ │ ├── MainWeixin$MyOnClickListener.class
│ │ │ │ │ ├── MainWeixin$MyOnPageChangeListener.class
│ │ │ │ │ ├── MainWeixin.class
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$menu.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── ShakeActivity$1.class
│ │ │ │ │ ├── ShakeActivity$2.class
│ │ │ │ │ ├── ShakeActivity$3$1.class
│ │ │ │ │ ├── ShakeActivity$3.class
│ │ │ │ │ ├── ShakeActivity.class
│ │ │ │ │ ├── ShakeListener$OnShakeListener.class
│ │ │ │ │ ├── ShakeListener.class
│ │ │ │ │ ├── Welcome.class
│ │ │ │ │ ├── Whatsnew$1.class
│ │ │ │ │ ├── Whatsnew$MyOnPageChangeListener.class
│ │ │ │ │ ├── Whatsnew.class
│ │ │ │ │ ├── WhatsnewDoor$1.class
│ │ │ │ │ └── WhatsnewDoor.class
│ │ │ │ ├── confirm_dialog_bg2.9.png
│ │ │ │ ├── confirm_dialog_bg.9.png
│ │ │ │ ├── copyright.png
│ │ │ │ ├── exit_dialog_bg.9.png
│ │ │ │ ├── find_more_friend_addfriend_icon.png
│ │ │ │ ├── find_more_friend_shake.png
│ │ │ │ ├── ic_action_search.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── ic_preference_first_normal.9.png
│ │ │ │ ├── ic_preference_first_pressed.9.png
│ │ │ │ ├── ic_preference_last_normal.9.png
│ │ │ │ ├── ic_preference_last_pressed.9.png
│ │ │ │ ├── ic_preference_normal.9.png
│ │ │ │ ├── ic_preference_pressed.9.png
│ │ │ │ ├── ic_preference_single_normal.9.png
│ │ │ │ ├── ic_preference_single_pressed.9.png
│ │ │ │ ├── loading_bg.9.png
│ │ │ │ ├── loading.png
│ │ │ │ ├── load.png
│ │ │ │ ├── login_edit_normal.9.png
│ │ │ │ ├── login_edit_pressed.9.png
│ │ │ │ ├── login_error_icon.png
│ │ │ │ ├── menu_bg.9.png
│ │ │ │ ├── menu_bg_normal2.9.png
│ │ │ │ ├── menu_bg_normal.9.png
│ │ │ │ ├── menu_bg_pressed.9.png
│ │ │ │ ├── mini_avatar_shadow.png
│ │ │ │ ├── mm_listitem_grey_normal.9.png
│ │ │ │ ├── mm_listitem_normal.9.png
│ │ │ │ ├── mm_listitem_pressed.9.png
│ │ │ │ ├── mm_listitem_simple.9.png
│ │ │ │ ├── mm_submenu_normal.png
│ │ │ │ ├── mm_submenu_pressed.png
│ │ │ │ ├── mm_title_back_focused.9.png
│ │ │ │ ├── mm_title_back_normal.9.png
│ │ │ │ ├── mm_title_back_pressed.9.png
│ │ │ │ ├── mm_title_btn_compose_normal.png
│ │ │ │ ├── mm_title_btn_contact_normal.png
│ │ │ │ ├── mm_title_btn_focused.9.png
│ │ │ │ ├── mm_title_btn_keyboard_normal.png
│ │ │ │ ├── mm_title_btn_menu_disable.png
│ │ │ │ ├── mm_title_btn_menu_normal.png
│ │ │ │ ├── mm_title_btn_normal.9.png
│ │ │ │ ├── mm_title_btn_pressed.9.png
│ │ │ │ ├── mm_title_btn_qrcode_normal.png
│ │ │ │ ├── mm_title_btn_receiver_normal.png
│ │ │ │ ├── my_wx.jpg
│ │ │ │ ├── renma.png
│ │ │ │ ├── right.png
│ │ │ │ ├── search_bar_bg.9.png
│ │ │ │ ├── search_bar_edit_normal.9.png
│ │ │ │ ├── search_bar_edit_pressed.9.png
│ │ │ │ ├── search_bar_icon_normal.png
│ │ │ │ ├── shake_bg.jpg
│ │ │ │ ├── shakehideimg_man2.png
│ │ │ │ ├── shakehideimg_man.png
│ │ │ │ ├── shake_line_up.png
│ │ │ │ ├── shake_logo_down.png
│ │ │ │ ├── shake_logo_up.png
│ │ │ │ ├── shake_report_dragger_down_normal.png
│ │ │ │ ├── shake_report_dragger_down_pressed.png
│ │ │ │ ├── shake_report_dragger_up_normal.png
│ │ │ │ ├── shake_report_dragger_up_pressed.png
│ │ │ │ ├── tab_address_normal.png
│ │ │ │ ├── tab_address_pressed.png
│ │ │ │ ├── tab_bg2.png
│ │ │ │ ├── tab_bg.9.png
│ │ │ │ ├── tab_find_frd_normal.png
│ │ │ │ ├── tab_find_frd_pressed.png
│ │ │ │ ├── tab_settings_normal.png
│ │ │ │ ├── tab_settings_pressed.png
│ │ │ │ ├── tab_weixin_normal.png
│ │ │ │ ├── tab_weixin_pressed.png
│ │ │ │ ├── title_bar.9.png
│ │ │ │ ├── title_btn_function.png
│ │ │ │ ├── title_function_bg.9.png
│ │ │ │ ├── voice_rcd_btn_nor.9.png
│ │ │ │ ├── voice_rcd_btn_pressed.9.png
│ │ │ │ ├── w01.jpg
│ │ │ │ ├── w02.jpg
│ │ │ │ ├── w03.jpg
│ │ │ │ ├── w04.jpg
│ │ │ │ ├── w05.jpg
│ │ │ │ ├── welcome.jpg
│ │ │ │ ├── whats_new_start_btn_normal.9.png
│ │ │ │ ├── whats_new_start_btn_pressed.9.png
│ │ │ │ ├── w_left.png
│ │ │ │ ├── w_right.png
│ │ │ │ ├── xiaohei_big.jpg
│ │ │ │ └── xiaohei.png
│ │ │ ├── classes.dex
│ │ │ ├── cn.buaa.myweixin.Appstart.apk
│ │ │ ├── jarlist.cache
│ │ │ ├── MyAppWeixin.apk
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── bottom_bar.9.png
│ │ │ │ │ ├── btn_cancle_normal.9.png
│ │ │ │ │ ├── btn_cancle_pressed.9.png
│ │ │ │ │ ├── btn_close.png
│ │ │ │ │ ├── btn_normal.9.png
│ │ │ │ │ ├── btn_pressed.9.png
│ │ │ │ │ ├── btn_style_alert_dialog_button_normal.9.png
│ │ │ │ │ ├── btn_style_alert_dialog_button_pressed.9.png
│ │ │ │ │ ├── btn_style_alert_dialog_cancel_normal.9.png
│ │ │ │ │ ├── btn_style_alert_dialog_special_normal.9.png
│ │ │ │ │ ├── btn_style_alert_dialog_special_pressed.9.png
│ │ │ │ │ ├── btn_style_five_focused.9.png
│ │ │ │ │ ├── btn_style_five_normal.9.png
│ │ │ │ │ ├── btn_style_five_pressed.9.png
│ │ │ │ │ ├── btn_style_four_focused.9.png
│ │ │ │ │ ├── btn_style_four_normal.9.png
│ │ │ │ │ ├── btn_style_four_pressed.9.png
│ │ │ │ │ ├── btn_style_one_disabled.9.png
│ │ │ │ │ ├── btn_style_one_focused.9.png
│ │ │ │ │ ├── btn_style_one_normal.9.png
│ │ │ │ │ ├── btn_style_one_pressed.9.png
│ │ │ │ │ ├── btn_style_two_focused.9.png
│ │ │ │ │ ├── btn_style_two_normal.9.png
│ │ │ │ │ ├── btn_style_two_pressed.9.png
│ │ │ │ │ ├── btn_style_zero_focused.9.png
│ │ │ │ │ ├── btn_style_zero_normal.9.png
│ │ │ │ │ ├── btn_style_zero_pressed.9.png
│ │ │ │ │ ├── chat_footer_bg.png
│ │ │ │ │ ├── chatfrom_bg_focused.9.png
│ │ │ │ │ ├── chatfrom_bg_normal.9.png
│ │ │ │ │ ├── chatfrom_bg_pressed.9.png
│ │ │ │ │ ├── chatto_bg_focused.9.png
│ │ │ │ │ ├── chatto_bg_normal.9.png
│ │ │ │ │ ├── chatto_bg_pressed.9.png
│ │ │ │ │ ├── confirm_dialog_bg2.9.png
│ │ │ │ │ ├── confirm_dialog_bg.9.png
│ │ │ │ │ ├── copyright.png
│ │ │ │ │ ├── exit_dialog_bg.9.png
│ │ │ │ │ ├── find_more_friend_addfriend_icon.png
│ │ │ │ │ ├── find_more_friend_shake.png
│ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── ic_preference_first_normal.9.png
│ │ │ │ │ ├── ic_preference_first_pressed.9.png
│ │ │ │ │ ├── ic_preference_last_normal.9.png
│ │ │ │ │ ├── ic_preference_last_pressed.9.png
│ │ │ │ │ ├── ic_preference_normal.9.png
│ │ │ │ │ ├── ic_preference_pressed.9.png
│ │ │ │ │ ├── ic_preference_single_normal.9.png
│ │ │ │ │ ├── ic_preference_single_pressed.9.png
│ │ │ │ │ ├── loading_bg.9.png
│ │ │ │ │ ├── loading.png
│ │ │ │ │ ├── load.png
│ │ │ │ │ ├── login_edit_normal.9.png
│ │ │ │ │ ├── login_edit_pressed.9.png
│ │ │ │ │ ├── login_error_icon.png
│ │ │ │ │ ├── menu_bg.9.png
│ │ │ │ │ ├── menu_bg_normal2.9.png
│ │ │ │ │ ├── menu_bg_normal.9.png
│ │ │ │ │ ├── menu_bg_pressed.9.png
│ │ │ │ │ ├── mini_avatar_shadow.png
│ │ │ │ │ ├── mm_listitem_grey_normal.9.png
│ │ │ │ │ ├── mm_listitem_normal.9.png
│ │ │ │ │ ├── mm_listitem_pressed.9.png
│ │ │ │ │ ├── mm_listitem_simple.9.png
│ │ │ │ │ ├── mm_submenu_normal.png
│ │ │ │ │ ├── mm_submenu_pressed.png
│ │ │ │ │ ├── mm_title_back_focused.9.png
│ │ │ │ │ ├── mm_title_back_normal.9.png
│ │ │ │ │ ├── mm_title_back_pressed.9.png
│ │ │ │ │ ├── mm_title_btn_compose_normal.png
│ │ │ │ │ ├── mm_title_btn_contact_normal.png
│ │ │ │ │ ├── mm_title_btn_focused.9.png
│ │ │ │ │ ├── mm_title_btn_keyboard_normal.png
│ │ │ │ │ ├── mm_title_btn_menu_disable.png
│ │ │ │ │ ├── mm_title_btn_menu_normal.png
│ │ │ │ │ ├── mm_title_btn_normal.9.png
│ │ │ │ │ ├── mm_title_btn_pressed.9.png
│ │ │ │ │ ├── mm_title_btn_qrcode_normal.png
│ │ │ │ │ ├── mm_title_btn_receiver_normal.png
│ │ │ │ │ ├── renma.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ ├── search_bar_bg.9.png
│ │ │ │ │ ├── search_bar_edit_normal.9.png
│ │ │ │ │ ├── search_bar_edit_pressed.9.png
│ │ │ │ │ ├── search_bar_icon_normal.png
│ │ │ │ │ ├── shakehideimg_man2.png
│ │ │ │ │ ├── shakehideimg_man.png
│ │ │ │ │ ├── shake_line_up.png
│ │ │ │ │ ├── shake_logo_down.png
│ │ │ │ │ ├── shake_logo_up.png
│ │ │ │ │ ├── shake_report_dragger_down_normal.png
│ │ │ │ │ ├── shake_report_dragger_down_pressed.png
│ │ │ │ │ ├── shake_report_dragger_up_normal.png
│ │ │ │ │ ├── shake_report_dragger_up_pressed.png
│ │ │ │ │ ├── tab_address_normal.png
│ │ │ │ │ ├── tab_address_pressed.png
│ │ │ │ │ ├── tab_bg2.png
│ │ │ │ │ ├── tab_bg.9.png
│ │ │ │ │ ├── tab_find_frd_normal.png
│ │ │ │ │ ├── tab_find_frd_pressed.png
│ │ │ │ │ ├── tab_settings_normal.png
│ │ │ │ │ ├── tab_settings_pressed.png
│ │ │ │ │ ├── tab_weixin_normal.png
│ │ │ │ │ ├── tab_weixin_pressed.png
│ │ │ │ │ ├── title_btn_function.png
│ │ │ │ │ ├── title_function_bg.9.png
│ │ │ │ │ ├── voice_rcd_btn_nor.9.png
│ │ │ │ │ ├── voice_rcd_btn_pressed.9.png
│ │ │ │ │ ├── whats_new_start_btn_normal.9.png
│ │ │ │ │ ├── whats_new_start_btn_pressed.9.png
│ │ │ │ │ ├── w_left.png
│ │ │ │ │ ├── w_right.png
│ │ │ │ │ └── xiaohei.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ ├── ic_action_search.png
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── page_now.png
│ │ │ │ │ └── page.png
│ │ │ │ └── drawable-xhdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── cn
│ │ │ └── buaa
│ │ │ └── myweixin
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ │ ├── ic_launcher-web.png
│ │ ├── libs
│ │ │ └── android-support-v4.jar
│ │ ├── proguard-project.txt
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── anim
│ │ │ │ ├── fade_in.xml
│ │ │ │ ├── fade_out.xml
│ │ │ │ ├── head_in.xml
│ │ │ │ ├── head_out.xml
│ │ │ │ ├── hold_long.xml
│ │ │ │ ├── hold.xml
│ │ │ │ ├── push_bottom_in.xml
│ │ │ │ ├── push_bottom_out.xml
│ │ │ │ ├── push_top_in2.xml
│ │ │ │ ├── push_top_in.xml
│ │ │ │ ├── push_top_out2.xml
│ │ │ │ └── push_top_out.xml
│ │ │ ├── drawable
│ │ │ │ ├── btn_style_alert_dialog_button.xml
│ │ │ │ ├── btn_style_alert_dialog_cancel.xml
│ │ │ │ ├── btn_style_alert_dialog_special.xml
│ │ │ │ ├── btn_style_blue.xml
│ │ │ │ ├── btn_style_green.xml
│ │ │ │ ├── btn_style_red.xml
│ │ │ │ ├── btn_style_white.xml
│ │ │ │ ├── chatfrom_bg.xml
│ │ │ │ ├── chat_send_btn.xml
│ │ │ │ ├── chatto_bg.xml
│ │ │ │ ├── login_editbox.xml
│ │ │ │ ├── menu_btn_bg.xml
│ │ │ │ ├── mm_listitem.xml
│ │ │ │ ├── mm_submenu.xml
│ │ │ │ ├── mm_title_btn_menu.xml
│ │ │ │ ├── my_progress_bar_drawable.xml
│ │ │ │ ├── preference_first_item.xml
│ │ │ │ ├── preference_item.xml
│ │ │ │ ├── preference_last_item.xml
│ │ │ │ ├── preference_single_item.xml
│ │ │ │ ├── search_bar_edit_bg.xml
│ │ │ │ ├── shake_report_dragger_down.xml
│ │ │ │ ├── shake_report_dragger_up.xml
│ │ │ │ ├── tab_address.xml
│ │ │ │ ├── tab_find_frd.xml
│ │ │ │ ├── tab_settings.xml
│ │ │ │ ├── tab_weixin.xml
│ │ │ │ ├── title_btn_back.xml
│ │ │ │ └── title_btn_right.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── bottom_bar.9.png
│ │ │ │ ├── btn_cancle_normal.9.png
│ │ │ │ ├── btn_cancle_pressed.9.png
│ │ │ │ ├── btn_close.png
│ │ │ │ ├── btn_normal.9.png
│ │ │ │ ├── btn_pressed.9.png
│ │ │ │ ├── btn_style_alert_dialog_button_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_button_pressed.9.png
│ │ │ │ ├── btn_style_alert_dialog_cancel_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_special_normal.9.png
│ │ │ │ ├── btn_style_alert_dialog_special_pressed.9.png
│ │ │ │ ├── btn_style_five_focused.9.png
│ │ │ │ ├── btn_style_five_normal.9.png
│ │ │ │ ├── btn_style_five_pressed.9.png
│ │ │ │ ├── btn_style_four_focused.9.png
│ │ │ │ ├── btn_style_four_normal.9.png
│ │ │ │ ├── btn_style_four_pressed.9.png
│ │ │ │ ├── btn_style_one_disabled.9.png
│ │ │ │ ├── btn_style_one_focused.9.png
│ │ │ │ ├── btn_style_one_normal.9.png
│ │ │ │ ├── btn_style_one_pressed.9.png
│ │ │ │ ├── btn_style_two_focused.9.png
│ │ │ │ ├── btn_style_two_normal.9.png
│ │ │ │ ├── btn_style_two_pressed.9.png
│ │ │ │ ├── btn_style_zero_focused.9.png
│ │ │ │ ├── btn_style_zero_normal.9.png
│ │ │ │ ├── btn_style_zero_pressed.9.png
│ │ │ │ ├── chat_bg_default.jpg
│ │ │ │ ├── chat_footer_bg.png
│ │ │ │ ├── chatfrom_bg_focused.9.png
│ │ │ │ ├── chatfrom_bg_normal.9.png
│ │ │ │ ├── chatfrom_bg_pressed.9.png
│ │ │ │ ├── chatto_bg_focused.9.png
│ │ │ │ ├── chatto_bg_normal.9.png
│ │ │ │ ├── chatto_bg_pressed.9.png
│ │ │ │ ├── confirm_dialog_bg2.9.png
│ │ │ │ ├── confirm_dialog_bg.9.png
│ │ │ │ ├── copyright.png
│ │ │ │ ├── exit_dialog_bg.9.png
│ │ │ │ ├── find_more_friend_addfriend_icon.png
│ │ │ │ ├── find_more_friend_shake.png
│ │ │ │ ├── ic_action_search.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── ic_preference_first_normal.9.png
│ │ │ │ ├── ic_preference_first_pressed.9.png
│ │ │ │ ├── ic_preference_last_normal.9.png
│ │ │ │ ├── ic_preference_last_pressed.9.png
│ │ │ │ ├── ic_preference_normal.9.png
│ │ │ │ ├── ic_preference_pressed.9.png
│ │ │ │ ├── ic_preference_single_normal.9.png
│ │ │ │ ├── ic_preference_single_pressed.9.png
│ │ │ │ ├── loading_bg.9.png
│ │ │ │ ├── loading.png
│ │ │ │ ├── load.png
│ │ │ │ ├── login_edit_normal.9.png
│ │ │ │ ├── login_edit_pressed.9.png
│ │ │ │ ├── login_error_icon.png
│ │ │ │ ├── menu_bg.9.png
│ │ │ │ ├── menu_bg_normal2.9.png
│ │ │ │ ├── menu_bg_normal.9.png
│ │ │ │ ├── menu_bg_pressed.9.png
│ │ │ │ ├── mini_avatar_shadow.png
│ │ │ │ ├── mm_listitem_grey_normal.9.png
│ │ │ │ ├── mm_listitem_normal.9.png
│ │ │ │ ├── mm_listitem_pressed.9.png
│ │ │ │ ├── mm_listitem_simple.9.png
│ │ │ │ ├── mm_submenu_normal.png
│ │ │ │ ├── mm_submenu_pressed.png
│ │ │ │ ├── mm_title_back_focused.9.png
│ │ │ │ ├── mm_title_back_normal.9.png
│ │ │ │ ├── mm_title_back_pressed.9.png
│ │ │ │ ├── mm_title_btn_compose_normal.png
│ │ │ │ ├── mm_title_btn_contact_normal.png
│ │ │ │ ├── mm_title_btn_focused.9.png
│ │ │ │ ├── mm_title_btn_keyboard_normal.png
│ │ │ │ ├── mm_title_btn_menu_disable.png
│ │ │ │ ├── mm_title_btn_menu_normal.png
│ │ │ │ ├── mm_title_btn_normal.9.png
│ │ │ │ ├── mm_title_btn_pressed.9.png
│ │ │ │ ├── mm_title_btn_qrcode_normal.png
│ │ │ │ ├── mm_title_btn_receiver_normal.png
│ │ │ │ ├── my_wx.jpg
│ │ │ │ ├── renma.png
│ │ │ │ ├── right.png
│ │ │ │ ├── search_bar_bg.9.png
│ │ │ │ ├── search_bar_edit_normal.9.png
│ │ │ │ ├── search_bar_edit_pressed.9.png
│ │ │ │ ├── search_bar_icon_normal.png
│ │ │ │ ├── shake_bg.jpg
│ │ │ │ ├── shakehideimg_man2.png
│ │ │ │ ├── shakehideimg_man.png
│ │ │ │ ├── shake_line_up.png
│ │ │ │ ├── shake_logo_down.png
│ │ │ │ ├── shake_logo_up.png
│ │ │ │ ├── shake_report_dragger_down_normal.png
│ │ │ │ ├── shake_report_dragger_down_pressed.png
│ │ │ │ ├── shake_report_dragger_up_normal.png
│ │ │ │ ├── shake_report_dragger_up_pressed.png
│ │ │ │ ├── tab_address_normal.png
│ │ │ │ ├── tab_address_pressed.png
│ │ │ │ ├── tab_bg2.png
│ │ │ │ ├── tab_bg.9.png
│ │ │ │ ├── tab_find_frd_normal.png
│ │ │ │ ├── tab_find_frd_pressed.png
│ │ │ │ ├── tab_settings_normal.png
│ │ │ │ ├── tab_settings_pressed.png
│ │ │ │ ├── tab_weixin_normal.png
│ │ │ │ ├── tab_weixin_pressed.png
│ │ │ │ ├── title_bar.9.png
│ │ │ │ ├── title_btn_function.png
│ │ │ │ ├── title_function_bg.9.png
│ │ │ │ ├── voice_rcd_btn_nor.9.png
│ │ │ │ ├── voice_rcd_btn_pressed.9.png
│ │ │ │ ├── w01.jpg
│ │ │ │ ├── w02.jpg
│ │ │ │ ├── w03.jpg
│ │ │ │ ├── w04.jpg
│ │ │ │ ├── w05.jpg
│ │ │ │ ├── welcome.jpg
│ │ │ │ ├── whats_new_start_btn_normal.9.png
│ │ │ │ ├── whats_new_start_btn_pressed.9.png
│ │ │ │ ├── w_left.png
│ │ │ │ ├── w_right.png
│ │ │ │ ├── xiaohei_big.jpg
│ │ │ │ └── xiaohei.png
│ │ │ ├── drawable-ldpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── welcome.jpg
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── page_now.png
│ │ │ │ └── page.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_action_search.png
│ │ │ │ └── ic_launcher.png
│ │ │ ├── layout
│ │ │ │ ├── appstart.xml
│ │ │ │ ├── chatting_item_msg_text_left.xml
│ │ │ │ ├── chatting_item_msg_text_right.xml
│ │ │ │ ├── chat_xiaohei.xml
│ │ │ │ ├── exit_dialog_from_settings.xml
│ │ │ │ ├── exit_dialog.xml
│ │ │ │ ├── info_xiaohei_head.xml
│ │ │ │ ├── info_xiaohei.xml
│ │ │ │ ├── loading.xml
│ │ │ │ ├── login.xml
│ │ │ │ ├── main_menu.xml
│ │ │ │ ├── main_tab_address.xml
│ │ │ │ ├── main_tab_friends.xml
│ │ │ │ ├── main_tab_settings.xml
│ │ │ │ ├── main_tab_weixin.xml
│ │ │ │ ├── main_top_right_dialog.xml
│ │ │ │ ├── main_weixin.xml
│ │ │ │ ├── main.xml
│ │ │ │ ├── shake_activity.xml
│ │ │ │ ├── welcome.xml
│ │ │ │ ├── whats1.xml
│ │ │ │ ├── whats2.xml
│ │ │ │ ├── whats3.xml
│ │ │ │ ├── whats4.xml
│ │ │ │ ├── whats5.xml
│ │ │ │ ├── whats6.xml
│ │ │ │ ├── whats_door.xml
│ │ │ │ └── whatsnew_viewpager.xml
│ │ │ ├── menu
│ │ │ │ └── main.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── src
│ │ └── cn
│ │ └── buaa
│ │ └── myweixin
│ │ ├── Appstart.java
│ │ ├── ChatActivity.java
│ │ ├── ChatMsgEntity.java
│ │ ├── ChatMsgViewAdapter.java
│ │ ├── ExitFromSettings.java
│ │ ├── Exit.java
│ │ ├── InfoXiaoheiHead.java
│ │ ├── InfoXiaohei.java
│ │ ├── LoadingActivity.java
│ │ ├── Login.java
│ │ ├── MainTopRightDialog.java
│ │ ├── MainWeixin.java
│ │ ├── ShakeActivity.java
│ │ ├── ShakeListener.java
│ │ ├── Welcome.java
│ │ ├── WhatsnewDoor.java
│ │ └── Whatsnew.java
│ ├── 5
│ │ └── CrazyFootball
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── classes.dex
│ │ │ ├── Football.apk
│ │ │ ├── resources.ap_
│ │ │ └── wyf
│ │ │ └── wpf
│ │ │ ├── AIThread.class
│ │ │ ├── Ball.class
│ │ │ ├── Bonus$1.class
│ │ │ ├── Bonus$2.class
│ │ │ ├── Bonus.class
│ │ │ ├── BonusManager.class
│ │ │ ├── CustomGallery.class
│ │ │ ├── DrawThread.class
│ │ │ ├── FootballActivity$1.class
│ │ │ ├── FootballActivity.class
│ │ │ ├── GameView.class
│ │ │ ├── IceBonus.class
│ │ │ ├── LargerGoalBonus.class
│ │ │ ├── LoadingDrawThread.class
│ │ │ ├── LoadingView.class
│ │ │ ├── Player.class
│ │ │ ├── PlayerMoveThread.class
│ │ │ ├── R$anim.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$raw.class
│ │ │ ├── R$string.class
│ │ │ ├── R$styleable.class
│ │ │ ├── R.class
│ │ │ ├── WelcomeDrawThread.class
│ │ │ ├── WelcomeThread.class
│ │ │ └── WelcomeView.class
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── wyf
│ │ │ └── wpf
│ │ │ └── R.java
│ │ ├── res
│ │ │ ├── anim
│ │ │ │ ├── animation_rotate_1.xml
│ │ │ │ └── frame_animation_1.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ai_club.png
│ │ │ │ ├── ai_player.png
│ │ │ │ ├── ball.png
│ │ │ │ ├── bck_field.png
│ │ │ │ ├── bonus_g1.png
│ │ │ │ ├── bonus_g2.png
│ │ │ │ ├── bonus_i1.png
│ │ │ │ ├── bonus_i2.png
│ │ │ │ ├── club_1.png
│ │ │ │ ├── club_2.png
│ │ │ │ ├── club_3.png
│ │ │ │ ├── club_4.png
│ │ │ │ ├── club_5.png
│ │ │ │ ├── club_6.png
│ │ │ │ ├── club_7.png
│ │ │ │ ├── club_8.png
│ │ │ │ ├── dialog.png
│ │ │ │ ├── digit_0.png
│ │ │ │ ├── digit_1.png
│ │ │ │ ├── digit_2.png
│ │ │ │ ├── digit_3.png
│ │ │ │ ├── digit_4.png
│ │ │ │ ├── digit_5.png
│ │ │ │ ├── digit_6.png
│ │ │ │ ├── digit_7.png
│ │ │ │ ├── digit_8.png
│ │ │ │ ├── digit_9.png
│ │ │ │ ├── field.png
│ │ │ │ ├── fwd_field.png
│ │ │ │ ├── game_goal.png
│ │ │ │ ├── game_lose.png
│ │ │ │ ├── game_over.png
│ │ │ │ ├── game_pass.png
│ │ │ │ ├── game_win.png
│ │ │ │ ├── goal1.png
│ │ │ │ ├── goal2.png
│ │ │ │ ├── ice.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── load.jpg
│ │ │ │ ├── menu.png
│ │ │ │ ├── mid_field.png
│ │ │ │ ├── minus.png
│ │ │ │ ├── p1.jpg
│ │ │ │ ├── p2.jpg
│ │ │ │ ├── p3.jpg
│ │ │ │ ├── player18.png
│ │ │ │ ├── player20.png
│ │ │ │ ├── plus.png
│ │ │ │ ├── prog1.png
│ │ │ │ ├── prog2.png
│ │ │ │ ├── prog3.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── quit.png
│ │ │ │ ├── sound1.png
│ │ │ │ ├── sound2.png
│ │ │ │ ├── start.png
│ │ │ │ └── welcome.jpg
│ │ │ ├── layout
│ │ │ │ └── main.xml
│ │ │ ├── raw
│ │ │ │ ├── cheer_goal.mp3
│ │ │ │ ├── cheer_lose.mp3
│ │ │ │ ├── cheer_win.mp3
│ │ │ │ ├── ice.mp3
│ │ │ │ ├── kick.mp3
│ │ │ │ ├── lager_goal.mp3
│ │ │ │ └── music.mp3
│ │ │ └── values
│ │ │ ├── attrs.xml
│ │ │ └── strings.xml
│ │ └── src
│ │ └── wyf
│ │ └── wpf
│ │ ├── AIThread.java
│ │ ├── Ball.java
│ │ ├── Bonus.java
│ │ ├── BonusManager.java
│ │ ├── CustomGallery.java
│ │ ├── DrawThread.java
│ │ ├── FootballActivity.java
│ │ ├── GameView.java
│ │ ├── IceBonus.java
│ │ ├── LargerGoalBonus.java
│ │ ├── LoadingDrawThread.java
│ │ ├── LoadingView.java
│ │ ├── Player.java
│ │ ├── PlayerMoveThread.java
│ │ ├── WelcomeDrawThread.java
│ │ ├── WelcomeThread.java
│ │ └── WelcomeView.java
│ ├── 6
│ │ └── GyroscopeExplorer
│ │ ├── AndroidManifest.xml
│ │ ├── bin
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── classes.dex
│ │ │ ├── dexedLibs
│ │ │ │ ├── android-support-v4-18dd219796a8ebb54df6e715eaae25df.jar
│ │ │ │ ├── android-support-v4-76c26b074fccd335629fd8010dbf80f1.jar
│ │ │ │ ├── commons-math3-3.0-786ce8e298a4f05eda2564254fba9297.jar
│ │ │ │ └── commons-math3-3.0-9b738942f85d3668baf0b3b032ed709b.jar
│ │ │ ├── GyroscopeExplorer.apk
│ │ │ ├── jarlist.cache
│ │ │ ├── res
│ │ │ │ └── crunch
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── color_bar.png
│ │ │ │ │ ├── confirm_button_background.png
│ │ │ │ │ ├── gyroscope_explorer_introduction_0.png
│ │ │ │ │ ├── gyroscope_explorer_introduction_1.png
│ │ │ │ │ ├── gyroscope_explorer_introduction_2.png
│ │ │ │ │ ├── gyroscope_explorer_introduction_3.png
│ │ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ │ └── ke_icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ ├── color_bar.png
│ │ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ │ └── ke_icon.png
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ ├── color_bar.png
│ │ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ │ └── ke_icon.png
│ │ │ │ └── drawable-xxhdpi
│ │ │ │ └── gyroscope_explorer.png
│ │ │ └── resources.ap_
│ │ ├── ic_launcher-web.png
│ │ ├── libs
│ │ │ ├── android-support-v4.jar
│ │ │ └── commons-math3-3.0.jar
│ │ ├── proguard-project.txt
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── color_bar.png
│ │ │ │ ├── confirm_button_background.png
│ │ │ │ ├── gyroscope_explorer_introduction_0.png
│ │ │ │ ├── gyroscope_explorer_introduction_1.png
│ │ │ │ ├── gyroscope_explorer_introduction_2.png
│ │ │ │ ├── gyroscope_explorer_introduction_3.png
│ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ └── ke_icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── color_bar.png
│ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ └── ke_icon.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── color_bar.png
│ │ │ │ ├── gyroscope_explorer.png
│ │ │ │ └── ke_icon.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── gyroscope_explorer.png
│ │ │ ├── layout
│ │ │ │ ├── activity_gyroscope.xml
│ │ │ │ └── introduction_layout.xml
│ │ │ ├── menu
│ │ │ │ └── gyroscope.xml
│ │ │ ├── values
│ │ │ │ ├── colors.xml
│ │ │ │ ├── dimens.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── values-sw600dp
│ │ │ │ └── dimens.xml
│ │ │ ├── values-sw720dp-land
│ │ │ │ └── dimens.xml
│ │ │ ├── values-v11
│ │ │ │ └── styles.xml
│ │ │ ├── values-v14
│ │ │ │ └── styles.xml
│ │ │ └── xml
│ │ │ └── preferences.xml
│ │ └── src
│ │ └── com
│ │ └── kircherelectronics
│ │ └── gyroscopeexplorer
│ │ ├── activity
│ │ │ ├── ConfigActivity.java
│ │ │ ├── filter
│ │ │ │ └── MeanFilter.java
│ │ │ ├── gauge
│ │ │ │ └── flat
│ │ │ │ ├── GaugeBearingFlat.java
│ │ │ │ ├── GaugeRotationFlat.java
│ │ │ │ └── UnitsOfMeasure.java
│ │ │ ├── GyroscopeActivity.java
│ │ │ ├── IntroductionActivity.java
│ │ │ ├── prefs
│ │ │ │ ├── HintsPreferences.java
│ │ │ │ └── PreferenceNames.java
│ │ │ └── utils
│ │ │ └── Utils.java
│ │ └── sensor
│ │ ├── FusedGyroscopeSensor.java
│ │ └── listener
│ │ └── FusedGyroscopeSensorListener.java
│ ├── 7
│ │ └── google map
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── bin
│ │ │ ├── classes.dex
│ │ │ ├── com
│ │ │ │ └── googlemap
│ │ │ │ ├── DbAdapter$DatabaseHelper.class
│ │ │ │ ├── DbAdapter.class
│ │ │ │ ├── Helps.class
│ │ │ │ ├── iTracks.class
│ │ │ │ ├── LocateDbAdapter.class
│ │ │ │ ├── LocateOverLay.class
│ │ │ │ ├── NewTrack$1.class
│ │ │ │ ├── NewTrack.class
│ │ │ │ ├── R$array.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R.class
│ │ │ │ ├── Setting$1.class
│ │ │ │ ├── Setting.class
│ │ │ │ ├── ShowTrack$10.class
│ │ │ │ ├── ShowTrack$11.class
│ │ │ │ ├── ShowTrack$1.class
│ │ │ │ ├── ShowTrack$2.class
│ │ │ │ ├── ShowTrack$3.class
│ │ │ │ ├── ShowTrack$4.class
│ │ │ │ ├── ShowTrack$5.class
│ │ │ │ ├── ShowTrack$6.class
│ │ │ │ ├── ShowTrack$7.class
│ │ │ │ ├── ShowTrack$8.class
│ │ │ │ ├── ShowTrack$9.class
│ │ │ │ ├── ShowTrack$MyLocationListener.class
│ │ │ │ ├── ShowTrack$MyOverlay.class
│ │ │ │ ├── ShowTrack.class
│ │ │ │ ├── Track$MyLocationListener.class
│ │ │ │ ├── Track.class
│ │ │ │ └── TrackDbAdapter.class
│ │ │ ├── google map.apk
│ │ │ └── resources.ap_
│ │ ├── default.properties
│ │ ├── gen
│ │ │ └── com
│ │ │ └── googlemap
│ │ │ └── R.java
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── back.png
│ │ │ │ ├── con_track.png
│ │ │ │ ├── delete.png
│ │ │ │ ├── exit.png
│ │ │ │ ├── helps.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── new_track.png
│ │ │ │ └── setting.png
│ │ │ ├── layout
│ │ │ │ ├── helps.xml
│ │ │ │ ├── main.xml
│ │ │ │ ├── new_track.xml
│ │ │ │ ├── setting.xml
│ │ │ │ ├── show_track.xml
│ │ │ │ └── track_row.xml
│ │ │ └── values
│ │ │ ├── arrays.xml
│ │ │ ├── helps.xml
│ │ │ └── strings.xml
│ │ └── src
│ │ └── com
│ │ └── googlemap
│ │ ├── DbAdapter.java
│ │ ├── Helps.java
│ │ ├── iTracks.java
│ │ ├── LocateDbAdapter.java
│ │ ├── LocateOverLay.java
│ │ ├── NewTrack.java
│ │ ├── Setting.java
│ │ ├── ShowTrack.java
│ │ ├── TrackDbAdapter.java
│ │ └── Track.java
│ └── 8
│ └── light
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── apple.apk
│ │ ├── classes
│ │ │ └── com
│ │ │ └── qxw
│ │ │ └── music
│ │ │ ├── BluetoothMain$1.class
│ │ │ ├── BluetoothMain$ClickEvent.class
│ │ │ ├── BluetoothMain.class
│ │ │ ├── BuildConfig.class
│ │ │ ├── company$1.class
│ │ │ ├── company.class
│ │ │ ├── Firstpage$1.class
│ │ │ ├── Firstpage$2.class
│ │ │ ├── Firstpage$3.class
│ │ │ ├── Firstpage$4.class
│ │ │ ├── Firstpage$5.class
│ │ │ ├── Firstpage$6.class
│ │ │ ├── Firstpage$7.class
│ │ │ ├── Firstpage$ClickEventKey.class
│ │ │ ├── Firstpage.class
│ │ │ ├── home$1.class
│ │ │ ├── home$2.class
│ │ │ ├── home$3.class
│ │ │ ├── home$4$1.class
│ │ │ ├── home$4$2.class
│ │ │ ├── home$4.class
│ │ │ ├── home.class
│ │ │ ├── Main$1.class
│ │ │ ├── Main$2.class
│ │ │ ├── Main$3.class
│ │ │ ├── Main$RadioClickListener.class
│ │ │ ├── Main$RadioOnClick$1.class
│ │ │ ├── Main$RadioOnClick$2.class
│ │ │ ├── Main$RadioOnClick$3.class
│ │ │ ├── Main$RadioOnClick.class
│ │ │ ├── Main.class
│ │ │ ├── product$1.class
│ │ │ ├── product.class
│ │ │ ├── R$anim.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$color.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R.class
│ │ │ ├── Secondpage$1.class
│ │ │ ├── Secondpage$2.class
│ │ │ ├── Secondpage$3.class
│ │ │ ├── Secondpage$4.class
│ │ │ ├── Secondpage$5.class
│ │ │ ├── Secondpage$ClickEventKey.class
│ │ │ ├── Secondpage.class
│ │ │ ├── Zeropage$1.class
│ │ │ └── Zeropage.class
│ │ ├── classes.dex
│ │ ├── dexedLibs
│ │ │ └── annotations-2b8c0f22d6cae35764f5284e2de4c39d.jar
│ │ ├── jarlist.cache
│ │ ├── res
│ │ │ └── crunch
│ │ │ ├── drawable
│ │ │ │ ├── allclose.png
│ │ │ │ ├── allc.png
│ │ │ │ ├── allopen.png
│ │ │ │ ├── allo.png
│ │ │ │ ├── company.png
│ │ │ │ ├── ctitle.png
│ │ │ │ ├── eghitclose.png
│ │ │ │ ├── eghitc.png
│ │ │ │ ├── eghitopen.png
│ │ │ │ ├── eghito.png
│ │ │ │ ├── enter1.png
│ │ │ │ ├── enter2.png
│ │ │ │ ├── enter3.png
│ │ │ │ ├── enter.png
│ │ │ │ ├── enter_pressed.png
│ │ │ │ ├── fiveclose.png
│ │ │ │ ├── fivec.png
│ │ │ │ ├── fiveopen.png
│ │ │ │ ├── fiveo.png
│ │ │ │ ├── fourclose.png
│ │ │ │ ├── fourc.png
│ │ │ │ ├── fouropen.png
│ │ │ │ ├── fouro.png
│ │ │ │ ├── general_row_bg.png
│ │ │ │ ├── home.png
│ │ │ │ ├── land_more_selected_bg_1.png
│ │ │ │ ├── lanya.png
│ │ │ │ ├── line.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── main_add_enable.png
│ │ │ │ ├── main_add_pressed.png
│ │ │ │ ├── main_back_enable.png
│ │ │ │ ├── main_back_pressed.png
│ │ │ │ ├── main_help_enable.png
│ │ │ │ ├── main_help_pressed.png
│ │ │ │ ├── main_menu_enable.png
│ │ │ │ ├── main_menu_pressed.png
│ │ │ │ ├── oneclose.png
│ │ │ │ ├── onec.png
│ │ │ │ ├── oneopen.png
│ │ │ │ ├── oneo.png
│ │ │ │ ├── one.PNG
│ │ │ │ ├── product.png
│ │ │ │ ├── sevenclose.png
│ │ │ │ ├── sevenc.png
│ │ │ │ ├── sevenopen.png
│ │ │ │ ├── seveno.png
│ │ │ │ ├── sixclose.png
│ │ │ │ ├── sixc.png
│ │ │ │ ├── sixopen.png
│ │ │ │ ├── sixo.png
│ │ │ │ ├── sousuo.png
│ │ │ │ ├── split1.png
│ │ │ │ ├── split.png
│ │ │ │ ├── stand1.png
│ │ │ │ ├── threeclose.png
│ │ │ │ ├── threec.png
│ │ │ │ ├── threeopen.png
│ │ │ │ ├── threeo.png
│ │ │ │ ├── title_background.png
│ │ │ │ ├── title.png
│ │ │ │ ├── twitter1.png
│ │ │ │ ├── twoclose.png
│ │ │ │ ├── twoc.png
│ │ │ │ ├── twoopen.png
│ │ │ │ ├── twoo.png
│ │ │ │ └── widget_background.png
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── donhua.PNG
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ ├── donhua.PNG
│ │ │ │ └── icon.png
│ │ │ └── drawable-mdpi
│ │ │ ├── icon.png
│ │ │ ├── main_help_enable.png
│ │ │ └── main_help_pressed.png
│ │ └── resources.ap_
│ ├── gen
│ │ └── com
│ │ └── qxw
│ │ └── music
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── project.properties
│ ├── res
│ │ ├── anim
│ │ │ ├── my_scale_action.xml
│ │ │ ├── zoomin.xml
│ │ │ └── zoomout.xml
│ │ ├── drawable
│ │ │ ├── allclose.png
│ │ │ ├── allc.png
│ │ │ ├── allopen.png
│ │ │ ├── allo.png
│ │ │ ├── bac.jpg
│ │ │ ├── company.png
│ │ │ ├── ctitle.png
│ │ │ ├── eghitclose.png
│ │ │ ├── eghitc.png
│ │ │ ├── eghitopen.png
│ │ │ ├── eghito.png
│ │ │ ├── enter1.png
│ │ │ ├── enter2.png
│ │ │ ├── enter3.png
│ │ │ ├── enter.png
│ │ │ ├── enter_pressed.png
│ │ │ ├── fiveclose.png
│ │ │ ├── fivec.png
│ │ │ ├── fiveopen.png
│ │ │ ├── fiveo.png
│ │ │ ├── flash.jpg
│ │ │ ├── fourclose.png
│ │ │ ├── fourc.png
│ │ │ ├── fouropen.png
│ │ │ ├── fouro.png
│ │ │ ├── general_row_bg.png
│ │ │ ├── general_topbar_bg.jpg
│ │ │ ├── home.png
│ │ │ ├── ktv.bmp
│ │ │ ├── land_more_selected_bg_1.png
│ │ │ ├── lanya.png
│ │ │ ├── line.png
│ │ │ ├── logo.png
│ │ │ ├── main_add_enable.png
│ │ │ ├── main_add_pressed.png
│ │ │ ├── main_back_enable.png
│ │ │ ├── main_back_pressed.png
│ │ │ ├── main_help_enable.png
│ │ │ ├── main_help_pressed.png
│ │ │ ├── main_menu_enable.png
│ │ │ ├── main_menu_pressed.png
│ │ │ ├── oneclose.png
│ │ │ ├── onec.png
│ │ │ ├── oneopen.png
│ │ │ ├── oneo.png
│ │ │ ├── one.PNG
│ │ │ ├── product.png
│ │ │ ├── sevenclose.png
│ │ │ ├── sevenc.png
│ │ │ ├── sevenopen.png
│ │ │ ├── seveno.png
│ │ │ ├── sixclose.png
│ │ │ ├── sixc.png
│ │ │ ├── sixopen.png
│ │ │ ├── sixo.png
│ │ │ ├── sousuo.png
│ │ │ ├── split1.png
│ │ │ ├── split.png
│ │ │ ├── stand1.png
│ │ │ ├── threeclose.png
│ │ │ ├── threec.png
│ │ │ ├── threeopen.png
│ │ │ ├── threeo.png
│ │ │ ├── title_background.png
│ │ │ ├── title.png
│ │ │ ├── twitter1.png
│ │ │ ├── twoclose.png
│ │ │ ├── twoc.png
│ │ │ ├── twoopen.png
│ │ │ ├── twoo.png
│ │ │ └── widget_background.png
│ │ ├── drawable-hdpi
│ │ │ ├── button1_add_x.xml
│ │ │ ├── button1_c.xml
│ │ │ ├── button2_c.xml
│ │ │ ├── button2_o.xml
│ │ │ ├── button3_c.xml
│ │ │ ├── button3_o.xml
│ │ │ ├── button4_c.xml
│ │ │ ├── button4_o.xml
│ │ │ ├── donhua.PNG
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ ├── button5_c.xml
│ │ │ ├── button5_o.xml
│ │ │ ├── button6_c.xml
│ │ │ ├── button6_o.xml
│ │ │ ├── button7_c.xml
│ │ │ ├── button7_o.xml
│ │ │ ├── button8_c.xml
│ │ │ ├── button8_o.xml
│ │ │ ├── donhua.PNG
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ ├── add.xml
│ │ │ ├── allcl.xml
│ │ │ ├── allop.xml
│ │ │ ├── back.xml
│ │ │ ├── enter0.xml
│ │ │ ├── help_2.xml
│ │ │ ├── icon.png
│ │ │ ├── main_help_enable.png
│ │ │ ├── main_help_pressed.png
│ │ │ └── menu.xml
│ │ ├── drawable-xhdpi
│ │ ├── layout
│ │ │ ├── bluetooth.xml
│ │ │ ├── company.xml
│ │ │ ├── dialog.xml
│ │ │ ├── first.xml
│ │ │ ├── home.xml
│ │ │ ├── lightstandard.xml
│ │ │ ├── main.xml
│ │ │ ├── product.xml
│ │ │ ├── second.xml
│ │ │ └── zero.xml
│ │ └── values
│ │ ├── colors.xml
│ │ └── strings.xml
│ └── src
│ └── com
│ └── qxw
│ └── music
│ ├── BluetoothMain.java
│ ├── company.java
│ ├── Firstpage.java
│ ├── home.java
│ ├── Main.java
│ ├── product.java
│ ├── Secondpage.java
│ └── Zeropage.java
└── Android智能穿戴设备开发从入门到精通.pdf
805 directories, 3152 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论