Archived
58 lines
2.0 KiB
Groovy
58 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "com.denizd.substitutionplan"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 21
|
|
versionName "2.1.4"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-rc1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0-beta01'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-beta01'
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta01'
|
|
implementation 'com.google.android.material:material:1.1.0-alpha09'
|
|
implementation 'com.android.support:customtabs:28.0.0'
|
|
|
|
// implementation 'androidx.core:core-ktx:1.0.2'
|
|
|
|
implementation 'com.jaredrummler:android-device-names:1.1.8'
|
|
|
|
def lifecycle_version = "2.0.0"
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
|
annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
|
|
|
|
def room_version = "2.1.0-alpha04"
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
// implementation "androidx.work:work-runtime-ktx:2.0.1"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|