31 lines
616 B
Kotlin
31 lines
616 B
Kotlin
// FERMAT(HSJ100): LOCAL MODULE
|
|
plugins {
|
|
id("com.android.library")
|
|
id("kotlin-android")
|
|
id("maven-publish")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.alexvas.rtsp"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
minSdk = 29
|
|
targetSdk = 34
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation ("androidx.annotation:annotation:1.8.1")
|
|
implementation ("androidx.media3:media3-exoplayer:1.4.0")
|
|
} |