Skip to content

Commit 7b55090

Browse files
authored
Merge pull request #19 from adjust/v4115
Version 4.11.5
2 parents 64b9bd0 + b3cdb22 commit 7b55090

File tree

6 files changed

+41
-3
lines changed

6 files changed

+41
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 4.11.5 (22nd August 2017)
2+
#### Added
3+
- **[iOS]** Added `Podspec` file for Cocoapods support (thanks to @pietropizzi, @tecbot and @dan-manges).
4+
5+
#### Native SDKs
6+
- **[iOS]** [[email protected]][ios_sdk_v4.11.4]
7+
- **[AND]** [[email protected]][android_sdk_v4.11.4]
8+
9+
---
10+
111
### Version 4.11.4 (3rd August 2017)
212
#### Added
313
- **[AND]** Added support for `React Native 0.47.0 and higher` (thanks to @robertmerten and @ruiaraujo).

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ Then you must install the native dependencies. You can use `react-native` cli to
6767
$ react-native link
6868
```
6969

70+
**Or** if you use CocoaPods for **iOS**, add the following to your `Podfile` and run `pod install` afterwards:
71+
72+
```
73+
pod 'react-native-adjust', :path => '../node_modules/react-native-adjust'
74+
```
75+
7076
For **iOS**, you don't need to do anything else.
7177

7278
For **Android**, you *may* need to check if Adjust package was added to the native module's package list.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.11.4
1+
4.11.5

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ var AdjustConfig = function(appToken, environment) {
111111
this.appToken = appToken;
112112
this.environment = environment;
113113

114-
this.sdkPrefix = "react_native4.11.4";
114+
this.sdkPrefix = "react_native4.11.5";
115115
this.logLevel = null;
116116

117117
this.eventBufferingEnabled = null;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-adjust",
33
"description": "Adjust React Native SDK",
4-
"version": "4.11.4",
4+
"version": "4.11.5",
55
"main": "index.js",
66
"author": "adjust GmbH",
77
"license": "MIT",

react-native-adjust.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
require 'json'
2+
3+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4+
5+
Pod::Spec.new do |s|
6+
s.name = package['name']
7+
s.version = package['version']
8+
s.summary = package['description']
9+
s.description = package['description']
10+
s.license = package['license']
11+
s.author = package['author']
12+
s.homepage = package['homepage']
13+
s.source = { :git => 'https://github.com/adjust/react_native_sdk', :tag => s.version }
14+
15+
s.requires_arc = true
16+
s.platform = :ios, '8.0'
17+
18+
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
19+
s.source_files = 'ios/*.{h,m}'
20+
21+
s.dependency 'Adjust', '~> 4.11.4'
22+
end

0 commit comments

Comments
 (0)