This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
weserplaner/app/build.gradle
T

62 lines
1.8 KiB
Groovy
Raw Normal View History

2023-04-08 11:41:02 +02:00
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
2023-04-08 17:30:05 +02:00
id 'kotlin-kapt'
2023-04-08 11:41:02 +02:00
}
android {
namespace 'com.denizk0461.studip'
compileSdk 33
defaultConfig {
applicationId "com.denizk0461.studip"
minSdk 24
targetSdk 33
versionCode 1
versionName "0.4.61"
2023-04-08 11:41:02 +02:00
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
2023-04-08 11:41:02 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
2023-04-26 11:00:56 +02:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2023-04-08 11:41:02 +02:00
}
kotlinOptions {
2023-04-26 11:00:56 +02:00
jvmTarget = '17'
2023-04-08 11:41:02 +02:00
}
buildFeatures {
viewBinding true
}
}
dependencies {
2023-04-08 13:43:26 +02:00
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'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.fragment:fragment-ktx:1.6.0-beta01'
2023-04-08 13:43:26 +02:00
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'androidx.core:core-ktx:1.10.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01'
2023-04-08 11:41:02 +02:00
testImplementation 'junit:junit:4.13.2'
2023-04-08 13:43:26 +02:00
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2023-04-08 17:30:05 +02:00
implementation "androidx.room:room-runtime:2.5.1"
kapt "androidx.room:room-compiler:2.5.1"
2023-04-08 18:53:51 +02:00
implementation 'androidx.preference:preference-ktx:1.2.0'
2023-04-08 18:53:51 +02:00
implementation 'org.jsoup:jsoup:1.15.4'
2023-04-08 11:41:02 +02:00
}