moved the refresh button to the navbar

This commit is contained in:
Odweta
2024-12-01 15:17:55 +01:00
parent 75a766ca7d
commit 5d9b70f3a1
7 changed files with 73 additions and 48 deletions
+3 -3
View File
@@ -12,8 +12,8 @@ android {
applicationId = "com.odweta.solon"
minSdk = 28
targetSdk = 34
versionCode = 204
versionName = "2.1"
versionCode = 205
versionName = "2.1.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -22,7 +22,7 @@ android {
this.outputs
.map { it as com.android.build.gradle.internal.api.ApkVariantOutputImpl }
.forEach { output ->
var apkName = "com.odweta.solon_" + this.versionName + ".apk"
val apkName = "com.odweta.solon_" + this.versionName + ".apk"
output.outputFileName = apkName
}
}