aws / amazon-freertos-ble-android-sdk

Android SDK for FreeRTOS Bluetooth Devices.
Apache License 2.0
49 stars 41 forks source link

[question] app changes #6

Closed chegewara closed 5 years ago

chegewara commented 5 years ago

Hi, i have one question about changes in app. In older version we were able to provide wifi credentials without login with cognito and i liked it, because i am using this app for developing purpose. Now i have to create cognito account just to provide wifi credentials even if i dont want to use mqtt over ble. Is that necessary?

Also i cant use old version because in afr release-1.5 all UUIDs got changed.

bxpan commented 5 years ago

Hi chegewara,

You may set this "mqtt" boolean to false to turn off the login screen, and you should be able to do wifi credentials just like before.

https://github.com/aws/amazon-freertos-ble-android-sdk/blob/beta/app/src/main/java/software/amazon/freertos/demo/DeviceScanFragment.java#L41

Yes, the UUIDs has been changed in release-1.5, so it is recommended to use the newer version.

chegewara commented 5 years ago

Thanks.