1.15.0.0 and Later¶
Changes¶
-
Reduced sdk size The sdk was refactored to reduce the sdk size as well as the final app size.
-
Moved to public podspec repository The Tapkey iOS AppSDK has been removed from the shipped zip file and has been published in the public CocoaPod repository
https://github.com/tapkey/TapkeyCocoaPods
Migration¶
Because of the switch from local files to a public CocoaPod repository, there are some necessary changes in the project's podfile.
Add the tapkey CocoaPod repository and the official CocoaPod repository as a source to the beginning of the podfile and replace the local paths with the version number.
source "https://github.com/tapkey/TapkeyCocoaPods"
source 'https://github.com/CocoaPods/Specs.git'
...
target 'App' do
# replace
# pod 'TapkeyMobileLib', :path => '[YOUR_APP_SDK_PATH]/iOS/Libs'
# with
pod 'TapkeyMobileLib', 'x.x.x.x'
# optional
# replace
# pod 'TapkeyGCM', :path => '[YOUR_APP_SDK_PATH]/iOS/Libs'
# with:
pod 'TapkeyMobileLib/TapkeyGCM', 'x.x.x.x'
##
# optional
# replace
# tk_auth0_authentication_pods
# with
pod 'TapkeyMobileLib/Auth0Authentication', 'x.x.x.x'
end
...