version:1.0.7

bugfixes:
update:修改默认登录方式,增加播放加密视频
This commit is contained in:
2026-02-25 10:39:28 +08:00
parent c5980c419a
commit 85ccdcce72
23 changed files with 1079 additions and 76 deletions

View File

@@ -18,8 +18,8 @@ android {
//There are no CERT files because If the mini sdk version is 23+, the AGP will ignore the V1 scheme signature.
minSdkVersion 23
targetSdkVersion 29
versionCode 7
versionName "1.0.6"
versionCode 8
versionName "1.0.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -30,12 +30,17 @@ android {
/*, "x86_64", "mips", "mips64"*/
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
viewBinding{
viewBinding {
enabled = true
}
@@ -44,9 +49,10 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
externalNativeBuild {
cmake {
path file('CMakeLists.txt')
}
}
//签名
@@ -144,6 +150,11 @@ dependencies {
implementation 'androidx.cardview:cardview:1.0.0'
implementation "androidx.multidex:multidex:2.0.1"
implementation 'com.google.android.exoplayer:exoplayer:2.14.1'
// implementation 'androidx.media3:media3-exoplayer:1.3.1'
// implementation 'androidx.media3:media3-exoplayer-dash:1.3.1'
// implementation 'androidx.media3:media3-ui:1.3.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'