capacitor-plugin-silent-notifications 7.0.1 → 8.0.1

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.
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
11
11
  s.author = package['author']
12
12
  s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
13
  s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14
- s.ios.deployment_target = '13.0'
14
+ s.ios.deployment_target = '26.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.swift_version = '5.1'
17
17
  end
@@ -18,10 +18,11 @@ buildscript {
18
18
  apply plugin: 'com.android.library'
19
19
 
20
20
  android {
21
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30
21
+ namespace 'com.bubblelabs.silentnotifications'
22
+ compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30
22
23
  defaultConfig {
23
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
24
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
24
+ minSdk project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
25
+ targetSdk project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
25
26
  versionCode 1
26
27
  versionName "1.0"
27
28
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -32,8 +33,8 @@ android {
32
33
  proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
33
34
  }
34
35
  }
35
- lintOptions {
36
- abortOnError false
36
+ lint {
37
+ abortOnError = false
37
38
  }
38
39
  compileOptions {
39
40
  sourceCompatibility JavaVersion.VERSION_1_8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-plugin-silent-notifications",
3
- "version": "7.0.1",
3
+ "version": "8.0.1",
4
4
  "description": "Allows an a Capacitor application to handle iOS remote/silent push notifications",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -44,23 +44,23 @@
44
44
  "prepublishOnly": "npm run build"
45
45
  },
46
46
  "devDependencies": {
47
- "@capacitor/android": "^7.0.0",
48
- "@capacitor/core": "^7.0.0",
47
+ "@capacitor/android": "^8.0.0",
48
+ "@capacitor/core": "^8.0.0",
49
49
  "@capacitor/docgen": "^0.3.0",
50
- "@capacitor/ios": "^7.0.0",
50
+ "@capacitor/ios": "^8.0.0",
51
51
  "@ionic/eslint-config": "^0.3.0",
52
52
  "@ionic/prettier-config": "^1.0.1",
53
53
  "@ionic/swiftlint-config": "^1.1.2",
54
54
  "eslint": "^7.11.0",
55
55
  "prettier": "~2.2.0",
56
- "prettier-plugin-java": "~1.0.0",
56
+ "prettier-plugin-java": "^0.3.2",
57
57
  "rimraf": "^3.0.2",
58
58
  "rollup": "^2.32.0",
59
59
  "swiftlint": "^1.0.1",
60
60
  "typescript": "~4.0.3"
61
61
  },
62
62
  "peerDependencies": {
63
- "@capacitor/core": "^7.0.0"
63
+ "@capacitor/core": "^8.0.0"
64
64
  },
65
65
  "prettier": "@ionic/prettier-config",
66
66
  "swiftlint": "@ionic/swiftlint-config",