plugins { alias(libs.plugins.android.application) } android { namespace 'com.kimgo.posefit' compileSdk 34 defaultConfig { applicationId "com.kimgo.posefit" minSdk 29 targetSdk 34 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } dependencies { implementation libs.appcompat implementation libs.material testImplementation libs.junit androidTestImplementation libs.espresso.core androidTestImplementation libs.ext.junit implementation "io.getstream:stream-webrtc-android:1.3.10" implementation "com.squareup.okhttp3:okhttp:4.12.0" }