group 'video.api.flutter.livestream' version '1.0-SNAPSHOT' buildscript { ext { kotlin_version = '1.9.22' streamPackVersion = '2.6.0' } repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:8.2.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } rootProject.allprojects { repositories { google() mavenCentral() } } apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { compileSdk 34 sourceSets { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { minSdkVersion 21 } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } namespace "video.api.flutter.livestream" } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' implementation 'androidx.appcompat:appcompat:1.6.1' implementation "io.github.thibaultbee:streampack:$streamPackVersion" implementation "io.github.thibaultbee:streampack-extension-rtmp:$streamPackVersion" }