Skip to content

Instantly share code, notes, and snippets.

@lucassales2
Created August 13, 2019 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucassales2/4bd567ec98e6819e18545096581c93b7 to your computer and use it in GitHub Desktop.
Save lucassales2/4bd567ec98e6819e18545096581c93b7 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
versionCode 230
versionName "2.3.0"
manifestPlaceholders = [appId: "placeholder", apiKey: "placeholder"]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_version"
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
implementation 'com.google.android.material:material:1.0.0'
testImplementation "junit:junit:4.12"
testImplementation "io.mockk:mockk:1.9.3"
testImplementation "org.json:json:20180130"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment