Complete Android client for encrypted chat platform. 78+ Kotlin files: crypto (X3DH, Double Ratchet, AES-GCM, Ed25519, X25519, RSA-PSS), network (TCP/TLS, 50 endpoints), Hilt DI, Room+SQLCipher DB, Jetpack Compose UI with Catppuccin Mocha theme. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
92 lines
3.2 KiB
Kotlin
92 lines
3.2 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("com.google.dagger.hilt.android")
|
|
id("com.google.devtools.ksp")
|
|
id("org.jetbrains.kotlin.plugin.compose")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.kecalek.chat"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId = "com.kecalek.chat"
|
|
minSdk = 26
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "0.8.5"
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
val composeBom = platform("androidx.compose:compose-bom:2025.01.01")
|
|
implementation(composeBom)
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-graphics")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
implementation("androidx.activity:activity-compose:1.9.3")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.8.7")
|
|
implementation("androidx.navigation:navigation-compose:2.8.5")
|
|
|
|
implementation("com.google.dagger:hilt-android:2.59.2")
|
|
ksp("com.google.dagger:hilt-compiler:2.59.2")
|
|
implementation("androidx.hilt:hilt-navigation-compose:1.2.0")
|
|
|
|
implementation("androidx.room:room-runtime:2.8.4")
|
|
implementation("androidx.room:room-ktx:2.8.4")
|
|
ksp("androidx.room:room-compiler:2.8.4")
|
|
implementation("net.zetetic:sqlcipher-android:4.13.0")
|
|
implementation("androidx.sqlite:sqlite-ktx:2.4.0")
|
|
|
|
implementation("com.google.crypto.tink:tink-android:1.12.0")
|
|
implementation("org.bouncycastle:bcprov-jdk18on:1.77")
|
|
implementation("org.bouncycastle:bcpkix-jdk18on:1.77")
|
|
|
|
implementation("io.coil-kt:coil-compose:2.7.0")
|
|
|
|
implementation("com.google.zxing:core:3.5.3")
|
|
implementation("com.journeyapps:zxing-android-embedded:4.3.0")
|
|
|
|
implementation("androidx.camera:camera-camera2:1.5.0")
|
|
implementation("androidx.camera:camera-lifecycle:1.5.0")
|
|
implementation("androidx.camera:camera-view:1.5.0")
|
|
|
|
implementation("androidx.biometric:biometric:1.1.0")
|
|
|
|
implementation("androidx.datastore:datastore-preferences:1.0.0")
|
|
implementation("androidx.security:security-crypto:1.1.0-alpha06")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")
|
|
androidTestImplementation(composeBom)
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
}
|