Skip to content

Commit

Permalink
Merge pull request #145 from AppsFlyerSDK/releases/6.x.x/6.15.x/6.15.…
Browse files Browse the repository at this point in the history
…1-rc2

Releases/6.x.x/6.15.x/6.15.1 rc2
  • Loading branch information
morisgateno-appsflyer committed Aug 20, 2024
2 parents 2f3a28c + d2c2047 commit 9b031ed
Show file tree
Hide file tree
Showing 24 changed files with 271 additions and 148 deletions.
8 changes: 6 additions & 2 deletions .github/bash_scripts/pre_release.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
#!/bin/bash

appsflyerLibVersion=$1
rcVersion=$2

sed -i '' "s/version_appsflyerLib = \'.*\'/version_appsflyerLib = \'$appsflyerLibVersion\'/g" segment-appsflyer-ios.podspec
sed -i '' "s/version_plugin = \'.*\'/version_plugin = \'$rcVersion\'/g" segment-appsflyer-ios.podspec
sed -i '' "s/s.name = \"segment-appsflyer-ios\"/s.name = \"segment-appsflyer-ios-qa\"/g" segment-appsflyer-ios.podspec
mv segment-appsflyer-ios.podspec segment-appsflyer-ios-qa.podspec

sed -r -i '' "s/(.*AppsFlyerLib.*)([0-9]+\.[0-9]+\.[0-9]+)(.*)/\1$appsflyerLibVersion\3/g" Package.swift

sed -r -i '' "s/(.*pod \'segment-appsflyer-ios\')(.*\'[0-9]+\.[0-9]+\.[0-9]+\')/\1,:podspec => \'\.\.\/\.\.\/segment-appsflyer-ios.podspec\'/g" examples/SwiftPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios\')(.*\'[0-9]+\.[0-9]+\.[0-9]+\')/\1,:podspec => \'\.\.\/\.\.\/segment-appsflyer-ios.podspec\'/g" examples/ObjcPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios)\'(.*\'[0-9]+\.[0-9]+\.[0-9]+\')/\1-qa\',\'$rcVersion\'/g" examples/SwiftPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios)\'(.*\'[0-9]+\.[0-9]+\.[0-9]+\')/\1-qa\',\'$rcVersion\'/g" examples/ObjcPodsSample/Podfile

sed -r -i '' "s/(## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v)(.*)/\1$appsflyerLibVersion./g" README.md
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios.*)([0-9]+\.[0-9]+\.[0-9]+)(.*)/\1$appsflyerLibVersion\3/g" README.md
Expand Down
8 changes: 5 additions & 3 deletions .github/bash_scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

releaseVersion=$1

sed -r -i '' "s/version_plugin = \'[0-9]+\.[0-9]+\.[0-9]+\'/version_plugin = \'$releaseVersion\'/g" segment-appsflyer-ios.podspec
sed -r -i '' "s/version_plugin = \'[0-9]+\.[0-9]+\.[0-9]+.*\'/version_plugin = \'$releaseVersion\'/g" segment-appsflyer-ios-qa.podspec
sed -i '' "s/s.name = \"segment-appsflyer-ios-qa\"/s.name = \"segment-appsflyer-ios\"/g" segment-appsflyer-ios-qa.podspec
mv segment-appsflyer-ios-qa.podspec segment-appsflyer-ios.podspec

sed -r -i '' "s/(.*pod \'segment-appsflyer-ios\')(.*)/\1,\'$releaseVersion\'/g" examples/SwiftPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios\')(.*)/\1,\'$releaseVersion\'/g" examples/ObjcPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios)-qa\'(.*)/\1\',\'$releaseVersion\'/g" examples/SwiftPodsSample/Podfile
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios)-qa\'(.*)/\1\',\'$releaseVersion\'/g" examples/ObjcPodsSample/Podfile

sed -i '' 's/^/* /' "releasenotes.$releaseVersion"
NEW_VERSION_RELEASE_NOTES=$(cat "releasenotes.$releaseVersion")
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/prepare-for-QA-and-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: pre-release

on:
workflow_call:

jobs:
Change-HardCoded-Version-And-Then-Release:
name: Pre Release
runs-on: [ios, self-hosted]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Determine release tag and release branch
run: |
echo ${{github.ref_name}}
TAG=$(echo "${{github.ref_name}}" | grep -Eo '[0-9]+.[0-9]+.[0-9]+')
echo "PLUGIN_VERSION=$TAG" >> $GITHUB_ENV
TAG_RC=$(echo "${{github.ref_name}}" | grep -Eo '[0-9]+.[0-9]+.[0-9]+-rc[0-9]+')
echo "PLUGIN_VERSION_RC=$TAG_RC" >> $GITHUB_ENV
- name: run script
run: bash .github/bash_scripts/pre_release.sh ${{env.PLUGIN_VERSION}} ${{env.PLUGIN_VERSION_RC}}
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: Moris Gateno
author_email: [email protected]
message: 'Commited from github action - prepaing the repo for QA locally.'
add: '.'
tag: "${{env.PLUGIN_VERSION_RC}} --force"
tag_push: '--force'
- name: Push to COCOAPODS
run: |
pod trunk me
pod trunk push segment-appsflyer-ios-qa.podspec --verbose --use-libraries --allow-warnings
26 changes: 0 additions & 26 deletions .github/workflows/prepare-for-QA-release.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/prepare-for-release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- opened
branches:
- 'master'
# - 'dev/add-release-workflow'

jobs:
Prepare-Plugin-For-Production:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release-QA-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
if: needs.Check-If-ReleaseNotes-Pushed.outputs.answer == 'false'
uses: ./.github/workflows/unit-tests-workflow.yml

Deploy-Locally-To-QA:
needs: [Run-Unit-Tests,Check-If-ReleaseNotes-Pushed]
Prepere-To-QA-and-Release:
needs: [Check-If-ReleaseNotes-Pushed]
if: needs.Check-If-ReleaseNotes-Pushed.outputs.answer == 'false'
uses: ./.github/workflows/prepare-for-QA-release.yml
uses: ./.github/workflows/prepare-for-QA-and-release.yml

8 changes: 4 additions & 4 deletions .github/workflows/release-production-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
Deploy-To-Production:
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/')
runs-on: macos-latest
runs-on: [ios, self-hosted]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -49,9 +49,9 @@ jobs:
- name: Install Cocoapods
run: gem install cocoapods
- name: Push to COCOAPODS
uses: michaelhenry/[email protected]
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.CI_COCOAPODS_TOKEN }}
run: |
pod trunk me
pod trunk push segment-appsflyer-ios.podspec --verbose --use-libraries --allow-warnings
- name: Notify with SLack
uses: slackapi/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_call:
jobs:
Tests:
runs-on: macos-12
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -18,4 +18,4 @@ jobs:
- name: CocoaPod Install
run: pod install
- name: Test
run: xcodebuild test -scheme segment-appsflyer-ios -workspace segment-appsflyer-ios.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 13' | xcpretty && exit ${PIPESTATUS[0]}
run: xcodebuild test -scheme segment-appsflyer-ios -workspace segment-appsflyer-ios.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.4' | xcpretty && exit ${PIPESTATUS[0]}
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git" , from: "4.0.0"),
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.14.3")),
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.15.1")),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AppsFlyer integration for Segment.

## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.14.3.
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.15.1.

[![Version](https://img.shields.io/badge/cocoapods-compatible-brightgreen?logo=cocoapods&logoColor=green&style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios)
[![Carthage compatible](https://img.shields.io/badge/Carthage-not_compatible-C20000.svg?style=flat)](https://github.com/Carthage/Carthage)
Expand Down Expand Up @@ -49,12 +49,12 @@ To install the segment-appsflyer-ios integration:

**Production** version:
```ruby
pod 'segment-appsflyer-ios', '6.14.3'
pod 'segment-appsflyer-ios', '6.15.1'
```

**Strict mode SDK** version:
```ruby
pod 'segment-appsflyer-ios/Strict', '6.14.3'
pod 'segment-appsflyer-ios/Strict', '6.15.1'
```
Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids).

Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 6.15.1


### 6.14.3
* Update to Appsflyer SDK 6.14.3.

Expand Down
4 changes: 4 additions & 0 deletions SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ - (void)testSEGAppsFlyerIntegration_onConversionDataFail_happyflow{
id SEGAppsFlyerIntegrationTestsMock = OCMClassMock([SEGAppsFlyerIntegrationTests class]);
OCMStub([SEGAppsFlyerIntegrationTestsMock onConversionDataFail:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqual:error]);
return true;
}]]);

SEGAppsFlyerIntegration *integrationObject = [[SEGAppsFlyerIntegration alloc] initWithSettings:@{} withAnalytics:nil andDelegate:SEGAppsFlyerIntegrationTestsMock];
Expand All @@ -497,6 +498,7 @@ - (void)testSEGAppsFlyerIntegration_onAppOpenAttribution_happyflow{
id SEGAppsFlyerIntegrationTestsMock = OCMClassMock([SEGAppsFlyerIntegrationTests class]);
OCMStub([SEGAppsFlyerIntegrationTestsMock onAppOpenAttribution:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqualToDictionary:attributionData]);
return true;
}]]);

SEGAppsFlyerIntegration *integrationObject = [[SEGAppsFlyerIntegration alloc] initWithSettings:@{} withAnalytics:nil andDelegate:SEGAppsFlyerIntegrationTestsMock];
Expand All @@ -515,6 +517,7 @@ - (void)testSEGAppsFlyerIntegration_onAppOpenAttributionFailure_happyflow{
id SEGAppsFlyerIntegrationTestsMock = OCMClassMock([SEGAppsFlyerIntegrationTests class]);
OCMStub([SEGAppsFlyerIntegrationTestsMock onAppOpenAttribution:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqual:error]);
return true;
}]]);

SEGAppsFlyerIntegration *integrationObject = [[SEGAppsFlyerIntegration alloc] initWithSettings:@{} withAnalytics:nil andDelegate:SEGAppsFlyerIntegrationTestsMock];
Expand All @@ -533,6 +536,7 @@ - (void)testSEGAppsFlyerIntegration_didResolveDeepLink_happyflow{
id SEGAppsFlyerIntegrationTestsMock = OCMClassMock([SEGAppsFlyerIntegrationTests class]);
OCMStub([SEGAppsFlyerIntegrationTestsMock onAppOpenAttribution:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqual:result]);
return true;
}]]);

SEGAppsFlyerIntegration *integrationObject = [[SEGAppsFlyerIntegration alloc] initWithSettings:@{} withAnalytics:nil andDelegate:SEGAppsFlyerIntegrationTestsMock];
Expand Down
2 changes: 1 addition & 1 deletion examples/ObjcPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ target 'ObjcPodsSample' do
use_frameworks!

# Pods for ObjcPodsSample
pod 'segment-appsflyer-ios','6.14.3'
pod 'segment-appsflyer-ios','6.15.1'
end
2 changes: 1 addition & 1 deletion examples/SwiftPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ target 'SwiftPodsSample' do
use_frameworks!

# Pods for SwiftPodsSample
pod 'segment-appsflyer-ios','6.14.3'
pod 'segment-appsflyer-ios','6.15.1'

end
32 changes: 25 additions & 7 deletions examples/SwiftPodsSample/SwiftPodsSample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
954064F38BF10350BB5B1DAC /* Pods_SwiftPodsSample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D615F2D019A120C8773288D /* Pods_SwiftPodsSample.framework */; };
9D29F71F24E4081F007A929A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D29F71E24E4081F007A929A /* AppDelegate.swift */; };
9D29F72124E4081F007A929A /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D29F72024E4081F007A929A /* SceneDelegate.swift */; };
9D29F72324E4081F007A929A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D29F72224E4081F007A929A /* ViewController.swift */; };
9D29F72624E4081F007A929A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D29F72424E4081F007A929A /* Main.storyboard */; };
9D29F72824E40820007A929A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9D29F72724E40820007A929A /* Assets.xcassets */; };
Expand All @@ -20,14 +19,14 @@
2D615F2D019A120C8773288D /* Pods_SwiftPodsSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftPodsSample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9D29F71B24E4081F007A929A /* SwiftPodsSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftPodsSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
9D29F71E24E4081F007A929A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
9D29F72024E4081F007A929A /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
9D29F72224E4081F007A929A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
9D29F72524E4081F007A929A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
9D29F72724E40820007A929A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
9D29F72A24E40820007A929A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
9D29F72C24E40820007A929A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9D29F73324E40AE9007A929A /* SwiftPodsSample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SwiftPodsSample-Bridging-Header.h"; sourceTree = "<group>"; };
9F10C505DB27305DDC0B3EDD /* Pods-SwiftPodsSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftPodsSample.release.xcconfig"; path = "Target Support Files/Pods-SwiftPodsSample/Pods-SwiftPodsSample.release.xcconfig"; sourceTree = "<group>"; };
B3619ED32C74A6770067E195 /* SwiftPodsSample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SwiftPodsSample.entitlements; sourceTree = "<group>"; };
D55B32FE162D54FD3F59944C /* Pods-SwiftPodsSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftPodsSample.debug.xcconfig"; path = "Target Support Files/Pods-SwiftPodsSample/Pods-SwiftPodsSample.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand Down Expand Up @@ -73,9 +72,9 @@
9D29F71D24E4081F007A929A /* SwiftPodsSample */ = {
isa = PBXGroup;
children = (
B3619ED32C74A6770067E195 /* SwiftPodsSample.entitlements */,
9D29F73324E40AE9007A929A /* SwiftPodsSample-Bridging-Header.h */,
9D29F71E24E4081F007A929A /* AppDelegate.swift */,
9D29F72024E4081F007A929A /* SceneDelegate.swift */,
9D29F72224E4081F007A929A /* ViewController.swift */,
9D29F72424E4081F007A929A /* Main.storyboard */,
9D29F72724E40820007A929A /* Assets.xcassets */,
Expand Down Expand Up @@ -105,6 +104,7 @@
9D29F71824E4081F007A929A /* Frameworks */,
9D29F71924E4081F007A929A /* Resources */,
F6332A18B9239844E271B4AD /* [CP] Embed Pods Frameworks */,
AE2D77C364B498651EBB1DB7 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -183,6 +183,23 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
AE2D77C364B498651EBB1DB7 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-SwiftPodsSample/Pods-SwiftPodsSample-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-SwiftPodsSample/Pods-SwiftPodsSample-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SwiftPodsSample/Pods-SwiftPodsSample-resources.sh\"\n";
showEnvVarsInLog = 0;
};
F6332A18B9239844E271B4AD /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand All @@ -209,7 +226,6 @@
files = (
9D29F72324E4081F007A929A /* ViewController.swift in Sources */,
9D29F71F24E4081F007A929A /* AppDelegate.swift in Sources */,
9D29F72124E4081F007A929A /* SceneDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -357,14 +373,15 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = SwiftPodsSample/SwiftPodsSample.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 6UQAD4B3U2;
INFOPLIST_FILE = SwiftPodsSample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.appsflyer.SwiftPodsSample;
PRODUCT_BUNDLE_IDENTIFIER = com.appsflyer.SwiftPodsSampleMoris;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "SwiftPodsSample/SwiftPodsSample-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand All @@ -378,14 +395,15 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = SwiftPodsSample/SwiftPodsSample.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 6UQAD4B3U2;
INFOPLIST_FILE = SwiftPodsSample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.appsflyer.SwiftPodsSample;
PRODUCT_BUNDLE_IDENTIFIER = com.appsflyer.SwiftPodsSampleMoris;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "SwiftPodsSample/SwiftPodsSample-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down
Loading

0 comments on commit 9b031ed

Please sign in to comment.