File tree Expand file tree Collapse file tree
application_id/android/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,10 +85,13 @@ run_with_retries() {
8585 echo " ::warning::Patrol attempt $(( attempt - 1 )) failed; retrying ($attempt /$MAX_RETRIES )..."
8686 recover_between_retries
8787 fi
88- set +e
89- run_patrol " ${patrol_args[@]} "
90- status=$?
91- set -e
88+ # `|| status=$?` keeps errexit from killing the script when run_patrol
89+ # returns non-zero. `set +e` alone is unsafe here: run_patrol toggles
90+ # errexit internally and leaves it ON before `return 77`, so by the time
91+ # control returns to this line errexit is back on and bash exits before
92+ # `status=$?` runs — masking flakes as fatal failures and skipping retries.
93+ status=0
94+ run_patrol " ${patrol_args[@]} " || status=$?
9295 if [[ " $status " -eq 0 ]]; then
9396 return 0
9497 fi
Original file line number Diff line number Diff line change 1+ ## v1.0.46
2+ Bump frontegg-android-kotlin version to 1.3.28.
3+ - Trust server tenant on fresh login instead of stale cache.
4+ - Gate ` AndroidDebugConfigurationChecker ` on host app debuggable flag.
5+
16## v1.0.45
27Bump frontegg-android-kotlin sdk to 1.3.27.
38
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ dependencies {
6666 testImplementation ' org.jetbrains.kotlin:kotlin-test'
6767 testImplementation ' org.mockito:mockito-core:5.0.0'
6868
69- implementation ' com.frontegg.sdk:android:1.3.27 '
69+ implementation ' com.frontegg.sdk:android:1.3.28 '
7070 implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
7171
7272 implementation ' androidx.core:core-ktx:1.10.0'
Original file line number Diff line number Diff line change @@ -128,5 +128,5 @@ flutter {
128128
129129dependencies {
130130 androidTestUtil " androidx.test:orchestrator:1.5.1"
131- implementation ' com.frontegg.sdk:android:1.3.27 '
131+ implementation ' com.frontegg.sdk:android:1.3.28 '
132132}
Original file line number Diff line number Diff line change @@ -128,5 +128,5 @@ flutter {
128128
129129dependencies {
130130 androidTestUtil " androidx.test:orchestrator:1.5.1"
131- implementation ' com.frontegg.sdk:android:1.3.27 '
131+ implementation ' com.frontegg.sdk:android:1.3.28 '
132132}
Original file line number Diff line number Diff line change @@ -124,5 +124,5 @@ flutter {
124124
125125dependencies {
126126 androidTestUtil " androidx.test:orchestrator:1.5.1"
127- implementation ' com.frontegg.sdk:android:1.3.27 '
127+ implementation ' com.frontegg.sdk:android:1.3.28 '
128128}
Original file line number Diff line number Diff line change 11name : frontegg_flutter
22description : Flutter package for Frontegg services
3- version : 1.0.45
3+ version : 1.0.46
44homepage : https://github.com/frontegg/frontegg-flutter
55# publish_to: "https://pub.dartlang.org"
66
You can’t perform that action at this time.
0 commit comments