Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build.gradle to Java 19 #588

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = 'CapacitorCommunityBluetoothLe'
s.name = 'MaelpBluetoothLe'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ android {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_19
targetCompatibility JavaVersion.VERSION_19
}
}

Expand Down
8 changes: 4 additions & 4 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Capacitor (5.0.1):
- Capacitor (5.5.1):
- CapacitorCordova
- CapacitorCordova (5.0.1)
- CapacitorCordova (5.5.1)

DEPENDENCIES:
- "Capacitor (from `../node_modules/@capacitor/ios`)"
Expand All @@ -14,8 +14,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/@capacitor/ios"

SPEC CHECKSUMS:
Capacitor: c550a8485d00d5d92b4f91a245f43555a2230eb6
CapacitorCordova: 4f8cf089c691f0e21032d22b1014808308cbc467
Capacitor: 9da0a2415e3b6098511f8b5ffdb578d91ee79f8f
CapacitorCordova: e128cc7688c070ca0bfa439898a5f609da8dbcfe

PODFILE CHECKSUM: 14e8b2400457751b865e1c327e7cfa1c6fa67da6

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capacitor-community/bluetooth-le",
"version": "3.0.2",
"name": "@maelp/bluetooth-le",
"version": "3.0.5",
"description": "Capacitor plugin for Bluetooth Low Energy ",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -68,7 +68,7 @@
"android/build.gradle",
"dist/",
"ios/Plugin/",
"CapacitorCommunityBluetoothLe.podspec"
"MaelpBluetoothLe.podspec"
],
"keywords": [
"capacitor",
Expand All @@ -91,13 +91,14 @@
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/bluetooth-le"
"url": "git+https://github.com/maelp/bluetooth-le.git"
},
"bugs": {
"url": "https://github.com/capacitor-community/bluetooth-le/issues"
"url": "https://github.com/maelp/bluetooth-le/issues"
},
"volta": {
"node": "16.18.0",
"npm": "8.19.2"
}
},
"homepage": "https://github.com/maelp/bluetooth-le#readme"
}
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
{
file: 'dist/plugin.js',
format: 'iife',
name: 'capacitorCommunityBluetoothLe',
name: 'maelpBluetoothLe',
globals: {
'@capacitor/core': 'capacitorExports',
},
Expand Down