first commit

This commit is contained in:
2026-06-01 18:03:26 +08:00
commit 291d557000
39 changed files with 1158 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
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"
}