plugins { | |
id 'com.android.library' | |
id 'org.jetbrains.kotlin.android' | |
} | |
android { | |
namespace 'template.test.in.shared' | |
compileSdk 35 | |
defaultConfig { | |
minSdk 23 | |
targetSdk 35 | |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_11 | |
targetCompatibility JavaVersion.VERSION_11 | |
} | |
} | |
dependencies { | |
implementation libs.androidx.media | |
} |