Permalink
Cannot retrieve contributors at this time
apply plugin: 'com.android.dynamic-feature' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
android { | |
compileSdkVersion 29 | |
defaultConfig { | |
minSdkVersion 21 | |
targetSdkVersion 29 | |
versionCode 1 | |
versionName "1.0" | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation project(':app') | |
implementation "androidx.core:core-ktx:1.2.0" | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" | |
// https://square.github.io/okhttp/#releases | |
implementation 'com.squareup.okhttp3:okhttp:4.5.0' | |
} | |
repositories { | |
mavenCentral() | |
} |