2025-11-25 09:08:29 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
apply from: '../libVersions.gradle'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion versions.minSdk
|
|
|
|
|
targetSdkVersion versions.compileSdk
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
|
main.res.srcDirs = [
|
|
|
|
|
'src/main/res',
|
|
|
|
|
'src/main/res-public'
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace 'com.pierfrancescosoffritti.androidyoutubeplayer.core.customui'
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2026-01-14 02:44:13 +00:00
|
|
|
minifyEnabled false
|
2025-11-25 09:08:29 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2026-01-08 08:09:41 +00:00
|
|
|
implementation project(':youtube:core')
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
|
implementation(libs.recyclerview)
|
2025-11-25 09:08:29 +00:00
|
|
|
}
|
|
|
|
|
|