在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → wifi 室内定位完整版本

wifi 室内定位完整版本

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:13.71M
  • 下载次数:14
  • 浏览次数:238
  • 发布时间:2020-08-27
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
通过已知3个 wifi 的坐标,以及手机测试到3个 wifi 的信号强度获得在室内的坐标. wifi 等各种信息可以设置,动态计算.
【实例截图】
【核心代码】
TestWifi
└── TestWifi
├── __MACOSX
│   └── TestWifi
│   ├── app
│   │   └── src
│   │   └── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── sample
│   │   │   └── testwifi
│   │   │   ├── adapter
│   │   │   ├── helper
│   │   │   ├── location
│   │   │   └── provider
│   │   └── res
│   │   ├── drawable-hdpi
│   │   ├── drawable-mdpi
│   │   ├── drawable-xhdpi
│   │   ├── drawable-xxhdpi
│   │   ├── layout
│   │   ├── menu
│   │   ├── values
│   │   └── values-w820dp
│   ├── build
│   │   └── android-profile
│   └── gradle
│   └── wrapper
└── TestWifi
├── app
│   ├── app.iml
│   ├── build
│   │   ├── generated
│   │   │   ├── mockable-android-21.v3.jar
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── com
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   └── test
│   │   │   │   │   └── BuildConfig.java
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── sample
│   │   │   │   └── testwifi
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   ├── androidTest
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── sample
│   │   │   │   └── testwifi
│   │   │   │   └── test
│   │   │   │   └── R.java
│   │   │   └── debug
│   │   │   ├── android
│   │   │   │   └── support
│   │   │   │   └── v4
│   │   │   │   └── R.java
│   │   │   └── com
│   │   │   └── sample
│   │   │   └── testwifi
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   └── debug
│   │   │   │   ├── multi-v2
│   │   │   │   │   ├── debug.json
│   │   │   │   │   ├── values.json
│   │   │   │   │   └── values-w820dp-v13.json
│   │   │   │   └── single
│   │   │   │   └── debug.json
│   │   │   ├── build-info
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── v4
│   │   │   │   │   └── R.class
│   │   │   │   └── com
│   │   │   │   └── sample
│   │   │   │   └── testwifi
│   │   │   │   ├── adapter
│   │   │   │   │   └── CurrentPositionAdapter.class
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── DatabaseRecordAcivity$1$1.class
│   │   │   │   ├── DatabaseRecordAcivity$1.class
│   │   │   │   ├── DatabaseRecordAcivity.class
│   │   │   │   ├── helper
│   │   │   │   │   ├── DataBaseHelper.class
│   │   │   │   │   └── WifiInfoHelper.class
│   │   │   │   ├── LocalAty$1.class
│   │   │   │   ├── LocalAty$2.class
│   │   │   │   ├── LocalAty.class
│   │   │   │   ├── location
│   │   │   │   │   ├── GlobalVariable.class
│   │   │   │   │   ├── LocationM.class
│   │   │   │   │   ├── Loc.class
│   │   │   │   │   ├── MtApLoc.class
│   │   │   │   │   └── Tools.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity.class
│   │   │   │   ├── MyApplication.class
│   │   │   │   ├── provider
│   │   │   │   │   └── WifiLocationProvider.class
│   │   │   │   ├── R$array.class
│   │   │   │   ├── R$attr.class
│   │   │   │   ├── R$dimen.class
│   │   │   │   ├── R$drawable.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   ├── R$menu.class
│   │   │   │   ├── R$string.class
│   │   │   │   ├── R$styleable.class
│   │   │   │   ├── R.class
│   │   │   │   ├── view
│   │   │   │   │   └── MyCanvas.class
│   │   │   │   ├── WifiChangeBroadcastReceiver.class
│   │   │   │   ├── WifiCurrentLocationAcivity$1.class
│   │   │   │   ├── WifiCurrentLocationAcivity$2.class
│   │   │   │   ├── WifiCurrentLocationAcivity$3.class
│   │   │   │   ├── WifiCurrentLocationAcivity.class
│   │   │   │   ├── WifiInfoBean.class
│   │   │   │   ├── WifiListAdapter$ViewHolder.class
│   │   │   │   └── WifiListAdapter.class
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── compileDebugAndroidTestAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── debug-mergeJavaRes
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── HIfO5OSxD5kIhF9w5TYOfk3tZ4E=
│   │   │   │   │   ├── NveiE_q2wnNYM4gfeQVLQSw7sNk=
│   │   │   │   │   ├── Ttedum5D3zQwSatgfu7EDvJwBBY=
│   │   │   │   │   └── u5AgYHhpNwTKXCQpK+xZGt3QQ0E=
│   │   │   │   ├── debug-mergeJniLibs
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── HIfO5OSxD5kIhF9w5TYOfk3tZ4E=
│   │   │   │   │   ├── NveiE_q2wnNYM4gfeQVLQSw7sNk=
│   │   │   │   │   ├── Ttedum5D3zQwSatgfu7EDvJwBBY=
│   │   │   │   │   └── u5AgYHhpNwTKXCQpK+xZGt3QQ0E=
│   │   │   │   ├── mergeDebugAndroidTestResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugAssets
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugJniLibFolders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugShaders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── packageDebug
│   │   │   │   │   └── debug
│   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   ├── file-input-save-data.txt
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── cnx5tvUvjj+e7ZBMJYFYOM938CQ=
│   │   │   │   │   └── D9ptRuOvKHmi3zJw8okm6ES04_4=
│   │   │   │   └── packageInstantRunResourcesDebug
│   │   │   │   └── debug
│   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   └── zip-cache
│   │   │   │   └── cnx5tvUvjj+e7ZBMJYFYOM938CQ=
│   │   │   ├── incremental-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run-bootstrap.jar
│   │   │   ├── incremental-runtime-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run.jar
│   │   │   ├── incremental-verifier
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── v4
│   │   │   │   │   └── R.class
│   │   │   │   └── com
│   │   │   │   └── sample
│   │   │   │   └── testwifi
│   │   │   │   ├── adapter
│   │   │   │   │   └── CurrentPositionAdapter.class
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── DatabaseRecordAcivity$1$1.class
│   │   │   │   ├── DatabaseRecordAcivity$1.class
│   │   │   │   ├── DatabaseRecordAcivity.class
│   │   │   │   ├── helper
│   │   │   │   │   ├── DataBaseHelper.class
│   │   │   │   │   └── WifiInfoHelper.class
│   │   │   │   ├── LocalAty$1.class
│   │   │   │   ├── LocalAty$2.class
│   │   │   │   ├── LocalAty.class
│   │   │   │   ├── location
│   │   │   │   │   ├── GlobalVariable.class
│   │   │   │   │   ├── LocationM.class
│   │   │   │   │   ├── Loc.class
│   │   │   │   │   ├── MtApLoc.class
│   │   │   │   │   └── Tools.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity.class
│   │   │   │   ├── MyApplication.class
│   │   │   │   ├── provider
│   │   │   │   │   └── WifiLocationProvider.class
│   │   │   │   ├── R$array.class
│   │   │   │   ├── R$attr.class
│   │   │   │   ├── R$dimen.class
│   │   │   │   ├── R$drawable.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   ├── R$menu.class
│   │   │   │   ├── R$string.class
│   │   │   │   ├── R$styleable.class
│   │   │   │   ├── R.class
│   │   │   │   ├── view
│   │   │   │   │   └── MyCanvas.class
│   │   │   │   ├── WifiChangeBroadcastReceiver.class
│   │   │   │   ├── WifiCurrentLocationAcivity$1.class
│   │   │   │   ├── WifiCurrentLocationAcivity$2.class
│   │   │   │   ├── WifiCurrentLocationAcivity$3.class
│   │   │   │   ├── WifiCurrentLocationAcivity.class
│   │   │   │   ├── WifiInfoBean.class
│   │   │   │   ├── WifiListAdapter$ViewHolder.class
│   │   │   │   └── WifiListAdapter.class
│   │   │   ├── instant-run-resources
│   │   │   │   ├── output.json
│   │   │   │   └── resources-debug.ir.ap_
│   │   │   ├── instant-run-support
│   │   │   │   └── debug
│   │   │   │   ├── dependencies
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── manifestChecker
│   │   │   │   │   ├── manifest.crc
│   │   │   │   │   └── manifest.xml
│   │   │   │   ├── package_dependencies
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_0
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_1
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_2
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_3
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_4
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_5
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_6
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_7
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_8
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_9
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── slice_0
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_1
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_2
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_3
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_4
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_5
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_6
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_7
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_8
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   └── slice_9
│   │   │   │   └── AndroidManifest.xml
│   │   │   ├── javaPrecompile
│   │   │   │   └── debug
│   │   │   │   └── annotationProcessors.json
│   │   │   ├── manifest
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── manifests
│   │   │   │   ├── density
│   │   │   │   │   └── debug
│   │   │   │   │   └── output.json
│   │   │   │   ├── full
│   │   │   │   │   └── debug
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── output.json
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debugAndroidTest.ap_
│   │   │   │   ├── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debug.ap_
│   │   │   │   ├── merged
│   │   │   │   │   └── debug
│   │   │   │   │   ├── drawable-hdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_0.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_1.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_2.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_3.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_4.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_full_1.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_full_2.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_full_3.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_full_4.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_inout.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_qs_wifi_in.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── layout_activity_main.xml.flat
│   │   │   │   │   ├── layout_aty_local.xml.flat
│   │   │   │   │   ├── layout_db_wifi_info_list.xml.flat
│   │   │   │   │   ├── layout_db_wifi_info_location_list.xml.flat
│   │   │   │   │   ├── layout_listitem_device.xml.flat
│   │   │   │   │   ├── layout_wifi_current_location_info.xml.flat
│   │   │   │   │   ├── layout_wifi_list_db_info.xml.flat
│   │   │   │   │   ├── menu_main.xml.flat
│   │   │   │   │   ├── values_values.arsc.flat
│   │   │   │   │   └── values-w820dp-v13_values-w820dp-v13.arsc.flat
│   │   │   │   └── symbol-table-with-package
│   │   │   │   └── debug
│   │   │   │   └── package-aware-r.txt
│   │   │   ├── split-apk
│   │   │   │   └── debug
│   │   │   │   ├── dep
│   │   │   │   │   └── dependencies.apk
│   │   │   │   └── slices
│   │   │   │   ├── slice_0.apk
│   │   │   │   ├── slice_1.apk
│   │   │   │   ├── slice_2.apk
│   │   │   │   ├── slice_3.apk
│   │   │   │   ├── slice_4.apk
│   │   │   │   ├── slice_5.apk
│   │   │   │   ├── slice_6.apk
│   │   │   │   ├── slice_7.apk
│   │   │   │   ├── slice_8.apk
│   │   │   │   └── slice_9.apk
│   │   │   ├── splits-support
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── split-list.gson
│   │   │   │   └── debug
│   │   │   │   └── split-list.gson
│   │   │   ├── symbols
│   │   │   │   └── debug
│   │   │   │   └── R.txt
│   │   │   └── transforms
│   │   │   ├── dexBuilder
│   │   │   │   └── debug
│   │   │   │   ├── 0.jar
│   │   │   │   ├── 10.jar
│   │   │   │   ├── 14
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.dex
│   │   │   │   ├── 15
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_1.dex
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── adapter
│   │   │   │   │   │   └── CurrentPositionAdapter.dex
│   │   │   │   │   └── location
│   │   │   │   │   ├── GlobalVariable.dex
│   │   │   │   │   ├── LocationM.dex
│   │   │   │   │   ├── Loc.dex
│   │   │   │   │   ├── MtApLoc.dex
│   │   │   │   │   └── Tools.dex
│   │   │   │   ├── 16
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── v4
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_2.dex
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── BuildConfig.dex
│   │   │   │   │   ├── DatabaseRecordAcivity$1$1.dex
│   │   │   │   │   ├── DatabaseRecordAcivity$1.dex
│   │   │   │   │   ├── DatabaseRecordAcivity.dex
│   │   │   │   │   ├── LocalAty$1.dex
│   │   │   │   │   ├── LocalAty$2.dex
│   │   │   │   │   ├── LocalAty.dex
│   │   │   │   │   ├── MainActivity$1.dex
│   │   │   │   │   ├── MainActivity$2.dex
│   │   │   │   │   ├── MainActivity$3.dex
│   │   │   │   │   ├── MainActivity.dex
│   │   │   │   │   ├── MyApplication.dex
│   │   │   │   │   ├── R$array.dex
│   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   ├── R$id.dex
│   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   ├── R$menu.dex
│   │   │   │   │   ├── R$string.dex
│   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   ├── R.dex
│   │   │   │   │   ├── WifiChangeBroadcastReceiver.dex
│   │   │   │   │   ├── WifiCurrentLocationAcivity$1.dex
│   │   │   │   │   ├── WifiCurrentLocationAcivity$2.dex
│   │   │   │   │   ├── WifiCurrentLocationAcivity$3.dex
│   │   │   │   │   ├── WifiCurrentLocationAcivity.dex
│   │   │   │   │   ├── WifiInfoBean.dex
│   │   │   │   │   ├── WifiListAdapter$ViewHolder.dex
│   │   │   │   │   └── WifiListAdapter.dex
│   │   │   │   ├── 17
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.dex
│   │   │   │   ├── 18
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_4.dex
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   └── helper
│   │   │   │   │   ├── DataBaseHelper.dex
│   │   │   │   │   └── WifiInfoHelper.dex
│   │   │   │   ├── 19
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.dex
│   │   │   │   ├── 1.jar
│   │   │   │   ├── 20
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_6.dex
│   │   │   │   ├── 21
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.dex
│   │   │   │   ├── 22
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_8.dex
│   │   │   │   ├── 23
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_9.dex
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── provider
│   │   │   │   │   │   └── WifiLocationProvider.dex
│   │   │   │   │   └── view
│   │   │   │   │   └── MyCanvas.dex
│   │   │   │   ├── 2.jar
│   │   │   │   ├── 3.jar
│   │   │   │   ├── 4.jar
│   │   │   │   ├── 5.jar
│   │   │   │   ├── 6.jar
│   │   │   │   ├── 7.jar
│   │   │   │   ├── 8.jar
│   │   │   │   └── __content__.json
│   │   │   ├── dexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 1
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 10
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 11
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 12
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 13
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 14
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 15
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 16
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 2
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 3
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 4
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 5
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 6
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 7
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 8
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 9
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── externalLibsDexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── extractJars
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRun
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── v4
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── com
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── adapter
│   │   │   │   │   │   └── CurrentPositionAdapter.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DatabaseRecordAcivity$1$1.class
│   │   │   │   │   ├── DatabaseRecordAcivity$1.class
│   │   │   │   │   ├── DatabaseRecordAcivity.class
│   │   │   │   │   ├── helper
│   │   │   │   │   │   ├── DataBaseHelper.class
│   │   │   │   │   │   └── WifiInfoHelper.class
│   │   │   │   │   ├── LocalAty$1.class
│   │   │   │   │   ├── LocalAty$2.class
│   │   │   │   │   ├── LocalAty.class
│   │   │   │   │   ├── location
│   │   │   │   │   │   ├── GlobalVariable.class
│   │   │   │   │   │   ├── LocationM.class
│   │   │   │   │   │   ├── Loc.class
│   │   │   │   │   │   ├── MtApLoc.class
│   │   │   │   │   │   └── Tools.class
│   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   ├── MainActivity$3.class
│   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   ├── MyApplication.class
│   │   │   │   │   ├── provider
│   │   │   │   │   │   └── WifiLocationProvider.class
│   │   │   │   │   ├── R$array.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$menu.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   ├── R.class
│   │   │   │   │   ├── view
│   │   │   │   │   │   └── MyCanvas.class
│   │   │   │   │   ├── WifiChangeBroadcastReceiver.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$1.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$2.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$3.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity.class
│   │   │   │   │   ├── WifiInfoBean.class
│   │   │   │   │   ├── WifiListAdapter$ViewHolder.class
│   │   │   │   │   └── WifiListAdapter.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunDependenciesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicer
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.class
│   │   │   │   ├── 1
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_1.class
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── adapter
│   │   │   │   │   │   └── CurrentPositionAdapter.class
│   │   │   │   │   └── location
│   │   │   │   │   ├── GlobalVariable.class
│   │   │   │   │   ├── LocationM.class
│   │   │   │   │   ├── Loc.class
│   │   │   │   │   ├── MtApLoc.class
│   │   │   │   │   └── Tools.class
│   │   │   │   ├── 2
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── v4
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_2.class
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DatabaseRecordAcivity$1$1.class
│   │   │   │   │   ├── DatabaseRecordAcivity$1.class
│   │   │   │   │   ├── DatabaseRecordAcivity.class
│   │   │   │   │   ├── LocalAty$1.class
│   │   │   │   │   ├── LocalAty$2.class
│   │   │   │   │   ├── LocalAty.class
│   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   ├── MainActivity$3.class
│   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   ├── MyApplication.class
│   │   │   │   │   ├── R$array.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$menu.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   ├── R.class
│   │   │   │   │   ├── WifiChangeBroadcastReceiver.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$1.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$2.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity$3.class
│   │   │   │   │   ├── WifiCurrentLocationAcivity.class
│   │   │   │   │   ├── WifiInfoBean.class
│   │   │   │   │   ├── WifiListAdapter$ViewHolder.class
│   │   │   │   │   └── WifiListAdapter.class
│   │   │   │   ├── 3
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.class
│   │   │   │   ├── 4
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_4.class
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   └── helper
│   │   │   │   │   ├── DataBaseHelper.class
│   │   │   │   │   └── WifiInfoHelper.class
│   │   │   │   ├── 5
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.class
│   │   │   │   ├── 6
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_6.class
│   │   │   │   ├── 7
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.class
│   │   │   │   ├── 8
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_8.class
│   │   │   │   ├── 9
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_9.class
│   │   │   │   │   └── sample
│   │   │   │   │   └── testwifi
│   │   │   │   │   ├── provider
│   │   │   │   │   │   └── WifiLocationProvider.class
│   │   │   │   │   └── view
│   │   │   │   │   └── MyCanvas.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── mergeJavaRes
│   │   │   │   └── debug
│   │   │   │   ├── 0.jar
│   │   │   │   └── __content__.json
│   │   │   └── mergeJniLibs
│   │   │   └── debug
│   │   │   └── __content__.json
│   │   └── outputs
│   │   ├── apk
│   │   │   └── debug
│   │   │   ├── app-debug.apk
│   │   │   └── output.json
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   └── src
│   ├── main
│   │   ├── AndroidManifest.xml
│   │   ├── java
│   │   │   └── com
│   │   │   └── sample
│   │   │   └── testwifi
│   │   │   ├── adapter
│   │   │   │   └── CurrentPositionAdapter.java
│   │   │   ├── DatabaseRecordAcivity.java
│   │   │   ├── helper
│   │   │   │   ├── DataBaseHelper.java
│   │   │   │   └── WifiInfoHelper.java
│   │   │   ├── LocalAty.java
│   │   │   ├── location
│   │   │   │   ├── GlobalVariable.java
│   │   │   │   ├── LocationM.java
│   │   │   │   ├── Loc.java
│   │   │   │   ├── MtApLoc.java
│   │   │   │   └── Tools.java
│   │   │   ├── MainActivity.java
│   │   │   ├── MyApplication.java
│   │   │   ├── provider
│   │   │   │   └── WifiLocationProvider.java
│   │   │   ├── view
│   │   │   │   └── MyCanvas.java
│   │   │   ├── WifiChangeBroadcastReceiver.java
│   │   │   ├── WifiCurrentLocationAcivity.java
│   │   │   ├── WifiInfoBean.java
│   │   │   └── WifiListAdapter.java
│   │   └── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   ├── ic_launcher.png
│   │   │   ├── ic_qs_wifi_0.png
│   │   │   ├── ic_qs_wifi_1.png
│   │   │   ├── ic_qs_wifi_2.png
│   │   │   ├── ic_qs_wifi_3.png
│   │   │   ├── ic_qs_wifi_4.png
│   │   │   ├── ic_qs_wifi_full_1.png
│   │   │   ├── ic_qs_wifi_full_2.png
│   │   │   ├── ic_qs_wifi_full_3.png
│   │   │   ├── ic_qs_wifi_full_4.png
│   │   │   ├── ic_qs_wifi_inout.png
│   │   │   └── ic_qs_wifi_in.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── activity_main.xml
│   │   │   ├── aty_local.xml
│   │   │   ├── db_wifi_info_list.xml
│   │   │   ├── db_wifi_info_location_list.xml
│   │   │   ├── listitem_device.xml
│   │   │   ├── wifi_current_location_info.xml
│   │   │   └── wifi_list_db_info.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── array_wifi.xml
│   │   │   ├── dimens.xml
│   │   │   └── strings.xml
│   │   └── values-w820dp
│   │   └── dimens.xml
│   └── main.zip
├── build
│   └── android-profile
│   ├── profile-2018-03-19-11-25-03-797.json
│   ├── profile-2018-03-19-11-25-03-797.rawproto
│   ├── profile-2018-03-19-11-25-15-072.json
│   ├── profile-2018-03-19-11-25-15-072.rawproto
│   ├── profile-2018-03-19-22-52-43-225.json
│   ├── profile-2018-03-19-22-52-43-225.rawproto
│   ├── profile-2018-03-19-22-53-19-160.json
│   ├── profile-2018-03-19-22-53-19-160.rawproto
│   ├── profile-2018-03-20-06-50-47-283.json
│   ├── profile-2018-03-20-06-50-47-283.rawproto
│   ├── profile-2018-03-20-07-43-38-454.json
│   ├── profile-2018-03-20-07-43-38-454.rawproto
│   ├── profile-2018-03-20-07-43-43-871.json
│   ├── profile-2018-03-20-07-43-43-871.rawproto
│   ├── profile-2018-03-20-08-41-15-540.json
│   ├── profile-2018-03-20-08-41-15-540.rawproto
│   ├── profile-2018-03-20-08-41-30-905.json
│   ├── profile-2018-03-20-08-41-30-905.rawproto
│   ├── profile-2018-03-20-08-47-13-298.json
│   ├── profile-2018-03-20-08-47-13-298.rawproto
│   ├── profile-2018-03-20-08-48-44-042.json
│   ├── profile-2018-03-20-08-48-44-042.rawproto
│   ├── profile-2018-03-20-08-49-31-818.json
│   ├── profile-2018-03-20-08-49-31-818.rawproto
│   ├── profile-2018-03-20-08-52-02-605.json
│   ├── profile-2018-03-20-08-52-02-605.rawproto
│   ├── profile-2018-03-20-08-52-05-985.json
│   ├── profile-2018-03-20-08-52-05-985.rawproto
│   ├── profile-2018-03-20-11-17-12-838.json
│   ├── profile-2018-03-20-11-17-12-838.rawproto
│   ├── profile-2018-03-20-11-17-23-077.json
│   ├── profile-2018-03-20-11-17-23-077.rawproto
│   ├── profile-2018-03-20-11-19-30-535.json
│   ├── profile-2018-03-20-11-19-30-535.rawproto
│   ├── profile-2018-03-20-11-20-09-141.json
│   ├── profile-2018-03-20-11-20-09-141.rawproto
│   ├── profile-2018-03-20-14-07-48-944.json
│   ├── profile-2018-03-20-14-07-48-944.rawproto
│   ├── profile-2018-03-20-14-19-40-990.json
│   ├── profile-2018-03-20-14-19-40-990.rawproto
│   ├── profile-2018-03-20-14-46-36-412.json
│   ├── profile-2018-03-20-14-46-36-412.rawproto
│   ├── profile-2018-03-20-19-39-19-896.json
│   ├── profile-2018-03-20-19-39-19-896.rawproto
│   ├── profile-2018-03-20-19-39-26-941.json
│   ├── profile-2018-03-20-19-39-26-941.rawproto
│   ├── profile-2018-03-21-06-40-52-646.json
│   ├── profile-2018-03-21-06-40-52-646.rawproto
│   ├── profile-2018-03-21-06-41-03-077.json
│   ├── profile-2018-03-21-06-41-03-077.rawproto
│   ├── profile-2018-03-21-08-38-15-153.json
│   ├── profile-2018-03-21-08-38-15-153.rawproto
│   ├── profile-2018-03-21-08-38-24-586.json
│   ├── profile-2018-03-21-08-38-24-586.rawproto
│   ├── profile-2018-03-21-09-24-10-805.json
│   ├── profile-2018-03-21-09-24-10-805.rawproto
│   ├── profile-2018-03-21-09-33-43-952.json
│   ├── profile-2018-03-21-09-33-43-952.rawproto
│   ├── profile-2018-03-21-09-33-46-907.json
│   ├── profile-2018-03-21-09-33-46-907.rawproto
│   ├── profile-2018-03-21-09-33-58-888.json
│   ├── profile-2018-03-21-09-33-58-888.rawproto
│   ├── profile-2018-03-21-09-34-15-367.json
│   ├── profile-2018-03-21-09-34-15-367.rawproto
│   ├── profile-2018-03-21-09-35-14-658.json
│   ├── profile-2018-03-21-09-35-14-658.rawproto
│   ├── profile-2018-03-21-11-29-49-009.json
│   ├── profile-2018-03-21-11-29-49-009.rawproto
│   ├── profile-2018-03-21-13-53-20-125.json
│   ├── profile-2018-03-21-13-53-20-125.rawproto
│   ├── profile-2018-03-21-14-00-40-557.json
│   ├── profile-2018-03-21-14-00-40-557.rawproto
│   ├── profile-2018-03-21-14-21-33-774.json
│   ├── profile-2018-03-21-14-21-33-774.rawproto
│   ├── profile-2018-03-21-14-22-00-136.json
│   ├── profile-2018-03-21-14-22-00-136.rawproto
│   ├── profile-2018-03-21-15-06-43-364.json
│   ├── profile-2018-03-21-15-06-43-364.rawproto
│   ├── profile-2018-03-21-15-07-55-971.json
│   ├── profile-2018-03-21-15-07-55-971.rawproto
│   ├── profile-2018-03-21-15-08-24-368.json
│   ├── profile-2018-03-21-15-08-24-368.rawproto
│   ├── profile-2018-03-21-15-08-41-721.json
│   ├── profile-2018-03-21-15-08-41-721.rawproto
│   ├── profile-2018-03-21-15-11-44-882.json
│   ├── profile-2018-03-21-15-11-44-882.rawproto
│   ├── profile-2018-03-21-15-18-34-570.json
│   ├── profile-2018-03-21-15-18-34-570.rawproto
│   ├── profile-2018-03-21-15-18-57-652.json
│   ├── profile-2018-03-21-15-18-57-652.rawproto
│   ├── profile-2018-03-21-15-22-31-390.json
│   ├── profile-2018-03-21-15-22-31-390.rawproto
│   ├── profile-2018-03-21-15-34-46-408.json
│   ├── profile-2018-03-21-15-34-46-408.rawproto
│   ├── profile-2018-03-21-15-53-45-907.json
│   ├── profile-2018-03-21-15-53-45-907.rawproto
│   ├── profile-2018-03-21-15-56-26-388.json
│   ├── profile-2018-03-21-15-56-26-388.rawproto
│   ├── profile-2018-03-21-16-12-59-592.json
│   ├── profile-2018-03-21-16-12-59-592.rawproto
│   ├── profile-2018-03-21-16-14-44-155.json
│   ├── profile-2018-03-21-16-14-44-155.rawproto
│   ├── profile-2018-03-21-16-15-36-294.json
│   ├── profile-2018-03-21-16-15-36-294.rawproto
│   ├── profile-2018-03-21-16-35-32-941.json
│   ├── profile-2018-03-21-16-35-32-941.rawproto
│   ├── profile-2018-03-21-16-58-31-193.json
│   ├── profile-2018-03-21-16-58-31-193.rawproto
│   ├── profile-2018-03-22-09-07-24-764.json
│   ├── profile-2018-03-22-09-07-24-764.rawproto
│   ├── profile-2018-03-22-09-07-32-404.json
│   ├── profile-2018-03-22-09-07-32-404.rawproto
│   ├── profile-2018-03-22-09-20-53-926.json
│   ├── profile-2018-03-22-09-20-53-926.rawproto
│   ├── profile-2018-03-22-09-42-47-213.json
│   ├── profile-2018-03-22-09-42-47-213.rawproto
│   ├── profile-2018-03-22-09-43-34-185.json
│   ├── profile-2018-03-22-09-43-34-185.rawproto
│   ├── profile-2018-03-22-09-45-01-870.json
│   ├── profile-2018-03-22-09-45-01-870.rawproto
│   ├── profile-2018-03-22-09-45-27-333.json
│   ├── profile-2018-03-22-09-45-27-333.rawproto
│   ├── profile-2018-03-22-09-52-26-931.json
│   ├── profile-2018-03-22-09-52-26-931.rawproto
│   ├── profile-2018-03-22-09-52-52-817.json
│   ├── profile-2018-03-22-09-52-52-817.rawproto
│   ├── profile-2018-03-22-09-55-49-653.json
│   ├── profile-2018-03-22-09-55-49-653.rawproto
│   ├── profile-2018-03-22-09-56-25-295.json
│   ├── profile-2018-03-22-09-56-25-295.rawproto
│   ├── profile-2018-03-22-09-56-47-215.json
│   ├── profile-2018-03-22-09-56-47-215.rawproto
│   ├── profile-2018-03-22-10-01-24-191.json
│   ├── profile-2018-03-22-10-01-24-191.rawproto
│   ├── profile-2018-03-22-10-03-06-650.json
│   ├── profile-2018-03-22-10-03-06-650.rawproto
│   ├── profile-2018-03-22-10-03-20-422.json
│   ├── profile-2018-03-22-10-03-20-422.rawproto
│   ├── profile-2018-03-22-10-05-57-565.json
│   ├── profile-2018-03-22-10-05-57-565.rawproto
│   ├── profile-2018-03-22-10-07-37-199.json
│   ├── profile-2018-03-22-10-07-37-199.rawproto
│   ├── profile-2018-03-22-10-24-07-460.json
│   ├── profile-2018-03-22-10-24-07-460.rawproto
│   ├── profile-2018-03-22-10-25-42-707.json
│   ├── profile-2018-03-22-10-25-42-707.rawproto
│   ├── profile-2018-03-22-10-28-38-176.json
│   ├── profile-2018-03-22-10-28-38-176.rawproto
│   ├── profile-2018-03-22-10-32-04-918.json
│   ├── profile-2018-03-22-10-32-04-918.rawproto
│   ├── profile-2018-03-22-10-46-11-355.json
│   ├── profile-2018-03-22-10-46-11-355.rawproto
│   ├── profile-2018-03-22-11-36-14-013.json
│   ├── profile-2018-03-22-11-36-14-013.rawproto
│   ├── profile-2018-03-22-11-39-37-770.json
│   ├── profile-2018-03-22-11-39-37-770.rawproto
│   ├── profile-2018-03-22-11-40-31-461.json
│   ├── profile-2018-03-22-11-40-31-461.rawproto
│   ├── profile-2018-03-22-13-41-08-079.json
│   ├── profile-2018-03-22-13-41-08-079.rawproto
│   ├── profile-2018-03-22-13-53-37-915.json
│   ├── profile-2018-03-22-13-53-37-915.rawproto
│   ├── profile-2018-03-22-14-07-39-838.json
│   ├── profile-2018-03-22-14-07-39-838.rawproto
│   ├── profile-2018-03-22-14-12-41-093.json
│   ├── profile-2018-03-22-14-12-41-093.rawproto
│   ├── profile-2018-03-22-14-15-01-805.json
│   ├── profile-2018-03-22-14-15-01-805.rawproto
│   ├── profile-2018-03-22-14-17-42-502.json
│   ├── profile-2018-03-22-14-17-42-502.rawproto
│   ├── profile-2018-03-22-14-21-30-299.json
│   ├── profile-2018-03-22-14-21-30-299.rawproto
│   ├── profile-2018-03-22-14-33-05-933.json
│   ├── profile-2018-03-22-14-33-05-933.rawproto
│   ├── profile-2018-03-22-14-35-38-963.json
│   ├── profile-2018-03-22-14-35-38-963.rawproto
│   ├── profile-2018-03-22-14-36-34-276.json
│   ├── profile-2018-03-22-14-36-34-276.rawproto
│   ├── profile-2018-03-22-15-13-29-952.json
│   ├── profile-2018-03-22-15-13-29-952.rawproto
│   ├── profile-2018-03-22-15-16-46-916.json
│   ├── profile-2018-03-22-15-16-46-916.rawproto
│   ├── profile-2018-03-22-16-13-30-540.json
│   ├── profile-2018-03-22-16-13-30-540.rawproto
│   ├── profile-2018-03-22-16-22-50-428.json
│   ├── profile-2018-03-22-16-22-50-428.rawproto
│   ├── profile-2018-03-22-16-23-24-963.json
│   ├── profile-2018-03-22-16-23-24-963.rawproto
│   ├── profile-2018-03-22-16-25-14-045.json
│   ├── profile-2018-03-22-16-25-14-045.rawproto
│   ├── profile-2018-03-22-16-31-27-986.json
│   ├── profile-2018-03-22-16-31-27-986.rawproto
│   ├── profile-2018-03-22-16-38-08-086.json
│   ├── profile-2018-03-22-16-38-08-086.rawproto
│   ├── profile-2018-03-22-16-38-22-663.json
│   ├── profile-2018-03-22-16-38-22-663.rawproto
│   ├── profile-2018-03-22-16-47-09-589.json
│   ├── profile-2018-03-22-16-47-09-589.rawproto
│   ├── profile-2018-03-22-17-51-12-968.json
│   ├── profile-2018-03-22-17-51-12-968.rawproto
│   ├── profile-2018-03-22-17-51-53-115.json
│   ├── profile-2018-03-22-17-51-53-115.rawproto
│   ├── profile-2018-03-23-09-33-33-226.json
│   ├── profile-2018-03-23-09-33-33-226.rawproto
│   ├── profile-2018-03-23-09-43-33-380.json
│   ├── profile-2018-03-23-09-43-33-380.rawproto
│   ├── profile-2018-03-23-09-48-02-837.json
│   ├── profile-2018-03-23-09-48-02-837.rawproto
│   ├── profile-2018-03-23-09-48-10-071.json
│   ├── profile-2018-03-23-09-48-10-071.rawproto
│   ├── profile-2018-03-23-09-48-24-034.json
│   ├── profile-2018-03-23-09-48-24-034.rawproto
│   ├── profile-2018-03-23-10-03-34-593.json
│   ├── profile-2018-03-23-10-03-34-593.rawproto
│   ├── profile-2018-03-23-10-37-24-431.json
│   ├── profile-2018-03-23-10-37-24-431.rawproto
│   ├── profile-2018-03-23-10-38-02-466.json
│   ├── profile-2018-03-23-10-38-02-466.rawproto
│   ├── profile-2018-03-23-10-38-19-749.json
│   ├── profile-2018-03-23-10-38-19-749.rawproto
│   ├── profile-2018-03-23-10-38-46-709.json
│   ├── profile-2018-03-23-10-38-46-709.rawproto
│   ├── profile-2018-03-23-13-36-53-233.json
│   ├── profile-2018-03-23-13-36-53-233.rawproto
│   ├── profile-2018-03-23-13-37-42-929.json
│   ├── profile-2018-03-23-13-37-42-929.rawproto
│   ├── profile-2018-03-23-13-55-21-562.json
│   ├── profile-2018-03-23-13-55-21-562.rawproto
│   ├── profile-2018-03-23-14-15-19-501.json
│   ├── profile-2018-03-23-14-15-19-501.rawproto
│   ├── profile-2018-03-23-14-21-38-100.json
│   ├── profile-2018-03-23-14-21-38-100.rawproto
│   ├── profile-2018-03-23-14-28-45-151.json
│   ├── profile-2018-03-23-14-28-45-151.rawproto
│   ├── profile-2018-03-23-14-29-46-922.json
│   ├── profile-2018-03-23-14-29-46-922.rawproto
│   ├── profile-2018-03-23-14-30-16-413.json
│   ├── profile-2018-03-23-14-30-16-413.rawproto
│   ├── profile-2018-03-23-14-30-42-686.json
│   ├── profile-2018-03-23-14-30-42-686.rawproto
│   ├── profile-2018-03-23-14-36-25-353.json
│   ├── profile-2018-03-23-14-36-25-353.rawproto
│   ├── profile-2018-03-23-14-40-17-757.json
│   ├── profile-2018-03-23-14-40-17-757.rawproto
│   ├── profile-2018-03-23-14-44-11-780.json
│   ├── profile-2018-03-23-14-44-11-780.rawproto
│   ├── profile-2018-03-23-14-47-29-701.json
│   ├── profile-2018-03-23-14-47-29-701.rawproto
│   ├── profile-2018-03-23-14-52-03-317.json
│   ├── profile-2018-03-23-14-52-03-317.rawproto
│   ├── profile-2018-03-23-14-55-18-682.json
│   ├── profile-2018-03-23-14-55-18-682.rawproto
│   ├── profile-2018-03-23-15-05-44-506.json
│   ├── profile-2018-03-23-15-05-44-506.rawproto
│   ├── profile-2018-03-23-15-06-08-269.json
│   ├── profile-2018-03-23-15-06-08-269.rawproto
│   ├── profile-2018-03-23-15-06-43-595.json
│   ├── profile-2018-03-23-15-06-43-595.rawproto
│   ├── profile-2018-03-23-15-56-16-722.json
│   ├── profile-2018-03-23-15-56-16-722.rawproto
│   ├── profile-2018-03-23-15-57-04-051.json
│   ├── profile-2018-03-23-15-57-04-051.rawproto
│   ├── profile-2018-03-23-16-16-18-841.json
│   ├── profile-2018-03-23-16-16-18-841.rawproto
│   ├── profile-2018-03-23-16-19-24-964.json
│   ├── profile-2018-03-23-16-19-24-964.rawproto
│   ├── profile-2018-03-23-16-20-23-023.json
│   ├── profile-2018-03-23-16-20-23-023.rawproto
│   ├── profile-2018-03-23-16-21-24-196.json
│   ├── profile-2018-03-23-16-21-24-196.rawproto
│   ├── profile-2018-03-23-16-21-56-534.json
│   ├── profile-2018-03-23-16-21-56-534.rawproto
│   ├── profile-2018-03-23-16-31-44-242.json
│   ├── profile-2018-03-23-16-31-44-242.rawproto
│   ├── profile-2018-03-23-16-34-12-968.json
│   ├── profile-2018-03-23-16-34-12-968.rawproto
│   ├── profile-2018-03-23-16-39-32-022.json
│   ├── profile-2018-03-23-16-39-32-022.rawproto
│   ├── profile-2018-03-23-16-42-33-731.json
│   ├── profile-2018-03-23-16-42-33-731.rawproto
│   ├── profile-2018-03-23-16-44-29-232.json
│   ├── profile-2018-03-23-16-44-29-232.rawproto
│   ├── profile-2018-03-23-16-45-08-199.json
│   ├── profile-2018-03-23-16-45-08-199.rawproto
│   ├── profile-2018-03-23-16-45-24-731.json
│   ├── profile-2018-03-23-16-45-24-731.rawproto
│   ├── profile-2018-03-23-16-45-39-032.json
│   ├── profile-2018-03-23-16-45-39-032.rawproto
│   ├── profile-2018-03-23-16-48-47-008.json
│   ├── profile-2018-03-23-16-48-47-008.rawproto
│   ├── profile-2018-03-23-16-49-56-279.json
│   ├── profile-2018-03-23-16-49-56-279.rawproto
│   ├── profile-2018-03-23-16-50-47-191.json
│   ├── profile-2018-03-23-16-50-47-191.rawproto
│   ├── profile-2018-03-23-16-51-34-121.json
│   ├── profile-2018-03-23-16-51-34-121.rawproto
│   ├── profile-2018-03-23-16-52-20-891.json
│   ├── profile-2018-03-23-16-52-20-891.rawproto
│   ├── profile-2018-03-23-16-53-41-718.json
│   ├── profile-2018-03-23-16-53-41-718.rawproto
│   ├── profile-2018-03-23-16-54-37-509.json
│   ├── profile-2018-03-23-16-54-37-509.rawproto
│   ├── profile-2018-03-23-16-56-25-553.json
│   ├── profile-2018-03-23-16-56-25-553.rawproto
│   ├── profile-2018-03-23-16-57-22-518.json
│   ├── profile-2018-03-23-16-57-22-518.rawproto
│   ├── profile-2018-03-23-17-01-31-292.json
│   ├── profile-2018-03-23-17-01-31-292.rawproto
│   ├── profile-2018-03-23-17-02-14-563.json
│   ├── profile-2018-03-23-17-02-14-563.rawproto
│   ├── profile-2018-03-23-17-03-04-951.json
│   ├── profile-2018-03-23-17-03-04-951.rawproto
│   ├── profile-2018-03-23-17-04-13-018.json
│   ├── profile-2018-03-23-17-04-13-018.rawproto
│   ├── profile-2018-03-23-17-05-25-275.json
│   ├── profile-2018-03-23-17-05-25-275.rawproto
│   ├── profile-2018-03-23-17-07-32-269.json
│   ├── profile-2018-03-23-17-07-32-269.rawproto
│   ├── profile-2018-03-23-17-08-55-501.json
│   ├── profile-2018-03-23-17-08-55-501.rawproto
│   ├── profile-2018-03-23-17-09-28-714.json
│   ├── profile-2018-03-23-17-09-28-714.rawproto
│   ├── profile-2018-03-23-17-09-52-099.json
│   ├── profile-2018-03-23-17-09-52-099.rawproto
│   ├── profile-2018-03-23-17-10-36-323.json
│   ├── profile-2018-03-23-17-10-36-323.rawproto
│   ├── profile-2018-03-23-17-11-05-134.json
│   ├── profile-2018-03-23-17-11-05-134.rawproto
│   ├── profile-2018-03-23-17-12-37-185.json
│   ├── profile-2018-03-23-17-12-37-185.rawproto
│   ├── profile-2018-03-23-17-13-02-021.json
│   ├── profile-2018-03-23-17-13-02-021.rawproto
│   ├── profile-2018-03-23-17-15-53-522.json
│   ├── profile-2018-03-23-17-15-53-522.rawproto
│   ├── profile-2018-03-23-17-18-03-660.json
│   ├── profile-2018-03-23-17-18-03-660.rawproto
│   ├── profile-2018-03-23-17-19-45-949.json
│   ├── profile-2018-03-23-17-19-45-949.rawproto
│   ├── profile-2018-03-23-17-21-57-573.json
│   ├── profile-2018-03-23-17-21-57-573.rawproto
│   ├── profile-2018-03-23-17-29-59-912.json
│   ├── profile-2018-03-23-17-29-59-912.rawproto
│   ├── profile-2018-03-23-17-53-19-714.json
│   ├── profile-2018-03-23-17-53-19-714.rawproto
│   ├── profile-2018-03-23-17-53-52-510.json
│   ├── profile-2018-03-23-17-53-52-510.rawproto
│   ├── profile-2018-03-23-17-55-32-034.json
│   ├── profile-2018-03-23-17-55-32-034.rawproto
│   ├── profile-2018-03-23-17-57-54-335.json
│   ├── profile-2018-03-23-17-57-54-335.rawproto
│   ├── profile-2018-03-23-17-58-58-535.json
│   ├── profile-2018-03-23-17-58-58-535.rawproto
│   ├── profile-2018-03-23-17-59-09-075.json
│   ├── profile-2018-03-23-17-59-09-075.rawproto
│   ├── profile-2018-03-26-09-25-08-089.json
│   ├── profile-2018-03-26-09-25-08-089.rawproto
│   ├── profile-2018-03-26-09-25-16-406.json
│   ├── profile-2018-03-26-09-25-16-406.rawproto
│   ├── profile-2018-03-26-10-12-18-898.json
│   ├── profile-2018-03-26-10-12-18-898.rawproto
│   ├── profile-2018-03-26-11-12-10-687.json
│   ├── profile-2018-03-26-11-12-10-687.rawproto
│   ├── profile-2018-03-26-11-23-02-295.json
│   ├── profile-2018-03-26-11-23-02-295.rawproto
│   ├── profile-2018-03-26-11-29-32-092.json
│   ├── profile-2018-03-26-11-29-32-092.rawproto
│   ├── profile-2018-03-26-11-43-04-883.json
│   ├── profile-2018-03-26-11-43-04-883.rawproto
│   ├── profile-2018-03-26-11-43-12-304.json
│   ├── profile-2018-03-26-11-43-12-304.rawproto
│   ├── profile-2018-03-26-14-08-34-035.json
│   ├── profile-2018-03-26-14-08-34-035.rawproto
│   ├── profile-2018-03-26-14-10-33-100.json
│   ├── profile-2018-03-26-14-10-33-100.rawproto
│   ├── profile-2018-03-26-14-15-51-910.json
│   ├── profile-2018-03-26-14-15-51-910.rawproto
│   ├── profile-2018-03-26-14-17-28-530.json
│   ├── profile-2018-03-26-14-17-28-530.rawproto
│   ├── profile-2018-03-26-15-40-43-346.json
│   ├── profile-2018-03-26-15-40-43-346.rawproto
│   ├── profile-2018-03-26-15-45-20-020.json
│   ├── profile-2018-03-26-15-45-20-020.rawproto
│   ├── profile-2018-03-26-15-50-44-164.json
│   ├── profile-2018-03-26-15-50-44-164.rawproto
│   ├── profile-2018-03-26-15-53-35-395.json
│   ├── profile-2018-03-26-15-53-35-395.rawproto
│   ├── profile-2018-03-26-16-20-17-922.json
│   ├── profile-2018-03-26-16-20-17-922.rawproto
│   ├── profile-2018-03-26-16-42-27-542.json
│   ├── profile-2018-03-26-16-42-27-542.rawproto
│   ├── profile-2018-03-26-16-52-45-347.json
│   ├── profile-2018-03-26-16-52-45-347.rawproto
│   ├── profile-2018-03-26-16-53-26-953.json
│   ├── profile-2018-03-26-16-53-26-953.rawproto
│   ├── profile-2018-03-26-17-00-29-027.json
│   ├── profile-2018-03-26-17-00-29-027.rawproto
│   ├── profile-2018-03-26-17-50-21-196.json
│   ├── profile-2018-03-26-17-50-21-196.rawproto
│   ├── profile-2018-03-26-17-56-33-818.json
│   ├── profile-2018-03-26-17-56-33-818.rawproto
│   ├── profile-2018-03-26-17-59-34-077.json
│   ├── profile-2018-03-26-17-59-34-077.rawproto
│   ├── profile-2018-03-26-18-00-24-928.json
│   ├── profile-2018-03-26-18-00-24-928.rawproto
│   ├── profile-2018-03-26-18-08-34-242.json
│   ├── profile-2018-03-26-18-08-34-242.rawproto
│   ├── profile-2018-03-26-18-16-00-489.json
│   ├── profile-2018-03-26-18-16-00-489.rawproto
│   ├── profile-2018-03-26-18-20-40-011.json
│   ├── profile-2018-03-26-18-20-40-011.rawproto
│   ├── profile-2018-03-26-18-20-51-874.json
│   ├── profile-2018-03-26-18-20-51-874.rawproto
│   ├── profile-2018-03-26-18-21-57-976.json
│   ├── profile-2018-03-26-18-21-57-976.rawproto
│   ├── profile-2018-03-26-18-22-54-818.json
│   ├── profile-2018-03-26-18-22-54-818.rawproto
│   ├── profile-2018-03-26-18-24-04-507.json
│   ├── profile-2018-03-26-18-24-04-507.rawproto
│   ├── profile-2018-03-26-18-24-22-645.json
│   ├── profile-2018-03-26-18-24-22-645.rawproto
│   ├── profile-2018-03-26-18-24-36-190.json
│   ├── profile-2018-03-26-18-24-36-190.rawproto
│   ├── profile-2018-03-26-18-25-20-377.json
│   ├── profile-2018-03-26-18-25-20-377.rawproto
│   ├── profile-2018-03-26-18-26-50-176.json
│   ├── profile-2018-03-26-18-26-50-176.rawproto
│   ├── profile-2018-03-26-18-27-08-493.json
│   ├── profile-2018-03-26-18-27-08-493.rawproto
│   ├── profile-2018-03-26-18-29-37-368.json
│   ├── profile-2018-03-26-18-29-37-368.rawproto
│   ├── profile-2018-03-26-18-29-54-217.json
│   ├── profile-2018-03-26-18-29-54-217.rawproto
│   ├── profile-2018-03-26-18-30-52-671.json
│   ├── profile-2018-03-26-18-30-52-671.rawproto
│   ├── profile-2018-03-26-18-31-23-010.json
│   ├── profile-2018-03-26-18-31-23-010.rawproto
│   ├── profile-2018-03-26-18-33-56-122.json
│   ├── profile-2018-03-26-18-33-56-122.rawproto
│   ├── profile-2018-03-26-18-37-50-850.json
│   └── profile-2018-03-26-18-37-50-850.rawproto
├── build.gradle
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── import-summary.txt
├── local.properties
├── settings.gradle
├── TestWifi1.iml
└── TestWifi.iml

400 directories, 884 files

标签:

实例下载地址

wifi 室内定位完整版本

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警