Skip to content

Instantly share code, notes, and snippets.

@merttoptas
Created December 15, 2019 16:58
Show Gist options
  • Save merttoptas/f3172e4794fc8a8e0d492659c48ea162 to your computer and use it in GitHub Desktop.
Save merttoptas/f3172e4794fc8a8e0d492659c48ea162 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.merttoptas.roomexample"
minSdkVersion 22
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "android.arch.persistence.room:runtime:1.1.1"
kapt "android.arch.persistence.room:compiler:1.1.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment