112 lines
3.6 KiB
Groovy
112 lines
3.6 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'com.google.dagger.hilt.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.uitron.demo'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.uitron.demo"
|
|
minSdk 21
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('keystore/release.jks')
|
|
storePassword "releaseKey"
|
|
keyAlias "releaseKey"
|
|
keyPassword "releaseKey"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
signingConfig signingConfigs.release
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
benchmark {
|
|
initWith release
|
|
signingConfig signingConfigs.debug
|
|
matchingFallbacks = ['release']
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion '1.4.3'
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform("androidx.compose:compose-bom:2023.06.01")
|
|
|
|
implementation project(':navi-uitron')
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
implementation 'androidx.activity:activity-compose:1.7.2'
|
|
implementation "androidx.compose.material:material"
|
|
implementation 'androidx.compose.ui:ui'
|
|
implementation 'androidx.compose.ui:ui-graphics'
|
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
implementation "androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha10"
|
|
testImplementation "junit:junit:4.13.2"
|
|
androidTestImplementation "androidx.test.ext:junit:1.1.5"
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
implementation 'androidx.navigation:navigation-compose:2.6.0'
|
|
implementation 'androidx.profileinstaller:profileinstaller:1.3.1'
|
|
|
|
// Retrofit
|
|
api "com.squareup.retrofit2:retrofit:2.9.0"
|
|
api 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.6.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.4.1'
|
|
|
|
// compose with lifecycle
|
|
api "androidx.lifecycle:lifecycle-runtime-compose:2.6.1"
|
|
|
|
// Pagination
|
|
implementation "androidx.paging:paging-runtime-ktx:3.1.1"
|
|
implementation "androidx.paging:paging-compose:1.0.0-alpha17"
|
|
|
|
//Room
|
|
def room_version = "2.5.2"
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
implementation "androidx.room:room-paging:$room_version"
|
|
|
|
// Hilt
|
|
implementation 'com.google.dagger:hilt-android:2.44'
|
|
kapt 'androidx.hilt:hilt-compiler:1.0.0'
|
|
kapt 'com.google.dagger:hilt-android-compiler:2.44'
|
|
implementation "androidx.hilt:hilt-navigation-compose:1.0.0"
|
|
} |