43 lines
1.3 KiB
Groovy
43 lines
1.3 KiB
Groovy
|
apply plugin: 'com.android.application'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "io.lowrespalmtree.harvestdawn"
|
||
|
minSdkVersion 24
|
||
|
targetSdkVersion 29
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
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'
|
||
|
}
|
||
|
buildToolsVersion '29.0.2'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
implementation 'androidx.core:core-ktx:1.3.2'
|
||
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||
|
implementation 'com.google.android.material:material:1.3.0'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.3'
|
||
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.3'
|
||
|
|
||
|
implementation 'com.arthenica:mobile-ffmpeg-min-gpl:4.3.2'
|
||
|
}
|