Skip to content

Commit

Permalink
fix: Remove unnecessary prefix handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Ushie committed Jan 20, 2025
1 parent f996c79 commit f226621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
minSdk = 28
targetSdk = 34
versionName = version.toString()
versionCode = versionName!!.removePrefix("v").split("-").first().replace(".", "").toInt()
versionCode = versionName!!.split("-").first().replace(".", "").toInt()


buildConfigField("String", "MOD_NAME", "\"Revenge\"")
Expand Down

0 comments on commit f226621

Please sign in to comment.