App: add versionCode to magisk_patched.img filenames
This commit is contained in:
parent
7b9a71c9af
commit
4dd3f55407
@ -255,7 +255,7 @@ abstract class MagiskInstallImpl protected constructor(
|
|||||||
val alpha = "abcdefghijklmnopqrstuvwxyz"
|
val alpha = "abcdefghijklmnopqrstuvwxyz"
|
||||||
val alphaNum = "$alpha${alpha.toUpperCase(Locale.ROOT)}0123456789"
|
val alphaNum = "$alpha${alpha.toUpperCase(Locale.ROOT)}0123456789"
|
||||||
val random = SecureRandom()
|
val random = SecureRandom()
|
||||||
val filename = StringBuilder("magisk_patched_").run {
|
val filename = StringBuilder("magisk_patched-${BuildConfig.VERSION_CODE}_").run {
|
||||||
for (i in 1..5) {
|
for (i in 1..5) {
|
||||||
append(alphaNum[random.nextInt(alphaNum.length)])
|
append(alphaNum[random.nextInt(alphaNum.length)])
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user