forked from hardcoresushi/DroidFS
DroidFS v2.1.0
This commit is contained in:
parent
217334a959
commit
b20888c591
@ -21,7 +21,7 @@ if (hasProperty("nosplits")) {
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
ndkVersion "25.1.8937393"
|
ndkVersion "25.2.9519653"
|
||||||
namespace "sushi.hardcore.droidfs"
|
namespace "sushi.hardcore.droidfs"
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
@ -37,8 +37,8 @@ android {
|
|||||||
applicationId "sushi.hardcore.droidfs"
|
applicationId "sushi.hardcore.droidfs"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 32
|
targetSdkVersion 32
|
||||||
versionCode 32
|
versionCode 33
|
||||||
versionName "2.0.2"
|
versionName "2.1.0"
|
||||||
|
|
||||||
ndk {
|
ndk {
|
||||||
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
||||||
|
@ -161,7 +161,7 @@ class VolumeDatabase(private val context: Context): SQLiteOpenHelper(context, Co
|
|||||||
put(COLUMN_TYPE, byteArrayOf(volume.type))
|
put(COLUMN_TYPE, byteArrayOf(volume.type))
|
||||||
put(COLUMN_HASH, volume.encryptedHash)
|
put(COLUMN_HASH, volume.encryptedHash)
|
||||||
put(COLUMN_IV, volume.iv)
|
put(COLUMN_IV, volume.iv)
|
||||||
}) == 1.toLong())
|
}) >= 0.toLong())
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 59973a6b42485b0c430123c8be649fb24689b9f3
|
Subproject commit 22965932759f232328810eadf3f02671b5c6ff99
|
Loading…
Reference in New Issue
Block a user