Skip to content

Commit

Permalink
Merge pull request #528 from qonversion/release/5.11.1
Browse files Browse the repository at this point in the history
Release 5.11.1
  • Loading branch information
suriksarkisyan authored Jul 15, 2024
2 parents d092fd1 + 7c1a3e9 commit cb4201f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.11.0</string>
<string>5.11.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Qonversion.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
idfa_exclude_files = ['Sources/Qonversion/IDFA']
s.name = 'Qonversion'
s.swift_version = '5.5'
s.version = '5.11.0'
s.version = '5.11.1'
s.summary = 'qonversion.io'
s.description = <<-DESC
Deep Analytics for iOS Subscriptions
Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Public/QONConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "QONConfiguration.h"
#import "QNAPIConstants.h"

static NSString *const kSDKVersion = @"5.11.0";
static NSString *const kSDKVersion = @"5.11.1";

@interface QONConfiguration ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,20 @@ - (QONFallbackObject * _Nullable)obtainFallbackData {
NSData *fileData = [NSData dataWithContentsOfFile:pathToFile];

if (!fileData) {
return nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = paths.firstObject;

if (documentsPath) {
NSString *filePath = [documentsPath stringByAppendingPathComponent:kFallbacksFileName];

if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
fileData = [NSData dataWithContentsOfFile:filePath];
} else {
return nil;
}
} else {
return nil;
}
}

NSDictionary *resultMap = [NSJSONSerialization JSONObjectWithData:fileData options:kNilOptions error:nil];
Expand Down
4 changes: 2 additions & 2 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@



<testcase classname="fastlane.lanes" name="0: update_plist" time="0.009442">
<testcase classname="fastlane.lanes" name="0: update_plist" time="0.007855">

</testcase>


<testcase classname="fastlane.lanes" name="1: version_bump_podspec" time="0.000722">
<testcase classname="fastlane.lanes" name="1: version_bump_podspec" time="0.000666">

</testcase>

Expand Down

0 comments on commit cb4201f

Please sign in to comment.