summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2023-05-29 16:05:39 -0700
committerGravatar bunnei2023-06-03 00:06:05 -0700
commit17b5ed9baf44e81c81c29c63e5ae4a91c558c5df (patch)
tree11321cca451d59ad47f6deac0aa5f97ec5797fec
parentandroid: Re-enable service notification (diff)
downloadyuzu-17b5ed9baf44e81c81c29c63e5ae4a91c558c5df.tar.gz
yuzu-17b5ed9baf44e81c81c29c63e5ae4a91c558c5df.tar.xz
yuzu-17b5ed9baf44e81c81c29c63e5ae4a91c558c5df.zip
android: externals: Update libadrenotools, use useLegacyPackaging.
Diffstat (limited to '')
m---------externals/libadrenotools0
-rw-r--r--src/android/app/build.gradle.kts5
2 files changed, 5 insertions, 0 deletions
diff --git a/externals/libadrenotools b/externals/libadrenotools
Subproject a6c0947df6b152b350342f5191b3082768e15e3 Subproject 5cd3f5c5ceea6d9e9d435ccdd922d9b99e55d10
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts
index 21ebfa4fc..4aa19c91a 100644
--- a/src/android/app/build.gradle.kts
+++ b/src/android/app/build.gradle.kts
@@ -32,6 +32,11 @@ android {
32 jvmTarget = "17" 32 jvmTarget = "17"
33 } 33 }
34 34
35 packagingOptions {
36 // This is necessary for libadrenotools custom driver loading
37 jniLibs.useLegacyPackaging = true
38 }
39
35 lint { 40 lint {
36 // This is important as it will run lint but not abort on error 41 // This is important as it will run lint but not abort on error
37 // Lint has some overly obnoxious "errors" that should really be warnings 42 // Lint has some overly obnoxious "errors" that should really be warnings