diff options
| author | 2022-08-30 20:18:41 +0000 | |
|---|---|---|
| committer | 2022-08-30 20:18:41 +0000 | |
| commit | 6ca93bb18a25dc33bbee6c42a76debab6f9e5533 (patch) | |
| tree | 0343bf1bb80fffe344f9011466ab1c22ec3712aa | |
| parent | 33958221dff95245ce5ddb850b6008351c55a8f8 (diff) | |
| parent | 56ec5d9ed5a02e7302b150c6f608ffdcb013c7bd (diff) | |
Merge "Use explicit aidl versions for audio hal and soundtrigger dependencies."
| -rw-r--r-- | media/Android.bp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media/Android.bp b/media/Android.bp index 7118afad975a..e97f077b347a 100644 --- a/media/Android.bp +++ b/media/Android.bp @@ -35,8 +35,8 @@ aidl_interface { "aidl/android/media/soundtrigger_middleware/SoundTriggerModuleDescriptor.aidl", ], imports: [ - "android.media.audio.common.types", - "android.media.soundtrigger.types", + "android.media.audio.common.types-V2", + "android.media.soundtrigger.types-V1", "media_permission-aidl", ], } @@ -232,12 +232,12 @@ aidl_interface { }, }, imports: [ - "android.media.audio.common.types", + "android.media.audio.common.types-V2", ], versions_with_info: [ { version: "1", - imports: ["android.media.audio.common.types-V1"], + imports: ["android.media.audio.common.types-V2"], }, ], |