143 lines
5.0 KiB
Groovy
143 lines
5.0 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'dagger.hilt.android.plugin'
|
|
id 'kotlin-parcelize'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.swayy.musicpark"
|
|
minSdk 21
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion compose_version
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation "androidx.compose.ui:ui:$compose_version"
|
|
implementation "androidx.compose.material:material:$compose_version"
|
|
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
|
|
implementation 'androidx.activity:activity-compose:1.3.1'
|
|
|
|
// Compose dependencies
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07"
|
|
implementation "androidx.navigation:navigation-compose:2.4.0-alpha08"
|
|
implementation "com.google.accompanist:accompanist-flowlayout:0.17.0"
|
|
|
|
|
|
implementation 'androidx.compose.material:material-icons-extended:1.4.0-alpha01'
|
|
|
|
//leak canary to detect memory leaks
|
|
debugImplementation("com.squareup.leakcanary:leakcanary-android:2.7")
|
|
|
|
// Coroutines
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1'
|
|
|
|
// Coroutine Lifecycle Scopes
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
|
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
|
|
|
|
//Dagger - Hilt
|
|
implementation "com.google.dagger:hilt-android:2.38.1"
|
|
kapt "com.google.dagger:hilt-android-compiler:2.37"
|
|
implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03"
|
|
kapt "androidx.hilt:hilt-compiler:1.0.0"
|
|
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0-alpha03'
|
|
|
|
//chucker
|
|
debugImplementation("com.github.chuckerteam.chucker:library:3.5.2")
|
|
releaseImplementation("com.github.chuckerteam.chucker:library-no-op:3.5.2")
|
|
|
|
// Retrofit
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.2"
|
|
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2"
|
|
|
|
implementation "com.google.accompanist:accompanist-swiperefresh:0.24.2-alpha"
|
|
|
|
implementation "com.google.accompanist:accompanist-navigation-animation:0.16.0"
|
|
|
|
implementation 'androidx.palette:palette:1.0.0'
|
|
|
|
implementation"io.coil-kt:coil-compose:2.1.0"
|
|
implementation("io.coil-kt:coil-gif:2.1.0")
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
implementation "androidx.room:room-runtime:2.4.2"
|
|
kapt "androidx.room:room-compiler:2.4.2"
|
|
|
|
//exoplayer
|
|
implementation "com.google.android.exoplayer:exoplayer:2.18.1"
|
|
|
|
//Accompanist
|
|
implementation "com.google.accompanist:accompanist-systemuicontroller:0.13.0"
|
|
implementation "com.google.accompanist:accompanist-coil:0.13.0"
|
|
implementation 'com.google.accompanist:accompanist-insets:0.25.1'
|
|
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'
|
|
|
|
// Kotlin Extensions and Coroutines support for Room
|
|
implementation "androidx.room:room-ktx:2.4.2"
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
|
|
implementation "com.google.accompanist:accompanist-pager:0.13.0"
|
|
implementation "com.google.accompanist:accompanist-pager-indicators:0.13.0"
|
|
|
|
// ExoPlayer
|
|
api "com.google.android.exoplayer:exoplayer-core:$exoplayerVersion"
|
|
api "com.google.android.exoplayer:exoplayer-ui:$exoplayerVersion"
|
|
api "com.google.android.exoplayer:extension-mediasession:$exoplayerVersion"
|
|
|
|
// Timber for logging
|
|
implementation 'com.jakewharton.timber:timber:5.0.1'
|
|
|
|
androidTestImplementation "com.google.truth:truth:1.0.1"
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
|
|
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
|
|
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
|
|
} |