Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6632ba3b6e | ||
|
|
bd582f1d90 | ||
|
|
f5f1e12565 | ||
|
|
207d6f4f8c |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -9,10 +9,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -56,8 +56,14 @@ class PerAppProxyActivity : BaseActivity() {
|
|||||||
appsList.sortedWith { p1, p2 ->
|
appsList.sortedWith { p1, p2 ->
|
||||||
when {
|
when {
|
||||||
p1.isSelected > p2.isSelected -> -1
|
p1.isSelected > p2.isSelected -> -1
|
||||||
p1.isSelected == p2.isSelected -> 0
|
p1.isSelected < p2.isSelected -> 1
|
||||||
else -> 1
|
p1.isSystemApp > p2.isSystemApp -> 1
|
||||||
|
p1.isSystemApp < p2.isSystemApp -> -1
|
||||||
|
p1.appName.lowercase() > p2.appName.lowercase() -> 1
|
||||||
|
p1.appName.lowercase() < p2.appName.lowercase() -> -1
|
||||||
|
p1.packageName > p2.packageName -> 1
|
||||||
|
p1.packageName < p2.packageName -> -1
|
||||||
|
else -> 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
[versions]
|
[versions]
|
||||||
agp = "8.12.0"
|
agp = "8.12.1"
|
||||||
desugarJdkLibs = "2.1.5"
|
desugarJdkLibs = "2.1.5"
|
||||||
gradleLicensePlugin = "0.9.8"
|
gradleLicensePlugin = "0.9.8"
|
||||||
kotlin = "2.2.0"
|
kotlin = "2.2.10"
|
||||||
coreKtx = "1.16.0"
|
coreKtx = "1.16.0"
|
||||||
junit = "4.13.2"
|
junit = "4.13.2"
|
||||||
junitVersion = "1.2.1"
|
junitVersion = "1.3.0"
|
||||||
espressoCore = "3.6.1"
|
espressoCore = "3.7.0"
|
||||||
appcompat = "1.7.1"
|
appcompat = "1.7.1"
|
||||||
material = "1.12.0"
|
material = "1.12.0"
|
||||||
activity = "1.10.1"
|
activity = "1.10.1"
|
||||||
@@ -20,7 +20,7 @@ swiperefreshlayout = "1.1.0"
|
|||||||
toasty = "1.5.2"
|
toasty = "1.5.2"
|
||||||
editorkit = "2.9.0"
|
editorkit = "2.9.0"
|
||||||
core = "3.5.3"
|
core = "3.5.3"
|
||||||
workRuntimeKtx = "2.10.2"
|
workRuntimeKtx = "2.10.3"
|
||||||
lifecycleViewmodelKtx = "2.9.2"
|
lifecycleViewmodelKtx = "2.9.2"
|
||||||
multidex = "2.0.1"
|
multidex = "2.0.1"
|
||||||
mockitoMockitoInline = "5.2.0"
|
mockitoMockitoInline = "5.2.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user