peertube-live-streaming/encoder/build.gradle

26 lines
486 B
Groovy
Raw Normal View History

2021-06-22 16:05:02 +02:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'
2021-06-22 16:05:02 +02:00
android {
compileSdkVersion 32
2021-06-22 16:05:02 +02:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
2021-06-22 16:05:02 +02:00
}
buildTypes {
release {
minifyEnabled false
consumerProguardFiles 'proguard-rules.pro'
}
}
namespace 'com.pedro.encoder'
2021-06-22 16:05:02 +02:00
}
dependencies {
api 'androidx.annotation:annotation:1.3.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2021-06-22 16:05:02 +02:00
}