plugins { id 'com.android.application' } android { namespace "com.secure.demo" compileSdkVersion 36 defaultConfig { applicationId "com.secure.demo" minSdkVersion 26 targetSdkVersion 36 versionCode 1 versionName "1.0" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } buildFeatures { buildConfig true dataBinding true } } dependencies { implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.11.0' // 网络层(技术栈对齐 WebRTCController:Retrofit + OkHttp + Gson + RxJava3) implementation 'com.squareup.retrofit2:retrofit:3.0.0' implementation 'com.squareup.retrofit2:converter-gson:3.0.0' implementation 'com.squareup.retrofit2:adapter-rxjava3:3.0.0' implementation 'com.squareup.okhttp3:okhttp:5.3.2' implementation 'com.squareup.okhttp3:logging-interceptor:5.3.2' implementation 'io.reactivex.rxjava3:rxjava:3.1.12' implementation 'io.reactivex.rxjava3:rxandroid:3.0.2' implementation 'com.google.code.gson:gson:2.14.0' }