plugins { id "com.android.application" id "kotlin-android" } android { defaultConfig { applicationId "org.libre.agosto.p2play" compileSdk 34 minSdkVersion 26 targetSdkVersion 32 versionCode 10 versionName "0.7.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } buildFeatures { viewBinding = true } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } namespace 'org.libre.agosto.p2play' lint { abortOnError false checkReleaseBuilds false } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation 'com.squareup.picasso:picasso:2.71828' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.activity:activity:1.8.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.5.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' implementation 'androidx.media3:media3-exoplayer:1.3.1' implementation 'androidx.media3:media3-exoplayer-dash:1.3.1' implementation 'androidx.media3:media3-ui:1.3.1' implementation 'androidx.media3:media3-exoplayer-hls:1.3.1' implementation "androidx.media3:media3-session:1.3.1" implementation 'com.google.code.gson:gson:2.8.8' }