peertube-live-streaming/rtmp/build.gradle

30 lines
626 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 {
2024-05-16 23:43:27 +02:00
compileSdkVersion 34
2021-06-22 16:05:02 +02:00
defaultConfig {
minSdkVersion 16
2024-05-16 23:43:27 +02:00
targetSdkVersion 34
2021-06-22 16:05:02 +02:00
}
buildTypes {
release {
minifyEnabled false
}
}
namespace 'com.pedro.rtmp'
2024-05-16 23:43:27 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
2021-06-22 16:05:02 +02:00
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
2021-06-22 16:05:02 +02:00
}