|
|
|
|
@ -13,8 +13,8 @@ android { |
|
|
|
|
minSdk 21 |
|
|
|
|
//noinspection ExpiredTargetSdkVersion |
|
|
|
|
targetSdk 28 |
|
|
|
|
versionCode 313 |
|
|
|
|
versionName "3.1.3" |
|
|
|
|
versionCode 314 |
|
|
|
|
versionName "3.1.4" |
|
|
|
|
javaCompileOptions { |
|
|
|
|
annotationProcessorOptions { |
|
|
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString(), "eventBusIndex": "com.fongmi.android.tv.event.EventIndex"] |
|
|
|
|
@ -62,6 +62,12 @@ android { |
|
|
|
|
resources { |
|
|
|
|
excludes += ['META-INF/beans.xml'] |
|
|
|
|
} |
|
|
|
|
pickFirsts.addAll([ |
|
|
|
|
"lib/x86/libc++_shared.so", |
|
|
|
|
"lib/x86_64/libc++_shared.so", |
|
|
|
|
"lib/arm64-v8a/libc++_shared.so", |
|
|
|
|
"lib/armeabi-v7a/libc++_shared.so" |
|
|
|
|
]) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
android.applicationVariants.configureEach { variant -> |
|
|
|
|
@ -108,6 +114,9 @@ dependencies { |
|
|
|
|
implementation 'com.guolindev.permissionx:permissionx:1.8.0' |
|
|
|
|
implementation 'com.hierynomus:smbj:0.14.0' |
|
|
|
|
implementation 'io.antmedia:rtmp-client:3.2.0' |
|
|
|
|
implementation 'io.github.peerless2012:ass:0.1.0' |
|
|
|
|
implementation 'io.github.peerless2012:ass-kt:0.1.0' |
|
|
|
|
implementation('io.github.peerless2012:ass-media:0.1.0') { exclude group: 'androidx.media3' } |
|
|
|
|
implementation 'javax.servlet:javax.servlet-api:3.1.0' |
|
|
|
|
implementation 'org.eclipse.jetty:jetty-client:8.1.21.v20160908' |
|
|
|
|
implementation('org.eclipse.jetty:jetty-server:8.1.21.v20160908') { exclude group: 'org.eclipse.jetty.orbit', module: 'javax.servlet' } |
|
|
|
|
|