2020-03-09 14:30:14 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
buildToolsVersion '29.0.3'
|
|
|
|
compileSdkVersion 29
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 29
|
|
|
|
versionCode 1
|
|
|
|
versionName '1.0'
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path 'tools/CMakeLists.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion"
|
|
|
|
api "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion"
|
|
|
|
implementation "androidx.annotation:annotation:$annotationsVersion"
|
|
|
|
implementation "androidx.collection:collection:$collectionVersion"
|
2020-03-09 14:39:34 +01:00
|
|
|
implementation "com.google.code.findbugs:jsr305:$jsr305Version"
|
2020-03-09 14:30:14 +01:00
|
|
|
implementation "com.jakewharton.threetenabp:threetenabp:$threetenabpVersion"
|
2020-03-09 16:06:28 +01:00
|
|
|
implementation "net.i2p.crypto:eddsa:$eddsaVersion"
|
2020-03-09 14:30:14 +01:00
|
|
|
}
|