From 38111722bd12d107bce067593e3f5d7bbe0a460b Mon Sep 17 00:00:00 2001 From: arnab Date: Tue, 14 Apr 2020 17:16:20 +0530 Subject: [PATCH] Updated Version and README --- Example/Rudder-Adjust/RUDDERAppDelegate.m | 2 +- README.md | 6 +++--- Rudder-Adjust.podspec | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Example/Rudder-Adjust/RUDDERAppDelegate.m b/Example/Rudder-Adjust/RUDDERAppDelegate.m index f459262..e15fcb4 100644 --- a/Example/Rudder-Adjust/RUDDERAppDelegate.m +++ b/Example/Rudder-Adjust/RUDDERAppDelegate.m @@ -21,7 +21,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( NSString *endPointUrl = @"https://843fa4c8.ngrok.io"; RudderConfigBuilder *configBuilder = [[RudderConfigBuilder alloc] init]; - [configBuilder withEndPointUrl:endPointUrl]; + [configBuilder withDataPlaneUrl:endPointUrl]; [configBuilder withLoglevel:RudderLogLevelDebug]; [configBuilder withFactory:[RudderAdjustFactory instance]]; RudderClient *rudderClient = [RudderClient getInstance:writeKey config:[configBuilder build]]; diff --git a/README.md b/README.md index 71c7064..d737069 100644 --- a/README.md +++ b/README.md @@ -14,16 +14,16 @@ Released under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) 2. Rudder-Adjust is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod 'Rudder-Adjust', '0.1.1-beta.1' +pod 'Rudder-Adjust', '0.1.2' ``` ## Initialize ```RudderClient``` Put this code in your ```AppDelegate.m``` file under the method ```didFinishLaunchingWithOptions``` ``` RudderConfigBuilder *builder = [[RudderConfigBuilder alloc] init]; -[builder withEndPointUrl:]; +[builder withDataPlaneUrl:]; [builder withFactory:[RudderAdjustFactory instance]]; -[RudderClient getInstance:YOUR_WRITE_KEY config:[builder build]]; +[RudderClient getInstance: config:[builder build]]; ``` ## Send Events diff --git a/Rudder-Adjust.podspec b/Rudder-Adjust.podspec index 124b6d6..c805497 100644 --- a/Rudder-Adjust.podspec +++ b/Rudder-Adjust.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Rudder-Adjust' - s.version = '0.1.1-beta.1' + s.version = '0.1.2' s.summary = 'Privacy and Security focused Segment-alternative. Adjust Native SDK integration support.' s.description = <<-DESC @@ -10,13 +10,13 @@ Rudder is a platform for collecting, storing and routing customer event data to s.homepage = 'https://github.com/rudderlabs/rudder-integration-adjust-ios' s.license = { :type => "Apache", :file => "LICENSE" } s.author = { 'Rudderlabs' => 'arnab@rudderlabs.com' } - s.source = { :git => 'https://github.com/rudderlabs/rudder-integration-adjust-ios.git', :commit => '03df246d2319165c7131c8019523d33e219d6f5f' } + s.source = { :git => 'https://github.com/rudderlabs/rudder-integration-adjust-ios.git', :tag => 'v0.1.2' } s.platform = :ios, "9.0" s.ios.deployment_target = '8.0' s.source_files = 'Rudder-Adjust/Classes/**/*' - s.dependency 'Rudder', '1.0.1-beta.4' + s.dependency 'Rudder', '~> 1.0.1' s.dependency 'Adjust', '~> 4.17.2' end