aboutsummaryrefslogtreecommitdiff
path: root/pairing_auth
AgeCommit message (Collapse)Author
2022-05-10Add adbd pairing tests to mainline test mapping for adbd.Joshua Duong
Bug: 208857210 Bug: 208845038 Original change: https://android-review.googlesource.com/c/platform/packages/modules/adb/+/2078299 Change-Id: I9ff767452e1f67fc749ae2df47790e03e6b6ad78 (cherry picked from commit 52cd26d8da13ef1aa8eae1b361900a30212dc410) Change-Id: I098e7d162dfe8d469f32641aaca62d365b1757c8
2021-11-22Set min_sdk_versionJooyung Han
Many modules requiring min_sdk_version have been used without setting it, but hard-coded in allowlist. Bug: 158059172 Test: m Change-Id: Idc7ad2e7f704eeca6adedd8ec136f691cfefb65d
2021-10-06Revert "Changes to linking strategy"Oriol Prieto Gasco
This reverts commit ab33cd554401ee073d15094c6f2cdbb5be90e660. Reason for revert: Reverting while we investigate reports of a crash introduced by this change. Bug: 202258397 Change-Id: I74f417043ffe69f58a99e1f21f9894028183ab3d
2021-10-05Changes to linking strategyOriol Prieto Gasco
Test: Build and side-load apex module Bug: 194395180 Changes included: 1) Make dependencies on libbase dynamic (because there are multiple binaries depending on it) 2) Remove dependency on libcrypto_utils by libadb_pairing_server (unused) 3) Remove dependecy on libadb_pairing_auth by libadb_pairing_server (unused) 4) Make the dependency on libadb_pairing_auth static (because only libadbd_pairing_connection depends on it) This results in savings of ~400k on the adbd apex file size (for arm32). Change-Id: I8969dbcdea26f76ddfdb135ca116941c64a1187c
2021-02-12[LSC] Add LOCAL_LICENSE_KINDS to packages/modules/adbBob Badour
Added SPDX-license-identifier-Apache-2.0 to: Android.bp apex/Android.bp crypto/Android.bp crypto/tests/Android.bp fastdeploy/Android.bp libs/adbconnection/Android.bp libs/libadbd_fs/Android.bp pairing_auth/Android.bp pairing_auth/tests/Android.bp pairing_connection/Android.bp pairing_connection/tests/Android.bp proto/Android.bp tls/Android.bp tls/tests/Android.bp tools/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: Id2087906a4e095ad8380cc646299b3739d82aed9
2021-02-04Remove __ANDROID_API__ #if checks.android-s-preview-1Elliott Hughes
__INTRODUCED_IN() does the right thing automatically now. Bug: http://b/178449269 Test: treehugger Change-Id: I71deac71b8d8b7b99e5ea0b93a9401a536101042
2020-11-04Fix references to system/core.Josh Gao
Test: treehugger Change-Id: Iea04e15d1bf266cc6da495b554ba0dfd8d125641
2020-10-18Migrate system/core/adb to packages/modules/adbBaligh Uddin
Adding new path to visibility rule, as b/170958306 prevents adding new changes to a project being introduced in the same topic. We need to do this ahead of the migration and then cleanup after the migration is complete. BUG: 167963357 Test: TH Change-Id: Id02e4ea3a6d387bad7b2dbd5d0a38f662d0254fc
2020-03-26Fix pairing aes_128_gcm key initialization.Joshua Duong
Bug: 150719467 Test: atest adb_pairing_auth_test Test: check 'adb pair' command on all three platforms work Change-Id: Idfc64fe7bed2d09f4da9d2f7df70f9d6ae4e8fa3 Exempt-From-Owner-Approval: approved in go/ag/10808153
2020-02-28Remove pairing_auth, pairing_connection from recovery.Joshua Duong
Also remove statically linking libc++, because these libraries are not exported native shared libraries. We are slightly over the 12MB limit for ramdisk recovery size, so let's remove the adb pairing libraries, since they won't be used in recovery mode. These are only used in normal boot mode, and currently, only by adb client. The pairing server is used by system server. Bug: 150317254 Test: Check size of ramdisk-recovery.img in walleye, walleye-hwasam build to be under 12MB. Also verify installed-files-recovery.txt no longer contains libadb_pairing*. Also put phone into recovery mode, check system/lib64 for no libadb_pairing*. Change-Id: Ida7c4fdc9dda2b09091b853feac8df8f125e4274 Merged-In: Ida7c4fdc9dda2b09091b853feac8df8f125e4274 (cherry picked from commit afc2cf0dec44fb7a65f418d0928b5c2c63bbc6cd) Exempt-From-Owner-Approval: cherry-pick
2020-02-21[adbwifi] Add pairing_auth library.Joshua Duong
Bug: 111434128 Bug: 119494503 Test: atest adb_pairing_auth_test Change-Id: Ieada7b8d9d8817292175623af55eac235b938c65 Exempt-From-Owner-Approval: approved already