appium-android-driver 5.0.3 → 5.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "mobile",
10
10
  "mobile testing"
11
11
  ],
12
- "version": "5.0.3",
12
+ "version": "5.0.4",
13
13
  "author": "appium",
14
14
  "license": "Apache-2.0",
15
15
  "repository": {
@@ -82,6 +82,7 @@
82
82
  "@appium/test-support": "^1.0.0",
83
83
  "@babel/core": "^7.16.0",
84
84
  "@babel/eslint-parser": "^7.16.3",
85
+ "@semantic-release/git": "^10.0.1",
85
86
  "@xmldom/xmldom": "^0.x",
86
87
  "android-apidemos": "^4.0.0",
87
88
  "chai": "^4.1.2",
@@ -90,6 +91,7 @@
90
91
  "mocha": "^9.0.0",
91
92
  "mock-fs": "^5.0.0",
92
93
  "pre-commit": "^1.1.3",
94
+ "semantic-release": "^19.0.2",
93
95
  "sinon": "^13.0.0",
94
96
  "xpath": "^0.x"
95
97
  }
@@ -1,19 +0,0 @@
1
- Bootstrap Android
2
- ===
3
-
4
- To install the Android Maven dependencies in your local environment, run the following:
5
-
6
- * Clone https://github.com/mosabua/maven-android-sdk-deployer into your workstation
7
- * Set the ANDROID_HOME environment to the location of the Android SDK, eg. `export ANDROID_HOME=/Developer/adt-bundle-mac-x86_64-20130219/sdk/`
8
- * Run `mvn install -P 4.4` from the `maven-android-sdk-deployer` directory. The build will fail if API 19 and some extra packages are not installed.
9
- * Please install all sdk and api versions of android for building `maven-android-sdk-deployer`.
10
-
11
- You can then compile the bootstrap project by running
12
-
13
- mvn package -P 4.4
14
-
15
- If mvn package fails, try deleting your ANDROID_HOME folder and downloading everything again. If it still doesn't work try:
16
-
17
- android-sdk/tools/android update sdk --no-ui --obsolete --force
18
-
19
- and then run `mvn clean ; mvn install`