Skip to content

Commit 81967b2

Browse files
committed
Fixed compilation issue. Updated version to 20.4.9.
1 parent f7d4f65 commit 81967b2

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
## 20.4.9
2+
* Hotfix for compilation issue
3+
14
## 20.4.8
25
* Added "recordAttributionID" call to support changes in iOS 14 related to App Tracking Permission.
6+
37
## 20.4.7
48
* Adding call to set consent during init
59

android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public String toString(){
6767
public class CountlyReactNative extends ReactContextBaseJavaModule {
6868

6969
public static final String TAG = "CountlyReactNativePlugin";
70-
private String COUNTLY_RN_SDK_VERSION_STRING = "20.04.7";
70+
private String COUNTLY_RN_SDK_VERSION_STRING = "20.04.9";
7171
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
7272

7373
private static CountlyConfig config = new CountlyConfig();
@@ -873,7 +873,7 @@ public void recordNetworkTrace(ReadableArray args){
873873
int endTime = Integer.parseInt(args.getString(5));
874874
// Countly.sharedInstance().apm().endNetworkRequest(networkTraceKey, null, responseCode, requestPayloadSize, responsePayloadSize);
875875
}catch(Exception exception){
876-
log("Exception occured at recordNetworkTrace method: " +exception.toString(), LogLevel.ERROR);
876+
log("Exception occured at recordNetworkTrace method: " + exception.toString(), LogLevel.ERROR);
877877
}
878878
}
879879

@@ -890,7 +890,7 @@ public void enableAttribution(){
890890
@ReactMethod
891891
public void recordAttributionID(ReadableArray args){
892892
String attributionID = args.getString(0);
893-
log("recordAttributionID: Not implemented for Android");
893+
log("recordAttributionID: Not implemented for Android", LogLevel.DEBUG);
894894
}
895895

896896
enum LogLevel {INFO, DEBUG, VERBOSE, WARNING, ERROR}

example/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rm App.js
1111
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
1212
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js
1313

14-
14+
1515

1616
cd ./ios
1717
pod install

ios/src/CountlyReactNative.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define COUNTLY_RN_LOG(...)
1818
#endif
1919

20-
NSString* const kCountlyReactNativeSDKVersion = @"20.04.7";
20+
NSString* const kCountlyReactNativeSDKVersion = @"20.04.9";
2121
NSString* const kCountlyReactNativeSDKName = @"js-rnb-ios";
2222

2323
CountlyConfig* config = nil;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-react-native-bridge",
3-
"version": "20.4.8",
3+
"version": "20.4.9",
44
"author": "Countly <[email protected]> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)