summaryrefslogtreecommitdiffstats
path: root/doubletapplayerview/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'doubletapplayerview/build.gradle')
-rw-r--r--doubletapplayerview/build.gradle38
1 files changed, 38 insertions, 0 deletions
diff --git a/doubletapplayerview/build.gradle b/doubletapplayerview/build.gradle
new file mode 100644
index 000000000..4abcd4afb
--- /dev/null
+++ b/doubletapplayerview/build.gradle
@@ -0,0 +1,38 @@
+apply plugin: 'com.android.library'
+android {
+ compileSdk 34
+
+ defaultConfig {
+ minSdk 21
+ targetSdk 34
+
+ vectorDrawables.useSupportLibrary = true
+
+ consumerProguardFiles 'consumer-rules.pro'
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ namespace 'com.github.vkay94.dtpv'
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation "androidx.appcompat:appcompat:1.6.1"
+ implementation "androidx.core:core-ktx:1.12.0"
+
+ implementation "androidx.media3:media3-exoplayer:1.2.1"
+ implementation "androidx.media3:media3-exoplayer-dash:1.2.1"
+ implementation "androidx.media3:media3-ui:1.2.1"
+ implementation "androidx.constraintlayout:constraintlayout:2.1.4"
+}