Skip to content

Commit

Permalink
Use package name and version number in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmeek committed Mar 13, 2022
1 parent ed6783b commit b817abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/tomclaw/appsend_rb/util/Files.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import com.tomclaw.appsend_rb.dto.AppEntity
import java.io.File

fun getApkPrefix(item: AppEntity): String {
return escapeFileSymbols(item.label + "-" + item.versionCode)
return escapeFileSymbols(item.packageName + "_" + item.versionName)
}

fun getApkSuffix(): String {
Expand Down

0 comments on commit b817abf

Please sign in to comment.