Last active
March 19, 2019 10:01
-
-
Save yudikarma/b1b432899a19f58e08a3fe21d1745549 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
apply plugin: 'kotlin-kapt' | |
apply plugin: 'androidx.navigation.safeargs.kotlin' | |
android { | |
compileSdkVersion 28 | |
defaultConfig { | |
applicationId "com.company107.myapplication" | |
minSdkVersion 22 | |
targetSdkVersion 28 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | |
} | |
} | |
dataBinding { | |
enabled = true | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |
implementation 'androidx.appcompat:appcompat:1.1.0-alpha02' | |
implementation 'androidx.core:core-ktx:1.1.0-alpha04' | |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |
implementation 'com.google.android.material:material:1.1.0-alpha04' | |
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | |
//navigationPart | |
implementation "android.arch.navigation:navigation-fragment:1.0.0-rc02" | |
implementation "android.arch.navigation:navigation-ui:1.0.0-rc02" | |
implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0-rc02" | |
implementation "android.arch.navigation:navigation-ui-ktx:1.0.0-rc02" | |
testImplementation 'junit:junit:4.12' | |
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment