forked from hardcoresushi/DroidFS
Add .opus & Update build config
This commit is contained in:
parent
719faa31ee
commit
5474d6eea5
@ -21,7 +21,7 @@ if (hasProperty("nosplits")) {
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
ndkVersion "25.2.9519653"
|
||||
ndkVersion "26.1.10909125"
|
||||
namespace "sushi.hardcore.droidfs"
|
||||
|
||||
compileOptions {
|
||||
@ -58,6 +58,7 @@ android {
|
||||
splits {
|
||||
abi {
|
||||
enable true
|
||||
reset() // fix unknown bug (https://ru.stackoverflow.com/questions/1557805/abis-armeabi-mips-mips64-riscv64-are-not-supported-for-platform)
|
||||
universalApk true
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ object FileTypes {
|
||||
private val FILE_EXTENSIONS = mapOf(
|
||||
Pair("image", listOf("png", "jpg", "jpeg", "gif", "webp", "bmp", "heic")),
|
||||
Pair("video", listOf("mp4", "webm", "mkv", "mov")),
|
||||
Pair("audio", listOf("mp3", "ogg", "m4a", "wav", "flac")),
|
||||
Pair("audio", listOf("mp3", "ogg", "m4a", "wav", "flac", "opus")),
|
||||
Pair("pdf", listOf("pdf")),
|
||||
Pair("text", listOf(
|
||||
"asc",
|
||||
|
@ -1,11 +1,11 @@
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.9.0'
|
||||
ext.kotlin_version = '1.9.22'
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.1.1'
|
||||
classpath 'com.android.tools.build:gradle:8.2.1'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
@ -15,4 +15,5 @@ android.useAndroidX=true
|
||||
kotlin.code.style=official
|
||||
|
||||
android.native.buildOutput=verbose
|
||||
android.nonTransitiveRClass=false
|
||||
android.nonTransitiveRClass=false
|
||||
org.gradle.configuration-cache=true
|
Loading…
Reference in New Issue
Block a user