Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-02-19 17:08:47 +01:00
parent bdc1668af6
commit b2248425ca
20 changed files with 343 additions and 253 deletions

View File

@ -2,7 +2,7 @@ plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
id 'kotlin-kapt'
}
android {
@ -48,20 +48,11 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.room:room-runtime:2.2.6'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.room:room-runtime:2.2.6'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp:okhttp:2.2.0'
implementation 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
annotationProcessor 'androidx.room:room-compiler:2.2.6'
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
// implementation 'androidx.recyclerview:recyclerview:1.1.0'
// implementation 'com.google.android.material:material:1.3.0'
// implementation 'androidx.preference:preference:1.1.1'
// implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
// implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
@ -79,6 +70,12 @@ dependencies {
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp:okhttp:2.2.0'
implementation 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
// Database
implementation 'androidx.room:room-runtime:2.2.6'
implementation 'androidx.room:room-runtime:2.2.6'
kapt 'androidx.room:room-compiler:2.2.6'
}
apply plugin: 'kotlin-android-extensions'