plugins { alias(libs.plugins.android.application) } android { namespace 'com.hmwl.example' compileSdk 36 defaultConfig { applicationId "com.hmwl.f20251110" minSdk 30 targetSdk 36 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_17 targetCompatibility JavaVersion.VERSION_17 } } dependencies { implementation libs.appcompat implementation libs.material implementation libs.games.activity testImplementation libs.junit androidTestImplementation libs.ext.junit androidTestImplementation libs.espresso.core implementation project(':app') def camerax_version = '1.4.2' implementation "androidx.camera:camera-core:$camerax_version" implementation "androidx.camera:camera-camera2:$camerax_version" implementation "androidx.camera:camera-lifecycle:$camerax_version" implementation "androidx.camera:camera-view:$camerax_version" implementation 'com.google.protobuf:protobuf-javalite:3.21.12' implementation 'com.google.android.datatransport:transport-runtime:3.1.9' implementation 'com.google.android.datatransport:transport-backend-cct:3.1.9' implementation 'com.google.flogger:flogger:0.7.4' implementation 'com.google.flogger:flogger-system-backend:0.7.4' implementation 'com.google.guava:guava:31.1-android' }