47 lines
1.7 KiB
Groovy
47 lines
1.7 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':tangemcard-common')
|
|
implementation project(':tangemcard-android')
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
// implementation 'com.madgag.spongycastle:core:1.56.0.0'
|
|
// implementation 'com.madgag.spongycastle:prov:1.56.0.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
|
|
// implementation 'com.google.dagger:dagger:2.16'
|
|
// implementation 'org.bitcoinj:bitcoinj-parent:0.14.7'
|
|
// implementation 'org.bitcoinj:bitcoinj-core:0.14.7'
|
|
// annotationProcessor 'com.google.dagger:dagger-compiler:2.16'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|