@revenuecat/purchases-capacitor-ui 11.3.1 → 12.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/Package.swift CHANGED
@@ -3,14 +3,14 @@ import PackageDescription
3
3
 
4
4
  let package = Package(
5
5
  name: "RevenuecatPurchasesCapacitorUi",
6
- platforms: [.iOS(.v14)],
6
+ platforms: [.iOS(.v15)],
7
7
  products: [
8
8
  .library(
9
9
  name: "RevenuecatPurchasesCapacitorUi",
10
10
  targets: ["RevenuecatPurchasesCapacitorUi"])
11
11
  ],
12
12
  dependencies: [
13
- .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
14
14
  .package(url: "https://github.com/RevenueCat/purchases-hybrid-common.git", exact: "17.21.0")
15
15
  ],
16
16
  targets: [
@@ -23,4 +23,4 @@ let package = Package(
23
23
  ],
24
24
  path: "ios/Sources/RevenuecatPurchasesCapacitorUI")
25
25
  ]
26
- )
26
+ )
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
13
13
  s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '15.0'
15
15
  s.dependency 'Capacitor'
16
- s.dependency 'PurchasesHybridCommonUI', '17.24.0'
16
+ s.dependency 'PurchasesHybridCommonUI', '17.25.0'
17
17
  s.swift_version = '5.1'
18
18
  end
@@ -1,5 +1,5 @@
1
1
  ext {
2
- androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.4.2'
2
+ androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1'
3
3
  }
4
4
 
5
5
  buildscript {
@@ -9,7 +9,7 @@ buildscript {
9
9
  }
10
10
  dependencies {
11
11
  classpath 'com.android.tools.build:gradle:8.13.2'
12
- classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
12
+ classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.20'
13
13
  }
14
14
  }
15
15
 
@@ -17,11 +17,11 @@ apply plugin: 'com.android.library'
17
17
  apply plugin: 'org.jetbrains.kotlin.android'
18
18
 
19
19
  android {
20
- namespace "com.revenuecat.purchases.capacitor.ui"
21
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
20
+ namespace = "com.revenuecat.purchases.capacitor.ui"
21
+ compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
22
22
  defaultConfig {
23
23
  minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
24
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
24
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
25
25
  versionCode 1
26
26
  versionName "1.0"
27
27
  }
@@ -32,7 +32,7 @@ android {
32
32
  }
33
33
  }
34
34
  lintOptions {
35
- abortOnError false
35
+ abortOnError = false
36
36
  }
37
37
  compileOptions {
38
38
  sourceCompatibility JavaVersion.VERSION_1_8
@@ -51,6 +51,6 @@ repositories {
51
51
  dependencies {
52
52
  implementation project(':capacitor-android')
53
53
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
54
- implementation 'com.revenuecat.purchases:purchases-hybrid-common-ui:17.24.0'
55
- implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
56
- }
54
+ implementation 'com.revenuecat.purchases:purchases-hybrid-common-ui:17.25.0'
55
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:2.2.20"
56
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revenuecat/purchases-capacitor-ui",
3
- "version": "11.3.1",
3
+ "version": "12.0.0",
4
4
  "description": "UI components for RevenueCat Capacitor SDK",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -61,24 +61,24 @@
61
61
  "prepublishOnly": "npm run build"
62
62
  },
63
63
  "dependencies": {
64
- "@capacitor/core": "^7.0.0",
64
+ "@capacitor/core": "^8.0.0",
65
65
  "@revenuecat/purchases-capacitor": "^10.2.4",
66
- "@revenuecat/purchases-typescript-internal-esm": "17.24.0"
66
+ "@revenuecat/purchases-typescript-internal-esm": "17.25.0"
67
67
  },
68
68
  "peerDependencies": {
69
- "@capacitor/core": "^7.0.0"
69
+ "@capacitor/core": ">=8.0.0"
70
70
  },
71
71
  "devDependencies": {
72
- "@capacitor/cli": "^7.0.0",
73
- "@capacitor/docgen": "^0.3.0",
72
+ "@capacitor/cli": "^8.0.0",
73
+ "@capacitor/docgen": "^0.3.1",
74
74
  "@ionic/eslint-config": "^0.4.0",
75
75
  "@ionic/prettier-config": "^4.0.0",
76
- "@types/node": "^24.0.0",
77
- "eslint": "^8.57.0",
78
- "prettier": "^3.4.2",
79
- "prettier-plugin-java": "^2.6.6",
80
- "rimraf": "^6.0.1",
81
- "rollup": "^4.30.1",
82
- "typescript": "^5.2.2"
76
+ "@types/node": "^24.10.1",
77
+ "eslint": "^8.57.1",
78
+ "prettier": "^3.6.2",
79
+ "prettier-plugin-java": "^2.7.7",
80
+ "rimraf": "^6.1.0",
81
+ "rollup": "^4.53.2",
82
+ "typescript": "^5.9.3"
83
83
  }
84
84
  }