Skip to content

Commit b450597

Browse files
authored
Merge pull request #1678 from keymapperorg/feature/257-interact-with-screen-element
Feature/257 interact with screen element
2 parents 03b43b6 + 38b3f09 commit b450597

54 files changed

Lines changed: 3570 additions & 249 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
## Added
66

77
- #699 Time constraints ⏰
8+
- #257 Action to interact with user interface elements inside other apps.
9+
10+
## Changed
11+
12+
- Rename tap screen actions inside key maps.
813

914
## Changed
1015

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ dependencies {
165165

166166
compileOnly project(":systemstubs")
167167

168-
def room_version = "2.6.1"
168+
def room_version = "2.7.1"
169169
def coroutinesVersion = "1.9.0"
170170
def nav_version = '2.8.9'
171171
def epoxy_version = "4.6.2"
@@ -179,7 +179,7 @@ dependencies {
179179
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0"
180180

181181
// random stuff
182-
implementation "com.google.android.material:material:1.13.0-alpha12"
182+
implementation "com.google.android.material:material:1.13.0-alpha13"
183183
implementation "com.github.salomonbrys.kotson:kotson:2.5.0"
184184
implementation "com.airbnb.android:epoxy:$epoxy_version"
185185
implementation "com.airbnb.android:epoxy-databinding:$epoxy_version"
@@ -192,7 +192,7 @@ dependencies {
192192
implementation "dev.rikka.shizuku:api:$shizuku_version"
193193
implementation "dev.rikka.shizuku:provider:$shizuku_version"
194194
implementation "org.lsposed.hiddenapibypass:hiddenapibypass:4.3"
195-
proImplementation 'com.revenuecat.purchases:purchases:8.15.0'
195+
proImplementation 'com.revenuecat.purchases:purchases:8.17.0'
196196
proImplementation "com.airbnb.android:lottie-compose:6.6.3"
197197
implementation("com.squareup.okhttp3:okhttp:4.12.0")
198198
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
@@ -207,7 +207,7 @@ dependencies {
207207

208208
// androidx
209209
implementation "androidx.legacy:legacy-support-core-ui:1.0.0"
210-
implementation "androidx.core:core-ktx:1.15.0"
210+
implementation "androidx.core:core-ktx:1.16.0"
211211

212212
implementation "androidx.activity:activity-ktx:1.10.1"
213213
implementation "androidx.fragment:fragment-ktx:1.8.6"
@@ -233,7 +233,7 @@ dependencies {
233233
ksp "androidx.room:room-compiler:$room_version"
234234

235235
// Compose
236-
Dependency composeBom = platform('androidx.compose:compose-bom-beta:2025.03.01')
236+
Dependency composeBom = platform('androidx.compose:compose-bom-beta:2025.04.01')
237237
implementation composeBom
238238
implementation 'androidx.compose.foundation:foundation'
239239
implementation "androidx.compose.ui:ui-android"

0 commit comments

Comments
 (0)