Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1288efe
Converted files to userleap name
helloandrewpark Aug 7, 2020
34607c8
implemented identity, attributes and events
helloandrewpark Oct 16, 2020
a60e638
proper return code for unsupported attributes and updated no survey flag
helloandrewpark Oct 16, 2020
7b04bd4
added pull request template
helloandrewpark Oct 16, 2020
baa29f7
Added unit tests and fixed bug
helloandrewpark Oct 20, 2020
59dfc6b
Added Cocoapods & Carthage
helloandrewpark Oct 21, 2020
079b021
update commerce event name
helloandrewpark Oct 21, 2020
9439b8c
bump UserLeapKit version number
helloandrewpark Dec 1, 2020
921fe5d
remove pull_request_template
helloandrewpark Dec 1, 2020
ca5938f
Merge pull request #1 from UserLeap/ap/unit_tests
helloandrewpark Dec 1, 2020
d94fc96
use deprecated logEvent:
helloandrewpark Dec 3, 2020
0f6853b
bump supported mParticle version
helloandrewpark Dec 3, 2020
d9656b6
some fixes
helloandrewpark Jan 13, 2021
667f7d8
update dep versions
helloandrewpark Mar 3, 2021
28ae459
Merge pull request #2 from UserLeap/ap/log_events
helloandrewpark Mar 3, 2021
041bbbb
handle commerce properly
helloandrewpark Mar 9, 2021
5db88b5
Merge pull request #3 from UserLeap/ap/log_events
helloandrewpark Mar 9, 2021
394f3c3
Update author, source, social media and deployment target
helloandrewpark Apr 27, 2021
53fe189
Merge pull request #6 from UserLeap/ap/update_details
helloandrewpark Apr 27, 2021
cde8efb
Update carthage url and add cocoapods exclude to be able to push to c…
helloandrewpark Apr 27, 2021
48d6936
Merge pull request #7 from UserLeap/ap/carthage_update
helloandrewpark Apr 27, 2021
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 Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#github "Example/Example" ~> 1.2.3
github "mparticle/mparticle-apple-sdk" ~> 7.7.0
binary "https://raw.githubusercontent.com/UserLeap/userleap-ios-sdk-releases/main/UserLeapKit.json"
github "mparticle/mparticle-apple-sdk" ~> 8.2.0
20 changes: 0 additions & 20 deletions mParticle-Example.podspec

This file was deleted.

322 changes: 0 additions & 322 deletions mParticle-Example/MPKitExample.m

This file was deleted.

26 changes: 26 additions & 0 deletions mParticle-UserLeap.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = "mParticle-UserLeap"
s.version = "1.0.0"
s.summary = "UserLeap integration for mParticle"

s.description = <<-DESC
Please find updated documentation at https://docs.userleap.com/integrations/mparticle
DESC

s.homepage = "https://www.mparticle.com"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "UserLeap" => "support@userleap.com" }
s.source = { :git => "https://github.com/UserLeap/userleap-mparticle-ios-kit.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/userleap"

s.ios.deployment_target = "10.3"
s.ios.source_files = 'mParticle-UserLeap/*.{h,m}'
s.ios.dependency 'mParticle-Apple-SDK', '~> 8.2'
s.ios.dependency 'UserLeapKit', '4.1.0'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
end
Loading