You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.1 KiB
91 lines
3.1 KiB
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: "androidx.navigation.safeargs.kotlin"
|
|
apply plugin: 'dagger.hilt.android.plugin'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.compileSdkVersion
|
|
//compileSdk 32
|
|
namespace 'fr.iut.myandroid'
|
|
|
|
defaultConfig {
|
|
applicationId "fr.iut.myandroid"
|
|
minSdkVersion rootProject.minSdkVersion
|
|
targetSdkVersion rootProject.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
// buildConfigField("String", "UNSPLASH_ACCESS_KEY", unsplash_access_key)
|
|
/* minSdk 21
|
|
targetSdk 32
|
|
versionCode 1
|
|
versionName "1.0"*/
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
// Default dependencies
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
implementation "androidx.core:core-ktx:$ktxVersion"
|
|
implementation "androidx.appcompat:appcompat:$appCompatVersion"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
|
|
testImplementation "junit:junit:$junitVersion"
|
|
androidTestImplementation "androidx.test.ext:junit:$testExtJunitVersion"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
|
|
|
|
// Navigation Component
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigationVersion"
|
|
|
|
// Dagger Hilt
|
|
implementation "com.google.dagger:hilt-android:$hiltVersion"
|
|
kapt "com.google.dagger:hilt-android-compiler:$hiltVersion"
|
|
implementation "androidx.hilt:hilt-lifecycle-viewmodel:$hiltAndroidXVersion"
|
|
kapt "androidx.hilt:hilt-compiler:$hiltAndroidXVersion"
|
|
|
|
// Retrofit + GSON
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
|
|
implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion"
|
|
|
|
// Glide
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
// Paging 3
|
|
implementation "androidx.paging:paging-runtime:$pagingVersion"
|
|
}
|
|
|
|
kapt {
|
|
correctErrorTypes true
|
|
} |