diff options
author | David Su <dysu@google.com> | 2020-04-21 19:49:32 -0700 |
---|---|---|
committer | David Su <dysu@google.com> | 2020-04-22 05:40:28 +0000 |
commit | 57bca318f1401c200a75aa20e0f1e9e97f69131a (patch) | |
tree | 02472aaab01e8ab5a12d4510c1093669b299a1c9 /services/net | |
parent | 0bfa60f20bed36fedea4594902cc2e1cb8645b37 (diff) |
framework-wifi: remove duplicate classes
Preconditions & Inet4AddressUtils are statically
linked into both framework-wifi and service-wifi.
This creates duplicate classes, which should be
avoided. Instead, service-wifi should simply refer
to the copy of Preconditions/Inet4AddressUtils in
framework-wifi.
Bug: 153596226
Test: device boots up and connects to wifi
Change-Id: Ie78e5cf0f6ff7bc8a2fa8d7264b742f912601143
Diffstat (limited to 'services/net')
-rw-r--r-- | services/net/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/net/Android.bp b/services/net/Android.bp index 9f2979906d42..bb5409b3e032 100644 --- a/services/net/Android.bp +++ b/services/net/Android.bp @@ -41,6 +41,7 @@ java_library { sdk_version: "module_current", libs: [ "unsupportedappusage", + "framework-wifi-util-lib", ], static_libs: [ "dnsresolver_aidl_interface-V2-java", |