File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
java/com/espressif/provisioning Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ To get this app please clone this repository using the below command:
4747 ```
4848And add a dependency code to your app module's ` build.gradle ` file.
4949```
50- implementation 'com.github.espressif:esp-idf-provisioning-android:lib-2.0.13 '
50+ implementation 'com.github.espressif:esp-idf-provisioning-android:lib-2.0.14 '
5151```
5252
5353## Using Provisioning Library
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ android {
1818 minSdkVersion 23
1919 targetSdkVersion 30
2020 versionCode 15
21- versionName " 2.0.13 - ${ getGitHash()} "
21+ versionName " 2.0.14 - ${ getGitHash()} "
2222 testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
2323 }
2424
Original file line number Diff line number Diff line change @@ -56,4 +56,6 @@ public enum ProvisionFailureReason {
5656 public static final short WIFI_WPA2_PSK = 3 ;
5757 public static final short WIFI_WPA_WPA2_PSK = 4 ;
5858 public static final short WIFI_WPA2_ENTERPRISE = 5 ;
59+ public static final short WIFI_WPA3_PSK = 6 ;
60+ public static final short WIFI_WPA2_WPA3_PSK = 7 ;
5961}
Original file line number Diff line number Diff line change @@ -20,12 +20,14 @@ enum WifiAuthMode {
2020 WPA2_PSK = 3 ;
2121 WPA_WPA2_PSK = 4 ;
2222 WPA2_ENTERPRISE = 5 ;
23+ WPA3_PSK = 6 ;
24+ WPA2_WPA3_PSK = 7 ;
2325}
26+
2427message WifiConnectedState {
2528 string ip4_addr = 1 ;
2629 WifiAuthMode auth_mode = 2 ;
2730 bytes ssid = 3 ;
2831 bytes bssid = 4 ;
2932 int32 channel = 5 ;
3033}
31-
You can’t perform that action at this time.
0 commit comments