Skip to content

Commit

Permalink
chore(deps): bump androidx.test:runner from 1.5.2 to 1.6.1 in /app (#652
Browse files Browse the repository at this point in the history
)

* chore(deps): bump androidx.test:runner from 1.5.2 to 1.6.1 in /app

Bumps androidx.test:runner from 1.5.2 to 1.6.1.

---
updated-dependencies:
- dependency-name: androidx.test:runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: use androidx annotation

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kazuaki Matsuo <fly.49.89.over@gmail.com>
  • Loading branch information
dependabot[bot] and KazuCocoa authored Jun 28, 2024
1 parent c5651b1 commit cfcb2ce
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.test.uiautomator:uiautomator:2.3.0'
implementation 'androidx.test:core:1.6.1'
implementation 'androidx.test:runner:1.5.2'
implementation 'androidx.test:runner:1.6.1'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'io.netty:netty-all:4.0.41.Final'
implementation 'net.gcardone.junidecode:junidecode:0.5.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package io.appium.uiautomator2.model.api;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

public class PackageModel {
private final String packageName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import java.util.Map;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

import io.appium.uiautomator2.model.api.gestures.ClickModel;
import io.appium.uiautomator2.model.api.gestures.DoubleClickModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.util.Objects;
import java.util.Set;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

import io.appium.uiautomator2.common.exceptions.InvalidArgumentException;
import io.appium.uiautomator2.model.api.scheduled.ScheduledActionModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import android.graphics.Point;
import android.graphics.Rect;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

import io.appium.uiautomator2.model.AndroidElement;
import io.appium.uiautomator2.model.AppiumUIA2Driver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import android.graphics.Point;
import android.graphics.Rect;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

import io.appium.uiautomator2.model.AndroidElement;
import io.appium.uiautomator2.model.AppiumUIA2Driver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import android.graphics.Point;
import android.graphics.Rect;

import javax.annotation.Nullable;
import androidx.annotation.Nullable;

import io.appium.uiautomator2.model.AndroidElement;
import io.appium.uiautomator2.model.AppiumUIA2Driver;
Expand Down

0 comments on commit cfcb2ce

Please sign in to comment.