Skip to content

Commit c6fb3a9

Browse files
committed
Merge branch 'task/wpa3_support' into 'master'
WPA3 support See merge request idf/esp-idf-provisioning-android!58
2 parents cf7b7a5 + ca48b5c commit c6fb3a9

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To get this app please clone this repository using the below command:
4747
```
4848
And 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

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

provisioning/src/main/java/com/espressif/provisioning/ESPConstants.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

provisioning/src/main/proto/wifi_constants.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
2427
message 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-

0 commit comments

Comments
 (0)