Skip to content

Commit 166aadb

Browse files
authored
Merge pull request #257 from adjust/v503
Version 5.0.3
2 parents c59b77b + 30dda20 commit 166aadb

File tree

13 files changed

+28
-17
lines changed

13 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 5.0.3 (6th December 2024)
2+
#### Changed
3+
- Switched to native Android SDK version that depends on a specific version of the signature library.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v5.0.1]
7+
- [[email protected]][android_sdk_v5.0.2]
8+
9+
---
10+
111
### Version 5.0.2 (23rd September 2024)
212
#### Fixed
313
- Fixed `Adjust.modulemap not found` error in certain CocoaPods integration cases.
@@ -738,3 +748,4 @@ In case you were using beta version of the SDK v5, please switch to the official
738748
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
739749
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
740750
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1
751+
[android_sdk_v5.0.2]: https://github.com/adjust/android_sdk/tree/v5.0.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.2
1+
5.0.3

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ android {
2727

2828
dependencies {
2929
implementation 'com.facebook.react:react-native:+'
30-
implementation 'com.adjust.sdk:adjust-android:5.0.1'
30+
implementation 'com.adjust.sdk:adjust-android:5.0.2'
3131
}

ext/ios/sdk

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Adjust.getAmazonAdId = function(callback) {
152152
};
153153

154154
Adjust.getSdkVersion = function(callback) {
155-
module_adjust.getSdkVersion("react-native5.0.2", callback);
155+
module_adjust.getSdkVersion("react-native5.0.3", callback);
156156
};
157157

158158
Adjust.requestAppTrackingAuthorization = function(callback) {
@@ -294,7 +294,7 @@ Adjust.onPause = function(testParam) {
294294
// AdjustConfig
295295

296296
var AdjustConfig = function(appToken, environment) {
297-
this.sdkPrefix = "react-native5.0.2";
297+
this.sdkPrefix = "react-native5.0.3";
298298
this.appToken = appToken;
299299
this.environment = environment;
300300
this.logLevel = 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": "5.0.2",
4+
"version": "5.0.3",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

plugins/oaid/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-oaid",
33
"description": "Adjust React Native OAID plugin",
4-
"version": "5.0.2",
4+
"version": "5.0.3",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

test/app/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const App: () => React$Node = () => {
4848
}
4949

5050
var urlOverwrite = "";
51-
var ipAddress = "192.168.8.63";
51+
var ipAddress = "192.168.8.38";
5252
if (Platform.OS === "android") {
5353
urlOverwrite = "https://" + ipAddress + ":8443";
5454
} else if (Platform.OS === "ios") {

0 commit comments

Comments
 (0)