io.appium.settings 4.1.2 → 4.2.0

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.
Binary file
package/app/build.gradle CHANGED
@@ -6,8 +6,8 @@ android {
6
6
  defaultConfig {
7
7
  minSdkVersion 18
8
8
  targetSdkVersion 30
9
- versionCode 46
10
- versionName "4.1.2"
9
+ versionCode 47
10
+ versionName "4.2.0"
11
11
  applicationId "io.appium.settings"
12
12
  }
13
13
 
package/index.js CHANGED
@@ -1,5 +1,3 @@
1
- "use strict";
2
-
3
1
  const path = require('path');
4
2
 
5
3
  module.exports = {
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "io.appium.settings",
3
- "version": "4.1.2",
3
+ "version": "4.2.0",
4
4
  "description": "App for dealing with Android settings",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "bump-gradle-version": "gulp gradle-version-update --package-version=${npm_package_version} && git add app/build.gradle",
7
+ "bump-gradle-version": "node scripts/gradle-version-update.js --package-version=${npm_package_version} && git add app/build.gradle",
8
8
  "lint": "./gradlew lint",
9
+ "js:lint": "eslint .",
10
+ "js:lint:fix": "npm run lint -- --fix",
9
11
  "move-apks": "rm -rf apks && mkdir -p apks && cp app/build/outputs/apk/debug/settings_apk-debug.apk apks",
10
12
  "build": "./gradlew clean assembleDebug && npm run move-apks",
11
13
  "prepare": "npm run build",
@@ -16,6 +18,10 @@
16
18
  "type": "git",
17
19
  "url": "https://github.com/appium/io.appium.settings.git"
18
20
  },
21
+ "engines": {
22
+ "node": ">=14",
23
+ "npm": ">=8"
24
+ },
19
25
  "keywords": [
20
26
  "appium",
21
27
  "android",
@@ -33,16 +39,18 @@
33
39
  "!.DS_Store",
34
40
  "NOTICE.txt"
35
41
  ],
36
- "author": "https://github.com/appium",
42
+ "author": "Appium Contributors",
37
43
  "license": "Apache-2.0",
38
44
  "bugs": {
39
45
  "url": "https://github.com/appium/io.appium.settings/issues"
40
46
  },
41
47
  "homepage": "https://github.com/appium/io.appium.settings",
42
48
  "devDependencies": {
43
- "@appium/gulp-plugins": "^7.0.0",
49
+ "@appium/eslint-config-appium": "^6.0.0",
50
+ "eslint": "^7.32.0",
51
+ "fancy-log": "^2.0.0",
44
52
  "@semantic-release/git": "^10.0.1",
45
- "gulp": "^4.0.0",
46
- "semantic-release": "^19.0.2"
53
+ "semantic-release": "^19.0.2",
54
+ "semver": "^7.3.7"
47
55
  }
48
56
  }