2017-07-03 18:26:38 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2020-03-02 20:01:11 +00:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-android'
|
2017-07-03 18:26:38 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 25
|
2018-01-20 20:36:59 +00:00
|
|
|
buildToolsVersion "27.0.1"
|
2017-07-03 18:26:38 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.codigoparallevar.minicards"
|
|
|
|
minSdkVersion 15
|
|
|
|
targetSdkVersion 25
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-03-02 20:01:11 +00:00
|
|
|
implementation 'com.android.support:support-annotations:28.0.0'
|
|
|
|
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
2017-07-03 18:26:38 +00:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
|
|
|
implementation 'com.android.support:appcompat-v7:25.4.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-07-09 14:46:47 +00:00
|
|
|
implementation 'com.android.support:design:25.4.0'
|
2020-03-02 20:01:11 +00:00
|
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
|
|
|
implementation 'com.larswerkman:HoloColorPicker:1.5'
|
2018-01-21 11:05:54 +00:00
|
|
|
implementation 'com.android.support:cardview-v7:25.4.0'
|
2020-03-02 20:01:11 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2017-07-03 18:26:38 +00:00
|
|
|
}
|