'JAVA/android_studio'에 해당되는 글 47건
- 2022.10.11 :: Bluetooth Low Energy(BLE) 파헤치기
- 2022.09.12 :: screen copy of android phone through wireless
- 2022.09.07 :: SPT Android Bluetooth packet sniffering(monitoring)
- 2022.09.03 :: AndroidPhone debugging through wireless network 2
- 2020.06.30 :: Android, http , connection refused
- 2020.05.25 :: Android App. - running as Kiosk mode
-
https://medium.com/@zoyi_product/bluetooth-low-energy-ble-84b03705ffca
Bluetooth Low Energy(BLE) 파헤치기
스마트폰이 출시되어 대중화가 될 무렵, ‘스마트’한 개념의 밴드, 워치, 글래스 등이 출시되면서 웨어러블 디바이스 시장이 태동하기 시작했다. 그리고, 2015년 상반기, 애플워치의 등장으로
medium.com
'JAVA > android_studio' 카테고리의 다른 글
안드로이드 바인드 서비스 예제 (1) | 2022.10.11 |
---|---|
BindService의 생성과 Activity 에서의 Bind (1) | 2022.10.11 |
screen copy of android phone through wireless (0) | 2022.09.12 |
SPT Android Bluetooth packet sniffering(monitoring) (0) | 2022.09.07 |
AndroidPhone debugging through wireless network (2) | 2022.09.03 |
PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> ./adb devices List of devices attached ce071717e4a55d1c047e device 192.168.0.165:5555 device emulator-5554 device PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> ./adb -s ce071717e4a55d1c047e connect 192.168.0.165 already connected to 192.168.0.165:5555 PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> type .\scrcpy-console.bat @echo off scrcpy.exe %* :: if the exit code is >= 1, then pause if errorlevel 1 pause PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> .\scrcpy.exe --help | findstr serial -s, --serial=serial The device serial number. Mandatory only if several devices are PS C:\Users\CHANSEONG.KIM\Downloads\scrcpy-win64-v1.21> .\scrcpy --serial=ce071717e4a55d1c047e |
-실행화면: scrcpy 실행후 연결된 폰 화면
scrcpy(v1.21)로 무선으로 연결한 화면 (최초연결시 유선연결은 필요함. 폰의 시리얼번호 알아낼때[./adb.exe devices ] 유선연결 필요함)
'JAVA > android_studio' 카테고리의 다른 글
BindService의 생성과 Activity 에서의 Bind (1) | 2022.10.11 |
---|---|
Bluetooth Low Energy(BLE) 파헤치기 (0) | 2022.10.11 |
SPT Android Bluetooth packet sniffering(monitoring) (0) | 2022.09.07 |
AndroidPhone debugging through wireless network (2) | 2022.09.03 |
Android, http , connection refused (0) | 2020.06.30 |
> Android mobile app.과 Bluetooth+MCU(STM32F107 CPU)통신할때 디버깅용
>> connection problem between mobile app.(android) and STM32F107 CPU through Bluetooth(Transparent mode)
How to capture Bluetooth traffic from and to an Android Device?
support.honeywellaidc.com
- Go to Settings
- If developer options is not enabled, enable it now.
- Go into developer options
- Enable the option Enable Bluetooth HCI snoop log
- Enable the Bluetooth option and Connected to the device.
- Perform the actions which need to be captured.
- Turn off the Bluetooth on the device.
- Disable the option Enable Bluetooth HCI snoop log
- Make sure the device is connected to the PC.
- As the relevant files might not be shown in a PC's file browser in 'Internal Storage', copy the file to a PC by means of the Android Debug Bridge: adb pull /sdcard
- The files of interest are btsnoop_hci.log and all files with the extension .cfa
Bluetooth LE packet capture on Android
At Propeller Health we develop products that help people with asthma or COPD manage their condition. One component of our platform is a…
medium.com
Bluetooth packet capture with Wireshark on Android | NowSecure
New mobile applications are constantly improving their use of advanced device features, like sensors and short range networks. In particular we have seen increased and wide-ranging use of Bluetooth. Bluetooth is a wireless technology used to exchange data
www.nowsecure.com
Wireshark를 통한 Ubertooth bluetooth packet sniffing
저번 포스팅에서는 Linux에서 Ubertooth의 드라이버 설치를 하고, Ubertooth에 관련된 툴 들을 설치 해 보았습니다. 오늘은 Ubertooth와 Wireshark를 이용하여 BLE Packet을 capture하는 방법에 대해 알아 보도록..
blog.dork94.com
'JAVA > android_studio' 카테고리의 다른 글
Bluetooth Low Energy(BLE) 파헤치기 (0) | 2022.10.11 |
---|---|
screen copy of android phone through wireless (0) | 2022.09.12 |
AndroidPhone debugging through wireless network (2) | 2022.09.03 |
Android, http , connection refused (0) | 2020.06.30 |
Android App. - running as Kiosk mode (0) | 2020.05.25 |
아래 링크대로 해보니 제대로 연결됨.
처음에는 USB케이블로 PC와 스마트폰을 연결할 필요가 있음. (이후 아래처럼 따라하면 케이블 제거해도 연결됨)
PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe devices List of devices attached ce071717e4a55d1c047e device PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe tcpip 5555 restarting in TCP mode port: 5555 PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 connected to 192.168.0.182:5555 PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe devices List of devices attached 192.168.0.182:5555 device |
단, 아래와 같이 adb.exe 의 위치를 미리 찾아둬야 함.
> C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools>
https://medium.com/android-news/wireless-debugging-through-adb-in-android-using-wifi-965f7edd163a
Wireless Debugging through ADB in Android using WiFi
In this article I am going to show you how you can debug your android app over WiFi.
medium.com
- PC와 안드로이드폰을 연결할때 실제 수행시 출력된 로그
> 192.168.0.182의 주소를 스마트폰이 가지고 있음.
> 연결이 안되서 ./adb.exe kill-server 로 adb종료하고 다시 시작시킴.
PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 cannot connect to 192.168.0.182:5555: 연결된 구성원으로부터 응답이 없어 연결하지 못했거나, 호스트로부터 응답이 없어 연결이 끊어졌습니다. (10060) PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 cannot connect to 192.168.0.182:5555: 연결된 구성원으로부터 응답이 없어 연결하지 못했거나, 호스트로부터 응답이 없어 연결이 끊어졌습니다. (10060) PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe kill-server PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe devices * daemon not running; starting now at tcp:5037 * daemon started successfully List of devices attached ce071717e4a55d1c047e device PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe tcpip 5555 restarting in TCP mode port: 5555 PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 cannot connect to 192.168.0.182:5555: 연결된 구성원으로부터 응답이 없어 연결하지 못했거나, 호스트로부터 응답이 없어 연결이 끊어졌습니다. (10060) PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe kill-server PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe devices * daemon not running; starting now at tcp:5037 * daemon started successfully List of devices attached ce071717e4a55d1c047e device PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe tcpip 5555 restarting in TCP mode port: 5555 PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 cannot connect to 192.168.0.182:5555: 현재 연결은 사용자의 호스트 시스템의 소프트웨어의 의 해 중단되었습니다. (10053) PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> .\adb.exe connect 192 .168.0.182 connected to 192.168.0.182:5555 PS C:\Users\CH***IM\AppData\Local\Android\Sdk\platform-tools> |
'JAVA > android_studio' 카테고리의 다른 글
screen copy of android phone through wireless (0) | 2022.09.12 |
---|---|
SPT Android Bluetooth packet sniffering(monitoring) (0) | 2022.09.07 |
Android, http , connection refused (0) | 2020.06.30 |
Android App. - running as Kiosk mode (0) | 2020.05.25 |
앱의 아이콘을 동적으로 변환하는 방법 (0) | 2020.05.20 |
Connection refused
https://developside.tistory.com/85
안드로이드 http 프로토콜 접속 시 예외발생 조치 (ERR CLEARTEXT NOT PERMITTED)
어제 앱을 개발 중 glide v4를 사용하여 웹에 있는 그림을 load 하였는데, 아래와 같은 예외를 주며 동작을 하지 않았습니다. com.bumptech.glide.load.engine.GlideException: Fetching data failed, class java...
developside.tistory.com
'JAVA > android_studio' 카테고리의 다른 글
SPT Android Bluetooth packet sniffering(monitoring) (0) | 2022.09.07 |
---|---|
AndroidPhone debugging through wireless network (2) | 2022.09.03 |
Android App. - running as Kiosk mode (0) | 2020.05.25 |
앱의 아이콘을 동적으로 변환하는 방법 (0) | 2020.05.20 |
Android Studio OpenCV + Tesseract OCR (문자인식) 어플 만들기 (0) | 2020.05.08 |
'JAVA > android_studio' 카테고리의 다른 글
AndroidPhone debugging through wireless network (2) | 2022.09.03 |
---|---|
Android, http , connection refused (0) | 2020.06.30 |
앱의 아이콘을 동적으로 변환하는 방법 (0) | 2020.05.20 |
Android Studio OpenCV + Tesseract OCR (문자인식) 어플 만들기 (0) | 2020.05.08 |
예전에 만들어진 안드로이드 코드 빌드 에러 수정방법 (0) | 2020.05.01 |