Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ jobs:
example/ios/Pods
~/.cocoapods
~/Library/Caches/CocoaPods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile', 'packages/purchasely/react-native-purchasely.podspec') }}
restore-keys: |
${{ runner.os }}-cocoapods-

- name: Cache Xcode DerivedData
uses: actions/cache@v4
with:
path: example/ios/DerivedData
key: ${{ runner.os }}-derived-data-${{ hashFiles('example/ios/Podfile.lock', 'example/ios/*.xcodeproj/project.pbxproj') }}
key: ${{ runner.os }}-derived-data-${{ hashFiles('example/ios/Podfile', 'packages/purchasely/react-native-purchasely.podspec', 'example/ios/*.xcodeproj/project.pbxproj') }}
restore-keys: |
${{ runner.os }}-derived-data-

Expand Down
14 changes: 7 additions & 7 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

| Property | Value |
|----------|-------|
| Current Version | 5.6.2 |
| Current Version | 5.7.0 |
| React Native | 0.79.2 |
| TypeScript | 5.2.2 (strict mode) |
| Node.js | v20 (see `.nvmrc`) |
| Package Manager | Yarn 3.6.1 (workspaces) |
| Native iOS SDK | 5.6.4 |
| Native Android SDK | 5.6.0 |
| Native iOS SDK | 5.7.0 |
| Native Android SDK | 5.7.0 |

### Supported App Stores
- Apple App Store (iOS)
Expand Down Expand Up @@ -388,11 +388,11 @@ Build orchestration with caching:
### Native Dependencies

**iOS (CocoaPods):**
- Purchasely SDK v5.6.2
- Purchasely SDK v5.7.0
- Deployment target: iOS 13.4

**Android (Gradle):**
- io.purchasely:core:5.6.0
- io.purchasely:core:5.7.0
- Min SDK: 21
- Kotlin: 1.9+
- Java: 11
Expand Down Expand Up @@ -616,8 +616,8 @@ See `VERSIONS.md` for native SDK version mapping:

| React Native SDK | iOS SDK | Android SDK |
|------------------|---------|-------------|
| 5.6.1 | 5.6.2 | 5.6.0 |
| 5.6.0 | 5.6.0 | 5.6.0 |
| 5.7.0 | 5.7.0 | 5.7.0 |
| 5.6.2 | 5.6.4 | 5.6.0 |
| ... | ... | ... |

---
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,4 @@ This file provides the underlying native SDK versions that the React Native SDK
| 5.6.0 | 5.6.0 | 5.6.0 |
| 5.6.1 | 5.6.2 | 5.6.0 |
| 5.6.2 | 5.6.4 | 5.6.0 |
| 5.7.0 | 5.7.0 | 5.7.0 |
5 changes: 5 additions & 0 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ android {
keyPassword 'android'
}
}
packagingOptions {
resources {
excludes += ['META-INF/versions/9/OSGI-INF/MANIFEST.MF']
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
Expand Down
4 changes: 2 additions & 2 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
compileSdkVersion = 35
targetSdkVersion = 35
ndkVersion = "27.1.12297006"
kotlinVersion = "2.0.21"
kotlinVersion = "2.1.21"
}
repositories {
google()
Expand All @@ -15,7 +15,7 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
}
}

Expand Down
Loading
Loading