Skip to content

Commit 04688f1

Browse files
Merge pull request #703 from KovalevAndrey/1.6.0-alpha-release
Release 1.6.0-alpha01
2 parents 98fc34b + 2e57ffb commit 04688f1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ jobs:
119119
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
120120
disable-animations: true
121121
script: |
122-
adb uninstall "com.bumble.appyx.core.test"
123-
adb uninstall "com.bumble.appyx.interop.ribs.test"
122+
adb shell pm list packages -3 | cut -f 2 -d ":" | while read package; do if [ "$package" = "com.bumble.appyx.sample.navigation.compose.test" ] || [ "$package" = "com.bumble.appyx.core.test" ] || [ "$package" = "com.bumble.appyx.interop.ribs.test" ]; then adb uninstall $package; fi; done
124123
adb logcat > logcat.out &
125124
./gradlew connectedCheck
126125
- name: Upload failed instrumentation artifacts

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22

33
## Pending changes
44

5+
---
6+
7+
## 1.6.0-alpha01
8+
59
- [#701](https://github.com/bumble-tech/appyx/pull/701)**Added**: Shared element transition and movable content support
610

11+
<div style="text-align: center"><small>08 May 2024</small></div>
12+
713
---
814

915
## 1.5.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ org.gradle.caching=true
33
org.gradle.parallel=true
44
android.useAndroidX=true
55
kotlin.code.style=official
6-
library.version=1.5.0
6+
library.version=1.6.0-alpha01
77
android.experimental.lint.version=8.4.0-rc02

0 commit comments

Comments
 (0)