plugins { alias(libs.plugins.android.application) alias(libs.plugins.compose.compiler) } 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 } buildFeatures { compose true buildConfig true } } dependencies { implementation libs.androidx.core.ktx implementation libs.androidx.lifecycle.runtime.ktx implementation libs.androidx.activity.compose implementation platform(libs.androidx.compose.bom) implementation libs.androidx.compose.ui implementation libs.androidx.compose.ui.graphics implementation libs.androidx.compose.ui.tooling.preview implementation libs.androidx.compose.material3 implementation libs.appcompat implementation libs.material testImplementation libs.junit androidTestImplementation libs.espresso.core androidTestImplementation libs.ext.junit implementation libs.timber implementation "io.getstream:stream-webrtc-android:1.3.10" implementation "com.squareup.okhttp3:okhttp:4.12.0" }