Skip to content

Commit

Permalink
Updated Version and README
Browse files Browse the repository at this point in the history
  • Loading branch information
arnabp92 committed Apr 14, 2020
1 parent 0591264 commit 3811172
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Example/Rudder-Adjust/RUDDERAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -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]];
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<YOUR_DATA_PLANE_URL>];
[builder withDataPlaneUrl:<YOUR_DATA_PLANE_URL>];
[builder withFactory:[RudderAdjustFactory instance]];
[RudderClient getInstance:YOUR_WRITE_KEY config:[builder build]];
[RudderClient getInstance:<YOUR_WRITE_KEY> config:[builder build]];
```

## Send Events
Expand Down
6 changes: 3 additions & 3 deletions Rudder-Adjust.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 3811172

Please sign in to comment.