This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
HarvestDawn/app/build.gradle

44 lines
1.3 KiB
Groovy
Raw Normal View History

2021-03-08 16:04:00 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
2023-04-04 18:57:02 +02:00
compileSdkVersion 33
2021-03-08 16:04:00 +01:00
defaultConfig {
applicationId "io.lowrespalmtree.harvestdawn"
minSdkVersion 24
2023-04-04 18:57:02 +02:00
targetSdkVersion 33
2021-03-28 00:16:45 +01:00
versionCode 4
versionName "1.3"
2021-03-08 16:04:00 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
2023-04-04 18:57:02 +02:00
buildFeatures {
viewBinding true
}
2021-03-08 16:04:00 +01:00
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
2023-04-04 18:57:02 +02:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.0"
implementation 'androidx.core:core-ktx:1.9.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.navigation:navigation-ui-ktx:2.5.3'
2021-03-08 16:04:00 +01:00
2023-04-04 18:57:02 +02:00
implementation 'com.arthenica:ffmpeg-kit-full:5.1'
2021-03-08 16:04:00 +01:00
}