mini-cards/app/build.gradle

50 lines
1.7 KiB
Groovy
Raw Normal View History

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 {
2020-03-02 21:10:22 +00:00
compileSdkVersion 29
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
2020-03-02 21:10:22 +00:00
targetSdkVersion 29
2017-07-03 18:26:38 +00:00
versionCode 1
versionName "1.0"
2020-03-02 21:10:22 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2017-07-03 18:26:38 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
2017-07-03 18:26:38 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2020-03-02 21:10:22 +00:00
implementation 'androidx.annotation:annotation:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
2017-07-03 18:26:38 +00:00
exclude group: 'com.android.support', module: 'support-annotations'
})
2020-03-02 21:10:22 +00:00
implementation 'androidx.appcompat:appcompat:1.0.0'
2017-07-03 18:26:38 +00:00
testImplementation 'junit:junit:4.12'
2020-03-02 21:10:22 +00:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
2020-03-02 20:01:11 +00:00
implementation 'com.getbase:floatingactionbutton:1.10.1'
implementation 'com.larswerkman:HoloColorPicker:1.5'
2020-03-02 21:10:22 +00:00
implementation 'androidx.cardview:cardview:1.0.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'
2020-05-26 15:43:19 +00:00
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.7.2'
2020-03-02 20:01:11 +00:00
}
repositories {
mavenCentral()
2017-07-03 18:26:38 +00:00
}