Skip to content

Commit

Permalink
Build 1.4.5: bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
legendsayantan committed Oct 13, 2024
1 parent 2bfcf6a commit c8a8c3c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdk 27
targetSdk 34
versionCode 1
versionName "1.4.4"
versionName "1.4.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.4.4",
"versionName": "1.4.5",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@ class AppSelectionDialog(context: Context, val onSelection: (String) -> Unit) :
.show()
}
val reloadApps: (String) -> Unit = { filter ->
val adapter = SimpleAdapter(
packageList.map { Utils.getAppNameFromPackage(context, it) }
.filter { filter.isBlank() || it.contains(filter, true) }
) {
val filtered = packageList.map { Utils.getAppNameFromPackage(context, it) }
.filter { filter.isBlank() || it.contains(filter, true) }
val adapter = SimpleAdapter(filtered) {
dismiss()
onSelection(packageList[it])
onSelection(filtered[it])
}
Handler(context.mainLooper).post {
list.adapter = adapter
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Oct 17 17:27:01 IST 2023
#Sun Oct 13 13:52:15 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c8a8c3c

Please sign in to comment.