Skip to content

Commit 64b9bd0

Browse files
authored
Merge pull request #18 from adjust/v4114
Version 4.11.4
2 parents 08a9198 + 92c635b commit 64b9bd0

34 files changed

+1015
-771
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### Version 4.11.4 (3rd August 2017)
2+
#### Added
3+
- **[AND]** Added support for `React Native 0.47.0 and higher` (thanks to @robertmerten and @ruiaraujo).
4+
5+
#### Changed
6+
- **[REPO]** Example app built `React Native 0.47.0`.
7+
8+
#### Native SDKs
9+
- **[iOS]** [[email protected]][ios_sdk_v4.11.4]
10+
- **[AND]** [[email protected]][android_sdk_v4.11.4]
11+
12+
---
13+
114
### Version 4.11.3 (15th May 2017)
215
#### Added
316
- **[iOS][AND]** Added check if `sdk_click` package response contains attribution information.

VERSION

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

android/src/main/java/com/adjust/sdk/AdjustPackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactConte
2727
);
2828
}
2929

30-
@Override
30+
// Deprecated RN 0.47
3131
public List<Class<? extends JavaScriptModule>> createJSModules() {
3232
return Collections.emptyList();
3333
}

example/.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["react-native"]
3-
}
2+
"presets": ["react-native"]
3+
}

example/.flowconfig

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ node_modules/react-native/flow
2222
flow/
2323

2424
[options]
25-
module.system=haste
25+
emoji=true
2626

27-
experimental.strict_type_args=true
27+
module.system=haste
2828

2929
munge_underscores=true
3030

@@ -34,11 +34,12 @@ suppress_type=$FlowIssue
3434
suppress_type=$FlowFixMe
3535
suppress_type=$FixMe
3636

37-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-7]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
38-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-7]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
37+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
38+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
3939
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
40+
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
4041

4142
unsafe.enable_getters_and_setters=true
4243

4344
[version]
44-
^0.37.0
45+
^0.49.1

example/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ yarn-error.log
3939
# BUCK
4040
buck-out/
4141
\.buckd/
42-
android/app/libs
4342
*.keystore
4443

4544
# fastlane

0 commit comments

Comments
 (0)