diff options
| author | 2019-09-10 16:10:40 +0100 | |
|---|---|---|
| committer | 2019-09-23 11:05:26 +0100 | |
| commit | 38e0e2cc4426b490fa8283dcd5858d658b11af6f (patch) | |
| tree | 8c4a628ae0c323da97c5e9e4c859707a4e3b10d1 | |
| parent | 3dbdb1bc8d4ecb376d601f563dae5b705aac6947 (diff) | |
Add BackupEncryption apk as requirement for services
Bug: 111386661
Test: `m clobber; m -j` then ensure BackupEncrypter.apk is in the system image
Change-Id: I0bd55fc53b74a17fa496681a5afcbf042df45a30
| -rw-r--r-- | services/Android.bp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/services/Android.bp b/services/Android.bp index 6953e862f68b..60dd8959fc39 100644 --- a/services/Android.bp +++ b/services/Android.bp @@ -47,6 +47,11 @@ java_library { "compat-changeid-annotation-processor", ], + required: [ + // Required by services.backup + "BackupEncryption", + ], + // Uncomment to enable output of certain warnings (deprecated, unchecked) //javacflags: ["-Xlint"], |