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

68 lines
1.9 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.weserplaner'
2023-04-08 11:41:02 +02:00
compileSdk 33
defaultConfig {
applicationId "com.denizk0461.weserplaner"
2023-04-08 11:41:02 +02:00
minSdk 24
targetSdk 33
versionCode 4
versionName "1.0.1"
2023-04-08 11:41:02 +02:00
resourceConfigurations += ["en", "de"]
buildConfigField "long", "BUILD_TIME_MILLIS", "${System.currentTimeMillis()}L"
2023-04-08 11:41:02 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
2023-04-08 11:41:02 +02:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
ndk {
debugSymbolLevel 'SYMBOL_TABLE'
}
2023-04-08 11:41:02 +02:00
}
}
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.9.0'
2023-04-08 13:43:26 +02:00
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 17:30:05 +02:00
implementation "androidx.room:room-runtime:2.5.1"
implementation 'androidx.core:core-ktx:1.10.0'
2023-04-08 17:30:05 +02:00
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
}