56 lines
1.9 KiB
Groovy
56 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "29.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.tangem.devkit"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 4
|
|
versionName "1.2"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':tangem-core')
|
|
implementation project(':tangem-sdk')
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$versions.kotlin"
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.core:core-ktx:1.2.0'
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.0-beta4"
|
|
implementation "androidx.navigation:navigation-fragment-ktx:2.2.1"
|
|
implementation "androidx.navigation:navigation-ui-ktx:2.2.1"
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha02"
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
|
|
implementation "com.google.android.material:material:1.2.0-alpha05"
|
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'com.github.gbIxaHue:eu4d:0.3.8'
|
|
}
|