增加bdpatch

This commit is contained in:
2025-04-10 10:40:35 +08:00
parent 64f2de69e3
commit ab69c535e4
18 changed files with 5962 additions and 9 deletions

View File

@@ -22,8 +22,8 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk { //可以根据需要来自行选择并添加对应cpu类型的.so库。
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
// 还可以添加 'x86', 'x86_64', 'mips', 'mips64'
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
// 还可以添加 'armeabi', 'x86', 'x86_64', 'mips', 'mips64'
}
compileOptions {
@@ -42,6 +42,12 @@ android {
}
}
externalNativeBuild {
cmake {
path file('CMakeLists.txt')
}
}
signingConfigs {
own {
storeFile file("keystore/ttstd.jks")
@@ -110,7 +116,6 @@ android {
}
}
dependencies {