diff options
author | Remi NGUYEN VAN <reminv@google.com> | 2019-05-14 14:08:56 +0900 |
---|---|---|
committer | Remi NGUYEN VAN <reminv@google.com> | 2019-05-21 12:20:10 +0900 |
commit | f2ce7b4527e0322f11032cfca67d37a9cea174cd (patch) | |
tree | 6767d37546f223417a9158e84a773f74d5f73a77 | |
parent | 0145abc3b20e3bcc5f00b0d8ac8d884da4b76f20 (diff) |
Have InProcessNetworkStack override NetworkStack
This avoids shipping both APKs on Go devices, as would be previously
done with the default Go configuration that still included NetworkStack.
Test: Flashed, booted walleye with svelte config. Verified that
NetworkStack is not on the device and InProcessNetworkStack is
used. WiFi working.
Bug: 132666298
(clean cherry-pick from qt-dev)
Merged-In: If4a7a003128a555e512c88469653c3fb2ad864d5
Change-Id: I8f8cf41947eb3be51ac0e97a4f0ec27e6d69aa7e
-rw-r--r-- | Android.bp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -108,6 +108,8 @@ android_app { defaults: ["NetworkStackAppCommon"], certificate: "platform", manifest: "AndroidManifest_InProcess.xml", + // InProcessNetworkStack is a replacement for NetworkStack + overrides: ["NetworkStack"], } // Updatable network stack packaged as an application |