Update: Use package name in the downloaded apk name

This commit is contained in:
machiav3lli 2022-08-18 23:16:12 +02:00
parent 5ad9c5953d
commit 303c576f8e

View File

@ -72,7 +72,7 @@ data class Release(
} }
val cacheFileName: String val cacheFileName: String
get() = "${hash.replace('/', '-')}.apk" get() = "${packageName}_${hash.replace('/', '-')}.apk"
fun toJSON() = Json.encodeToString(this) fun toJSON() = Json.encodeToString(this)