@capacitor-community/bluetooth-le 3.0.0-1 → 3.0.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.
package/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
  <a href="https://www.npmjs.com/package/@capacitor-community/bluetooth-le"><img src="https://img.shields.io/npm/dw/@capacitor-community/bluetooth-le?style=flat-square" /></a>
14
14
  <a href="https://www.npmjs.com/package/@capacitor-community/bluetooth-le"><img src="https://img.shields.io/npm/v/@capacitor-community/bluetooth-le?style=flat-square" /></a>
15
15
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
16
- <a href="#contributors-"><img src="https://img.shields.io/badge/all%20contributors-9-orange?style=flat-square" /></a>
16
+ <a href="#contributors-"><img src="https://img.shields.io/badge/all%20contributors-10-orange?style=flat-square" /></a>
17
17
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
18
18
  </p>
19
19
 
@@ -1063,6 +1063,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
1063
1063
  <tr>
1064
1064
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jrobeson"><img src="https://avatars.githubusercontent.com/u/56908?v=4?s=100" width="100px;" alt="Johnny Robeson"/><br /><sub><b>Johnny Robeson</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=jrobeson" title="Code">💻</a></td>
1065
1065
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/aadito123"><img src="https://avatars.githubusercontent.com/u/63646058?v=4?s=100" width="100px;" alt="Aadit Olkar"/><br /><sub><b>Aadit Olkar</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=aadito123" title="Code">💻</a></td>
1066
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/y3nd"><img src="https://avatars.githubusercontent.com/u/18102153?v=4?s=100" width="100px;" alt="Yoann N."/><br /><sub><b>Yoann N.</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=y3nd" title="Code">💻</a></td>
1066
1067
  </tr>
1067
1068
  </tbody>
1068
1069
  </table>
@@ -14,7 +14,7 @@ buildscript {
14
14
  mavenCentral()
15
15
  }
16
16
  dependencies {
17
- classpath 'com.android.tools.build:gradle:7.4.1'
17
+ classpath 'com.android.tools.build:gradle:8.0.0'
18
18
  classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
19
19
  }
20
20
  }
@@ -42,8 +42,8 @@ android {
42
42
  abortOnError false
43
43
  }
44
44
  compileOptions {
45
- sourceCompatibility JavaVersion.VERSION_11
46
- targetCompatibility JavaVersion.VERSION_11
45
+ sourceCompatibility JavaVersion.VERSION_17
46
+ targetCompatibility JavaVersion.VERSION_17
47
47
  }
48
48
  }
49
49
 
@@ -61,5 +61,5 @@ dependencies {
61
61
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
62
62
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
63
63
  implementation "androidx.core:core-ktx:$coreKtx"
64
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
64
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor-community/bluetooth-le",
3
- "version": "3.0.0-1",
3
+ "version": "3.0.0",
4
4
  "description": "Capacitor plugin for Bluetooth Low Energy ",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -8,7 +8,7 @@
8
8
  "unpkg": "dist/plugin.js",
9
9
  "scripts": {
10
10
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
11
- "verify:ios": "set -o pipefail && cd ios && pod install && xcodebuild clean build test -workspace Plugin.xcworkspace -scheme Plugin -destination \"platform=iOS Simulator,name=iPhone 12\" | xcpretty && cd ..",
11
+ "verify:ios": "set -o pipefail && cd ios && pod install && xcodebuild clean build test -workspace Plugin.xcworkspace -scheme Plugin -destination \"platform=iOS Simulator,name=iPhone 14\" | xcpretty && cd ..",
12
12
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
13
13
  "verify:web": "npm run test:coverage && npm run build",
14
14
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint ios",
@@ -36,11 +36,11 @@
36
36
  "@types/web-bluetooth": "^0.0.16"
37
37
  },
38
38
  "devDependencies": {
39
- "@capacitor/android": "^5.0.0-beta.2",
40
- "@capacitor/cli": "^5.0.0-beta.2",
41
- "@capacitor/core": "^5.0.0-beta.2",
39
+ "@capacitor/android": "^5.0.0",
40
+ "@capacitor/cli": "^5.0.0",
41
+ "@capacitor/core": "^5.0.0",
42
42
  "@capacitor/docgen": "0.2.0",
43
- "@capacitor/ios": "^5.0.0-beta.2",
43
+ "@capacitor/ios": "^5.0.0",
44
44
  "@ionic/eslint-config": "^0.3.0",
45
45
  "@ionic/prettier-config": "^2.0.0",
46
46
  "@ionic/swiftlint-config": "^1.1.2",
@@ -59,7 +59,7 @@
59
59
  "typescript": "~4.9.4"
60
60
  },
61
61
  "peerDependencies": {
62
- "@capacitor/core": "^5.0.0-beta.0"
62
+ "@capacitor/core": "^5.0.0"
63
63
  },
64
64
  "files": [
65
65
  "android/src/main/",