Add comment support
This commit is contained in:
@@ -3,6 +3,8 @@ plugins {
|
||||
id 'org.jetbrains.kotlin.android'
|
||||
}
|
||||
|
||||
apply plugin: 'kotlin-kapt'
|
||||
|
||||
android {
|
||||
namespace 'fr.uca.iut.clfreville2.teaiswarm'
|
||||
compileSdk 33
|
||||
@@ -10,7 +12,7 @@ android {
|
||||
defaultConfig {
|
||||
applicationId "fr.uca.iut.clfreville2.teaiswarm"
|
||||
minSdk 21
|
||||
targetSdk 32
|
||||
targetSdk 33
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
@@ -40,8 +42,9 @@ dependencies {
|
||||
def paging_version = "3.1.1"
|
||||
def fragment_version = "1.5.6"
|
||||
def preference_version = "1.2.0"
|
||||
def room_version = "2.5.1"
|
||||
|
||||
implementation 'androidx.core:core-ktx:1.9.0'
|
||||
implementation 'androidx.core:core-ktx:1.10.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'com.google.android.material:material:1.8.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
@@ -60,7 +63,10 @@ dependencies {
|
||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||
implementation 'io.coil-kt:coil:2.3.0'
|
||||
|
||||
//implementation 'androidx.core:core-ktx:+'
|
||||
implementation "androidx.room:room-ktx:$room_version"
|
||||
implementation "androidx.room:room-runtime:$room_version"
|
||||
kapt "androidx.room:room-compiler:$room_version"
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
||||
|
Reference in New Issue
Block a user