116 lines
3.7 KiB
Groovy
116 lines
3.7 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.hikoncont'
|
|
compileSdk 35
|
|
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.hikoncont"
|
|
minSdk 24
|
|
targetSdk 35
|
|
versionCode 1
|
|
versionName "1.0.1.6"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
lint {
|
|
// Keep CI/build running even when lint reports issues.
|
|
abortOnError false
|
|
checkReleaseBuilds false
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
// Release hardening
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
// Signing config
|
|
signingConfig signingConfigs.debug
|
|
|
|
// Build optimization
|
|
zipAlignEnabled true
|
|
debuggable false
|
|
jniDebuggable false
|
|
|
|
buildConfigField "String", "BUILD_TYPE", "\"release\""
|
|
buildConfigField "boolean", "ENABLE_ENCRYPTION", "true"
|
|
buildConfigField "boolean", "ENABLE_ANTI_DEBUG", "true"
|
|
buildConfigField "boolean", "ENABLE_ROOT_DETECTION", "true"
|
|
buildConfigField "boolean", "ENABLE_EMULATOR_DETECTION", "true"
|
|
}
|
|
|
|
debug {
|
|
// Easier troubleshooting for local development
|
|
minifyEnabled false
|
|
shrinkResources false
|
|
debuggable true
|
|
|
|
buildConfigField "String", "BUILD_TYPE", "\"debug\""
|
|
buildConfigField "boolean", "ENABLE_ENCRYPTION", "false"
|
|
buildConfigField "boolean", "ENABLE_ANTI_DEBUG", "false"
|
|
buildConfigField "boolean", "ENABLE_ROOT_DETECTION", "false"
|
|
buildConfigField "boolean", "ENABLE_EMULATOR_DETECTION", "false"
|
|
}
|
|
|
|
create("enhancement") {
|
|
initWith(getByName("release"))
|
|
|
|
// Enhanced release-like profile
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
|
|
buildConfigField "String", "BUILD_TYPE", "\"enhancement\""
|
|
buildConfigField "boolean", "ENABLE_ENCRYPTION", "true"
|
|
buildConfigField "boolean", "ENABLE_ANTI_DEBUG", "true"
|
|
buildConfigField "boolean", "ENABLE_ROOT_DETECTION", "true"
|
|
buildConfigField "boolean", "ENABLE_EMULATOR_DETECTION", "true"
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.github.pedroSG94.RootEncoder:library:2.5.4-1.8.22'
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
|
|
|
|
implementation 'io.socket:socket.io-client:2.1.0'
|
|
implementation 'org.webrtc:google-webrtc:1.0.32006'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'org.json:json:20231013'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
|
|
implementation 'androidx.lifecycle:lifecycle-service:2.6.2'
|
|
|
|
implementation 'androidx.work:work-runtime-ktx:2.8.1'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
}
|