|
|
|
@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
|
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 29
|
|
|
|
|
compileSdkVersion 30
|
|
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
ndkVersion "21.4.7075529"
|
|
|
|
|
|
|
|
|
@ -14,8 +14,8 @@ android {
|
|
|
|
|
applicationId "sushi.hardcore.droidfs"
|
|
|
|
|
minSdkVersion 21
|
|
|
|
|
targetSdkVersion 29
|
|
|
|
|
versionCode 15
|
|
|
|
|
versionName "1.5.1"
|
|
|
|
|
versionCode 16
|
|
|
|
|
versionName "1.5.2"
|
|
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
|
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
|
|
|
@ -55,7 +55,7 @@ android {
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
|
implementation "androidx.core:core-ktx:1.5.0"
|
|
|
|
|
implementation "androidx.core:core-ktx:1.6.0"
|
|
|
|
|
implementation "androidx.appcompat:appcompat:1.3.0"
|
|
|
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
|
|
|
|
|
|
|
|
|
@ -70,10 +70,10 @@ dependencies {
|
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version"
|
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version"
|
|
|
|
|
|
|
|
|
|
def camerax_v1 = "1.1.0-alpha05"
|
|
|
|
|
def camerax_v1 = "1.1.0-alpha06"
|
|
|
|
|
implementation "androidx.camera:camera-camera2:$camerax_v1"
|
|
|
|
|
implementation "androidx.camera:camera-lifecycle:$camerax_v1"
|
|
|
|
|
def camerax_v2 = "1.0.0-alpha25"
|
|
|
|
|
def camerax_v2 = "1.0.0-alpha26"
|
|
|
|
|
implementation "androidx.camera:camera-view:$camerax_v2"
|
|
|
|
|
implementation "androidx.camera:camera-extensions:$camerax_v2"
|
|
|
|
|
}
|
|
|
|
|