mirror of
https://github.com/topjohnwu/Magisk
synced 2024-11-13 20:54:12 +01:00
Fix native symbol strips
`ndkVersion` is also needed by app for striping native symbols. Set it in `setupCommon` instead.
This commit is contained in:
parent
40cb031af5
commit
d47e70cfaa
@ -72,6 +72,7 @@ fun Project.setupCommon() {
|
|||||||
compileSdkVersion(34)
|
compileSdkVersion(34)
|
||||||
buildToolsVersion = "34.0.0"
|
buildToolsVersion = "34.0.0"
|
||||||
ndkPath = "$sdkDirectory/ndk/magisk"
|
ndkPath = "$sdkDirectory/ndk/magisk"
|
||||||
|
ndkVersion = "26.1.10909125"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk = 23
|
minSdk = 23
|
||||||
|
@ -6,7 +6,6 @@ setupCommon()
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.topjohnwu.magisk.native"
|
namespace = "com.topjohnwu.magisk.native"
|
||||||
ndkVersion = "26.1.10909125"
|
|
||||||
|
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
ndkBuild {
|
ndkBuild {
|
||||||
|
Loading…
Reference in New Issue
Block a user