plugins { id 'com.android.application' } android { compileSdk 32 defaultConfig { applicationId "com.fongmi.bear" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0.0" } buildFeatures { viewBinding true } buildTypes { release { minifyEnabled true zipAlignEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } dependencies { implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'androidx.preference:preference:1.2.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.room:room-runtime:2.4.2' implementation 'com.github.bumptech.glide:glide:4.13.2' implementation 'com.google.android.material:material:1.6.1' implementation 'com.google.android.exoplayer:exoplayer:2.18.0' implementation 'com.google.android.exoplayer:extension-rtmp:2.18.0' implementation 'com.google.code.gson:gson:2.9.0' implementation 'org.jsoup:jsoup:1.14.3' implementation 'com.orhanobut:logger:2.2.0' implementation 'com.squareup.okhttp3:okhttp:4.10.0' annotationProcessor 'androidx.room:room-compiler:2.4.2' annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2' }