29 lines
662 B
Groovy
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'
|
|
} |