0
0
mirror of https://github.com/mueller-ma/PrepaidBalance.git synced 2024-09-20 00:12:15 +02:00
PrepaidBalance/app/build.gradle
dependabot[bot] a8ea46b9db
Bump fragment-ktx from 1.5.0 to 1.5.1 (#109)
Bumps fragment-ktx from 1.5.0 to 1.5.1.

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-28 09:24:47 +02:00

79 lines
2.3 KiB
Groovy

plugins {
id "com.android.application"
id "kotlin-android"
id "kotlin-kapt"
id "com.mikepenz.aboutlibraries.plugin"
}
android {
compileSdkVersion 31
buildToolsVersion "31.0.0"
repositories {
maven { url "https://jitpack.io" }
}
defaultConfig {
applicationId "com.github.muellerma.prepaidbalance"
minSdkVersion 26
targetSdkVersion 31
versionCode 16
versionName "1.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
}
debug {
applicationIdSuffix ".debug"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
allWarningsAsErrors = true
}
buildFeatures {
viewBinding true
}
testOptions {
unitTests.returnDefaultValues = true
}
lint {
abortOnError false
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "androidx.core:core-ktx:1.8.0"
implementation "androidx.fragment:fragment-ktx:1.5.1"
implementation "androidx.appcompat:appcompat:1.4.2"
implementation "androidx.preference:preference-ktx:1.2.0"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation "com.google.android.material:material:1.6.1"
implementation "androidx.work:work-runtime-ktx:$workmanager_version"
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "com.mikepenz:aboutlibraries:$about_libraries_version"
testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.ext:junit:1.1.3"
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
}