first commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'com.kikyps.kcompressor'
|
||||
compileSdk 36
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.kikyps.kcompressor"
|
||||
minSdk 21
|
||||
targetSdk 37
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
cppFlags "-std=c++17 -fexceptions -frtti"
|
||||
arguments "-DANDROID_STL=c++_static"
|
||||
}
|
||||
}
|
||||
|
||||
ndk {
|
||||
abiFilters "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
|
||||
}
|
||||
}
|
||||
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
path file("src/main/cpp/CMakeLists.txt")
|
||||
version "3.22.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user