mirror of
https://github.com/sifacaii/VlcJellyfin
synced 2025-05-26 06:20:20 -04:00
54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
compileSdk 32
|
|
|
|
defaultConfig {
|
|
applicationId "org.sifacai.vlcjellyfin"
|
|
minSdk 17
|
|
targetSdk 32
|
|
versionCode 1
|
|
versionName "1.0.6"
|
|
|
|
multiDexEnabled true
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
splits {
|
|
abi {
|
|
enable true
|
|
include 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation files('libs/libvlc-all-3.5.1-https.aar')
|
|
//implementation 'org.videolan.android:libvlc-all:3.5.1'
|
|
implementation 'androidx.appcompat:appcompat:1.5.0'
|
|
implementation 'com.google.android.material:material:1.6.1'
|
|
implementation 'com.lzy.net:okgo:3.0.4'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
implementation 'com.google.code.gson:gson:2.9.1'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
|
|
implementation 'com.owen:tv-recyclerview:3.0.0'
|
|
implementation 'com.squareup.picasso:picasso:2.8'
|
|
implementation 'com.github.JessYanCoding:AndroidAutoSize:v1.2.1'
|
|
}
|