ffmpeg-kit/tools/release/android/build.lts.gradle

46 lines
1.1 KiB
Groovy
Raw Normal View History

2020-08-05 03:53:02 +03:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 30
2021-01-25 23:12:27 +02:00
ndkVersion "22.0.7026061"
2020-08-05 03:53:02 +03:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 30
versionCode 160440
versionName "4.4.LTS"
project.archivesBaseName = "ffmpeg-kit"
consumerProguardFiles 'proguard-rules.pro'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
jniLibs.srcDirs = ["../libs"]
}
}
testOptions {
unitTests.returnDefaultValues = true
}
}
task javadoc(type: Javadoc) {
title = 'FFmpegKit'
destinationDir = file("${projectDir}/../../docs/android/javadoc")
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
source = android.sourceSets.main.java.srcDirs
}
dependencies {
2021-01-11 03:09:39 +02:00
implementation 'com.arthenica:smart-exception-java:0.1.0'
testImplementation "androidx.test.ext:junit:1.1.2"
2020-08-05 03:53:02 +03:00
testImplementation "org.json:json:20190722"
}