mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-08-22 15:22:50 +00:00
53 lines
1.5 KiB
Text
53 lines
1.5 KiB
Text
![]() |
plugins {
|
||
|
alias(libs.plugins.android.application)
|
||
|
alias(libs.plugins.kotlin.android)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "org.fcast.sdk.example.views"
|
||
|
compileSdk = 35
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId = "org.fcast.sdk.example.views"
|
||
|
minSdk = 26
|
||
|
targetSdk = 35
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
|
||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = false
|
||
|
proguardFiles(
|
||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
"proguard-rules.pro"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
targetCompatibility = JavaVersion.VERSION_11
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "11"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(libs.androidx.core.ktx)
|
||
|
implementation(libs.androidx.appcompat)
|
||
|
implementation(libs.material)
|
||
|
implementation(libs.androidx.activity)
|
||
|
implementation(libs.androidx.constraintlayout)
|
||
|
testImplementation(libs.junit)
|
||
|
androidTestImplementation(libs.androidx.junit)
|
||
|
androidTestImplementation(libs.androidx.espresso.core)
|
||
|
implementation("com.journeyapps:zxing-android-embedded:4.3.0")
|
||
|
implementation("org.futo.gitlab.videostreaming.fcast-sdk-jitpack:sender-sdk-full:0.2.1") {
|
||
|
exclude(group = "net.java.dev.jna")
|
||
|
}
|
||
|
implementation("net.java.dev.jna:jna:5.13.0@aar")
|
||
|
}
|