033b79cba1
- Login and check of the login token.
48 lines
1.6 KiB
Groovy
48 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "27.0.1"
|
|
defaultConfig {
|
|
applicationId "com.codigoparallevar.minicards"
|
|
minSdkVersion 15
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.annotation:annotation:1.0.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
|
implementation 'com.larswerkman:HoloColorPicker:1.5'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|