Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 5.0.2 #253

Merged
merged 6 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### Version 5.0.2 (23rd September 2024)
#### Fixed
- Fixed `Adjust.modulemap not found` error in certain CocoaPods integration cases.
- Fixed occasional ANRs while reading install referrer from Shared Preferences during the SDK initialization.

#### Native SDKs
- [[email protected]][ios_sdk_v5.0.1]
- [[email protected]][android_sdk_v5.0.1]

---

### Version 5.0.1 (10th September 2024)
#### Fixed
- Added missing `AdjustDeeplink` class export to `index.d.ts` (https://github.com/adjust/react_native_sdk/pull/246).
Expand Down Expand Up @@ -687,6 +698,7 @@ In case you were using beta version of the SDK v5, please switch to the official
[ios_sdk_v4.38.0]: https://github.com/adjust/ios_sdk/tree/v4.38.0
[ios_sdk_v4.38.2]: https://github.com/adjust/ios_sdk/tree/v4.38.2
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1

[android_sdk_v4.10.4]: https://github.com/adjust/android_sdk/tree/v4.10.4
[android_sdk_v4.11.0]: https://github.com/adjust/android_sdk/tree/v4.11.0
Expand Down Expand Up @@ -725,3 +737,4 @@ In case you were using beta version of the SDK v5, please switch to the official
[android_sdk_v4.38.2]: https://github.com/adjust/android_sdk/tree/v4.38.2
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.1
5.0.2
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ android {

dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'com.adjust.sdk:adjust-android:5.0.0'
implementation 'com.adjust.sdk:adjust-android:5.0.1'
}
2 changes: 1 addition & 1 deletion android/src/main/java/com/adjust/sdk/Adjust.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void initSdk(final ReadableMap mapConfig) {
} else if (logLevel.equals("ASSERT")) {
adjustConfig.setLogLevel(LogLevel.ASSERT);
} else if (logLevel.equals("SUPPRESS")) {
adjustConfig.setLogLevel(LogLevel.SUPRESS);
adjustConfig.setLogLevel(LogLevel.SUPPRESS);
} else {
adjustConfig.setLogLevel(LogLevel.INFO);
}
Expand Down
2 changes: 1 addition & 1 deletion ext/android/sdk
Submodule sdk updated 32 files
+1 −1 Adjust/build.gradle
+1 −0 Adjust/examples/example-app-fbpixel/build.gradle
+1 −0 Adjust/examples/example-app-java/build.gradle
+1 −0 Adjust/examples/example-app-keyboard/build.gradle
+1 −0 Adjust/examples/example-app-kotlin/build.gradle
+1 −0 Adjust/examples/example-app-tv/build.gradle
+1 −0 Adjust/examples/example-app-webbridge/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-huawei-referrer/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-imei/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-meta-referrer/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-oaid/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-samsung-clouddev/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-samsung-referrer/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-vivo-referrer/build.gradle
+1 −1 Adjust/plugins/sdk-plugin-webbridge/build.gradle
+17 −1 Adjust/plugins/sdk-plugin-webbridge/src/main/assets/adjust.js
+8 −0 Adjust/plugins/sdk-plugin-webbridge/src/main/assets/adjust_event.js
+8 −0 Adjust/plugins/sdk-plugin-webbridge/src/main/assets/adjust_third_party_sharing.js
+1 −4 Adjust/plugins/sdk-plugin-webbridge/src/main/java/com/adjust/sdk/webbridge/AdjustBridgeInstance.java
+1 −1 Adjust/plugins/sdk-plugin-xiaomi-referrer/build.gradle
+1 −1 Adjust/sdk-core/build.gradle
+1 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/Adjust.java
+1 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/AdjustConfig.java
+4 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/AdjustInstance.java
+1 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/Constants.java
+1 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/LogLevel.java
+4 −1 Adjust/sdk-core/src/main/java/com/adjust/sdk/PackageHandler.java
+0 −2 Adjust/sdk-core/src/main/java/com/adjust/sdk/network/ActivityPackageSender.java
+14 −1 Adjust/tests/test-app-core/src/main/java/com/adjust/testapp/AdjustCommandExecutor.java
+1 −1 Adjust/tests/test-app-webbridge/src/main/assets/command_executor.js
+11 −0 CHANGELOG.md
+1 −1 VERSION
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Adjust.getAmazonAdId = function(callback) {
};

Adjust.getSdkVersion = function(callback) {
module_adjust.getSdkVersion("react-native5.0.1", callback);
module_adjust.getSdkVersion("react-native5.0.2", callback);
};

Adjust.requestAppTrackingAuthorization = function(callback) {
Expand Down Expand Up @@ -294,7 +294,7 @@ Adjust.onPause = function(testParam) {
// AdjustConfig

var AdjustConfig = function(appToken, environment) {
this.sdkPrefix = "react-native5.0.1";
this.sdkPrefix = "react-native5.0.2";
this.appToken = appToken;
this.environment = environment;
this.logLevel = null;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust",
"description": "Adjust React Native SDK",
"version": "5.0.1",
"version": "5.0.2",
"main": "index.js",
"author": "Adjust",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plugins/oaid/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust-oaid",
"description": "Adjust React Native OAID plugin",
"version": "5.0.1",
"version": "5.0.2",
"main": "index.js",
"author": "Adjust",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion react-native-adjust.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Pod::Spec.new do |s|
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
s.source_files = 'ios/*.{h,m}'

s.dependency 'Adjust', '5.0.0'
s.dependency 'Adjust', '5.0.1'
s.dependency 'React-Core'
end
22 changes: 11 additions & 11 deletions test/app/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Adjust (5.0.0):
- Adjust/Adjust (= 5.0.0)
- Adjust/Adjust (5.0.0):
- Adjust (5.0.1):
- Adjust/Adjust (= 5.0.1)
- Adjust/Adjust (5.0.1):
- AdjustSignature (~> 3.18)
- AdjustSignature (3.20.1)
- AdjustSignature (3.20.2)
- boost (1.84.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.75.2)
Expand Down Expand Up @@ -1242,10 +1242,10 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- react-native-adjust (5.0.0):
- Adjust (= 5.0.0)
- react-native-adjust (5.0.2):
- Adjust (= 5.0.1)
- React-Core
- react-native-adjust-test (5.0.0):
- react-native-adjust-test (5.0.2):
- React
- React-nativeconfig (0.75.2)
- React-NativeModulesApple (0.75.2):
Expand Down Expand Up @@ -1716,8 +1716,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
Adjust: a1421f630c529258d7e170a8a76647f9721f7fbd
AdjustSignature: cd0263e5672da024e8671888ea164c9c7496fe3b
Adjust: f27daaa40d0df5550b89dd428cd8545d812e1f6d
AdjustSignature: f42d8c64cda8361ff5b5a31e4536d82076be4306
boost: 4cb898d0bf20404aab1850c656dcea009429d6c1
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
FBLazyVector: 38bb611218305c3bc61803e287b8a81c6f63b619
Expand Down Expand Up @@ -1753,8 +1753,8 @@ SPEC CHECKSUMS:
React-logger: 8db32983d75dc2ad54f278f344ccb9b256e694fc
React-Mapbuffer: 1c08607305558666fd16678b85ef135e455d5c96
React-microtasksnativemodule: 87b8de96f937faefece8afd2cb3a518321b2ef99
react-native-adjust: 10a4f635c00e69a34105c2cbaa8d8b7558a187ce
react-native-adjust-test: 89393be526433fc275e03f1ccf32caed936b428f
react-native-adjust: 6a73063a62fb0f21dd2220f15b315c1e323268b0
react-native-adjust-test: 147ae467b75a34973d4024ff00c476cd819dd4a0
React-nativeconfig: 57781b79e11d5af7573e6f77cbf1143b71802a6d
React-NativeModulesApple: 7ff2e2cfb2e5fa5bdedcecf28ce37e696c6ef1e1
React-perflogger: 8a360ccf603de6ddbe9ff8f54383146d26e6c936
Expand Down
Binary file modified test/lib/android/libs/adjust-test-library.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion test/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust-test",
"description": "Adjust Test Plugin For React Native SDK",
"version": "5.0.1",
"version": "5.0.2",
"author": "Adjust",
"license": "MIT",
"keywords": [
Expand Down