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 {
|
2023-05-06 22:56:37 +02:00
|
|
|
namespace 'com.denizk0461.weserplaner'
|
2023-04-08 11:41:02 +02:00
|
|
|
compileSdk 33
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-05-06 22:56:37 +02:00
|
|
|
applicationId "com.denizk0461.weserplaner"
|
2023-04-08 11:41:02 +02:00
|
|
|
minSdk 24
|
|
|
|
|
targetSdk 33
|
2023-05-07 11:17:32 +02:00
|
|
|
versionCode 3
|
2023-05-05 15:52:30 +02:00
|
|
|
versionName "1.0.0"
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-30 22:47:59 +02:00
|
|
|
resourceConfigurations += ["en", "de"]
|
|
|
|
|
|
2023-04-25 21:57:47 +02:00
|
|
|
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
|
|
|
|
|
|
2023-04-08 11:41:02 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2023-05-07 11:17:32 +02:00
|
|
|
minifyEnabled true
|
2023-04-08 11:41:02 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2023-05-06 22:56:37 +02:00
|
|
|
signingConfig signingConfigs.debug
|
2023-05-07 11:17:32 +02:00
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
|
debugSymbolLevel 'FULL'
|
|
|
|
|
}
|
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'
|
2023-05-05 13:09:27 +02:00
|
|
|
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'
|
2023-04-23 17:13:48 +02:00
|
|
|
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'
|
2023-04-13 21:05:52 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01'
|
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
|
|
|
|
2023-04-18 10:25:45 +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
|
|
|
}
|