Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

29 lines
662 B
Groovy

plugins {
id 'com.android.library'
id 'kotlin-android'
}
apply from: "$rootProject.projectDir/gradle/android-library.gradle"
android {
namespace 'com.duckduckgo.sync.crypto'
}
dependencies {
implementation JakeWharton.timber
implementation Square.okio
implementation project(':library-loader-api')
implementation "com.duckduckgo.synccrypto:sync-crypto-android:_"
// Testing dependencies
androidTestImplementation AndroidX.test.runner
androidTestImplementation AndroidX.test.ext.junit
}
fulladleModuleConfig {
maxTestShards.set(1)
}
tasks.register('androidTestsBuild') {
dependsOn 'assembleDebugAndroidTest'
}