amethyst/quartz/build.gradle

69 wiersze
1.9 KiB
Groovy
Czysty Zwykły widok Historia

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.vitorpamplona.quartz'
2023-08-18 23:32:30 +00:00
compileSdk 34
defaultConfig {
minSdk 26
2023-08-18 23:32:30 +00:00
targetSdk 34
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
create("benchmark") {
initWith(getByName("release"))
signingConfig signingConfigs.debug
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
freeCompilerArgs += "-Xstring-concat=inline"
}
packagingOptions {
2024-03-01 13:03:58 +00:00
resources {
excludes += ['**/libscrypt.dylib']
}
}
2024-03-01 13:03:58 +00:00
}
dependencies {
2023-08-22 15:05:17 +00:00
implementation "androidx.core:core-ktx:$core_ktx_version"
// @Immutable and @Stable
implementation "androidx.compose.runtime:runtime:$compose_ui_version"
// Bitcoin secp256k1 bindings to Android
2024-02-16 20:40:53 +00:00
api 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.14.0'
2024-02-15 21:05:53 +00:00
// LibSodium for ChaCha encryption (NIP-44)
implementation "com.goterl:lazysodium-android:5.1.0@aar"
2023-12-10 23:32:47 +00:00
implementation 'net.java.dev.jna:jna:5.14.0@aar'
2024-02-15 21:05:53 +00:00
// Performant Parser of JSONs into Events
2023-12-26 19:43:01 +00:00
api 'com.fasterxml.jackson.module:jackson-module-kotlin:2.16.1'
// immutable collections to avoid recomposition
2023-12-22 15:25:28 +00:00
api('org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7')
// Parses URLs from Text:
api "io.github.url-detector:url-detector:0.1.23"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}