Initial commit for service

This commit is contained in:
Hamza-Ayed
2026-01-20 23:36:57 +03:00
parent 66ae6c0ddb
commit ad2511bd96
34 changed files with 3757 additions and 4761 deletions

View File

@@ -28,7 +28,7 @@ if (keystorePropertiesFile.exists()) {
android {
namespace = "com.service_intaleq"
compileSdk = 36
ndkVersion = "27.0.12077973"
// ndkVersion = "27.0.12077973"
defaultConfig {
applicationId = "com.service_intaleq"
@@ -39,7 +39,7 @@ android {
multiDexEnabled = true
ndk {
abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
abiFilters += listOf("armeabi-v7a", "arm64-v8a")
}
}
@@ -67,6 +67,7 @@ android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
isCoreLibraryDesugaringEnabled = true
}
kotlinOptions {
@@ -76,7 +77,7 @@ android {
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
version = "3.31.5"
version = "3.22.1"
}
}
}