94 lines
3.3 KiB
Groovy
94 lines
3.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'androidx.navigation.safeargs.kotlin'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "de.sebse.fuplanner2"
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
//minifyEnabled true
|
|
//shrinkResources true
|
|
resValue("string", "PORT_NUMBER", "8081")
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
compose true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerVersion kotlin_version
|
|
kotlinCompilerExtensionVersion compose_version
|
|
}
|
|
|
|
// To inline the bytecode built with JVM target 1.8 into
|
|
// bytecode that is being built with JVM target 1.6. (e.g. navArgs)
|
|
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
|
|
implementation 'androidx.fragment:fragment-ktx:1.3.6'
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
implementation 'com.android.volley:volley:1.2.1'
|
|
implementation 'androidx.room:room-runtime:2.3.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
|
|
kapt 'androidx.room:room-compiler:2.3.0'
|
|
implementation 'androidx.room:room-ktx:2.3.0'
|
|
implementation 'com.beust:klaxon:5.5'
|
|
implementation 'androidx.work:work-runtime-ktx:2.7.0'
|
|
implementation 'androidx.paging:paging-runtime-ktx:3.0.1'
|
|
implementation 'com.github.thellmund:android-week-view:5.3.2'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
// Compose
|
|
implementation "androidx.compose.runtime:runtime:1.0.5"
|
|
implementation "androidx.compose.runtime:runtime-livedata:1.0.5"
|
|
implementation "androidx.compose.ui:ui:1.0.5"
|
|
implementation "androidx.compose.ui:ui-tooling:1.0.5"
|
|
implementation "androidx.compose.foundation:foundation:1.0.5"
|
|
implementation "androidx.compose.foundation:foundation-layout:1.0.5"
|
|
implementation "androidx.compose.material:material:1.0.5"
|
|
implementation "androidx.navigation:navigation-compose:2.4.0-beta02"
|
|
|
|
implementation "com.google.android.material:compose-theme-adapter:1.1.0"
|
|
}
|