|
@@ -4,6 +4,8 @@ apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
|
|
+apply plugin: 'kotlin-kapt'
|
|
|
|
|
+
|
|
|
android {
|
|
android {
|
|
|
compileSdkVersion 28
|
|
compileSdkVersion 28
|
|
|
defaultConfig {
|
|
defaultConfig {
|
|
@@ -33,21 +35,21 @@ dependencies {
|
|
|
|
|
|
|
|
// Kotlin Libraries
|
|
// Kotlin Libraries
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
- implementation 'androidx.core:core-ktx:1.0.0'
|
|
|
|
|
|
|
|
|
|
// Support Libraries
|
|
// Support Libraries
|
|
|
- implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
|
|
|
|
|
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
|
- implementation 'androidx.cardview:cardview:1.0.0-rc02'
|
|
|
|
|
implementation 'com.google.android.material:material:1.0.0-alpha1'
|
|
implementation 'com.google.android.material:material:1.0.0-alpha1'
|
|
|
|
|
+ implementation 'androidx.core:core-ktx:1.0.0'
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
|
|
|
|
|
+ implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
|
|
|
+ implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
|
+ implementation 'androidx.cardview:cardview:1.0.0-rc02'
|
|
|
|
|
|
|
|
// Arch Components
|
|
// Arch Components
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
|
|
|
implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha06'
|
|
implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha06'
|
|
|
- implementation 'androidx.room:room-runtime:2.0.0-alpha1'
|
|
|
|
|
- annotationProcessor "androidx.room:room-compiler:2.0.0-alpha1"
|
|
|
|
|
- annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.0.0-alpha1"
|
|
|
|
|
|
|
+ implementation 'androidx.room:room-runtime:2.1.0-alpha01'
|
|
|
|
|
+ kapt "androidx.room:room-compiler:2.1.0-alpha01"
|
|
|
|
|
+ kapt "androidx.lifecycle:lifecycle-compiler:2.0.0-alpha1"
|
|
|
|
|
|
|
|
// 3rd Party libs
|
|
// 3rd Party libs
|
|
|
implementation 'com.daasuu:EasingInterpolator:1.0.0'
|
|
implementation 'com.daasuu:EasingInterpolator:1.0.0'
|
|
@@ -55,7 +57,7 @@ dependencies {
|
|
|
// Test libs
|
|
// Test libs
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'junit:junit:4.12'
|
|
|
testImplementation 'org.mockito:mockito-core:2.7.6'
|
|
testImplementation 'org.mockito:mockito-core:2.7.6'
|
|
|
- androidTestImplementation 'androidx.room:room-testing:2.0.0-alpha1'
|
|
|
|
|
- androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
|
|
|
|
|
- androidTestImplementation 'androidx.test:rules:1.1.0-alpha3'
|
|
|
|
|
|
|
+ androidTestImplementation 'androidx.room:room-testing:2.1.0-alpha01'
|
|
|
|
|
+ androidTestImplementation 'androidx.test:runner:1.1.0-beta02'
|
|
|
|
|
+ androidTestImplementation 'androidx.test:rules:1.1.0-beta02'
|
|
|
}
|
|
}
|