diff options
author | 2024-10-10 00:26:13 +0000 | |
---|---|---|
committer | 2024-11-11 23:09:24 +0000 | |
commit | 0b8cabd0d6b8a73c6d6fb31692c44a14a2d22215 (patch) | |
tree | 45c3fbfdda9bcdc2312212f1d0b54fdd84eea186 /apex | |
parent | 3a09109674624ec009b6a04bcf17d960791061ee (diff) |
Include mainline supplicant binary in the
Wifi Apex.
Binary is flagged behind a build flag, so
it initially will not appear in any builds.
Bug: 365585450
Flag: com.android.wifi.flags.mainline_supplicant
Test: m
Change-Id: I7689cd1ee69a3f0c2d7f27f980196575288e582a
Diffstat (limited to 'apex')
-rw-r--r-- | apex/Android.bp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index d7f185273c..838e879e2b 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -37,6 +37,10 @@ apex_defaults { "ServiceWifiResources", "WifiDialog", ], + binaries: select(release_flag("RELEASE_WIFI_MAINLINE_SUPPLICANT_BINARY"), { + true: [wpa_supplicant_mainline], + default: [], + }), jni_libs: [ "libservice-wifi-jni", ], |