@ua/capacitor-airship 3.0.0 → 3.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.
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
13
13
  s.ios.deployment_target = '14.0'
14
14
  s.dependency 'Capacitor'
15
15
  s.swift_version = '5.1'
16
- s.dependency "AirshipFrameworkProxy", "11.0.1"
16
+ s.dependency "AirshipFrameworkProxy", "11.0.6"
17
17
  s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
18
18
  end
@@ -1,5 +1,5 @@
1
1
  ext {
2
- airshipProxyVersion = project.hasProperty('airshipProxyVersion') ? rootProject.ext.airshipProxyVersion : '11.0.1'
2
+ airshipProxyVersion = project.hasProperty('airshipProxyVersion') ? rootProject.ext.airshipProxyVersion : '11.0.6'
3
3
  }
4
4
 
5
5
 
@@ -25,10 +25,10 @@ apply plugin: 'kotlin-android'
25
25
 
26
26
  android {
27
27
  namespace "com.airship.capacitor"
28
- compileSdk 34
28
+ compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
29
29
  defaultConfig {
30
- minSdkVersion 22
31
- targetSdkVersion 34
30
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
31
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
32
32
  versionCode 1
33
33
  versionName "1.0"
34
34
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -3,5 +3,5 @@
3
3
  package com.airship.capacitor
4
4
 
5
5
  object AirshipCapacitorVersion {
6
- var version = "3.0.0"
6
+ var version = "3.0.1"
7
7
  }
@@ -3,5 +3,5 @@
3
3
  import Foundation
4
4
 
5
5
  class AirshipCapacitorVersion {
6
- static let version = "3.0.0"
6
+ static let version = "3.0.1"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ua/capacitor-airship",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Airship capacitor plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",