Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 8928921

Browse files
authored
Merge pull request #26 from vbansal-bb/master
Updated Dynamics SDK for iOS and Dynamics SDK for Android versions fo…
2 parents 76ed234 + 0383996 commit 8928921

File tree

22 files changed

+127
-70
lines changed

22 files changed

+127
-70
lines changed

CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@
99
- Bohdan Pidluzhnyy - [email protected]
1010
- Eugeniy Leontiev - [email protected]
1111
- Nazarii Shavuk - [email protected]
12+
- Uliana Varlamova - [email protected]
13+
- Vikas Bansal - [email protected]
14+
- Madhav Srivastava - [email protected]

README.md

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BlackBerry Dynamics SDK for React Native
2-
This page provides an overview on how to use the BlackBerry Dynamics SDK for React Native. For details on BlackBerry Dynamics please see https://www.blackberry.com/dynamics
2+
This page provides an overview on how to use the BlackBerry Dynamics SDK for React Native. For details on BlackBerry Dynamics please see https://docs.blackberry.com/en/endpoint-management/blackberry-dynamics
33

44
# Supportability
55
#### Development environment
@@ -18,20 +18,31 @@ This page provides an overview on how to use the BlackBerry Dynamics SDK for Rea
1818
- 0.68.x (0.68.2 is latest supported)
1919
#### iOS
2020
- Xcode 12+
21-
- iOS 14+
21+
- iOS 14+ (for BlackBerry Dynamics SDK for iOS v11.1)
22+
- iOS 15+ (for BlackBerry Dynamics SDK for iOS v11.2)
2223
- cocoapods 1.10.2+
2324
#### Android
2425
- Java 8 (for React Native version < 0.68.0)
2526
- Java 11 (for React Native version >= 0.68.0)
26-
- Android 9+, API 28+
27+
- Android 9+, API 28+ (for BlackBerry Dynamics SDK for Android v11.1)
28+
- Android 10+, API 29+ (for BlackBerry Dynamics SDK for Android v11.2)
2729
- NDK 20.1.5948944 (for React Native version < 0.66.0)
2830
- NDK 21.4.7075529 (for React Native version >= 0.66.0)
2931
#### BlackBerry Dynamics
30-
- BlackBerry Dynamics SDK for iOS v11.0, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-ios/).
31-
- BlackBerry Dynamics SDK for Android v11.0, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-android/).
32+
Dynamics SDK for iOS and Android are now installed as part of the [Base](https://github.com/blackberry/BlackBerry-Dynamics-React-Native-SDK/tree/master/modules/BlackBerry-Dynamics-for-React-Native-Base) module using CocoaPods & Gradle.
33+
By default, `BlackBerry-Dynamics-for-React-Native-Base` module will integrate **11.1** (11.1.0.62) version of BlackBerry Dynamics SDK for Android and iOS.
34+
To integrate **11.2** version see "Using other released version" [instructions](https://github.com/blackberry/BlackBerry-Dynamics-React-Native-SDK/tree/master/modules/BlackBerry-Dynamics-for-React-Native-Base#dynamics-sdk-dependency) for both iOS and Android platforms in [BlackBerry-Dynamics-for-React-Native-Base](https://github.com/blackberry/BlackBerry-Dynamics-React-Native-SDK/tree/master/modules/BlackBerry-Dynamics-for-React-Native-Base#dynamics-sdk-dependency).
35+
36+
BlackBerry Dynamics SDK for iOS
37+
- BlackBerry Dynamics SDK for iOS v11.1, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-ios/11_1).
38+
- BlackBerry Dynamics SDK for iOS v11.2, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-ios/11_2).
39+
40+
BlackBerry Dynamics SDK for Android
41+
- BlackBerry Dynamics SDK for Android v11.1, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-android/11_1).
42+
- BlackBerry Dynamics SDK for Android v11.2, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-android/11_2).
3243
#### BlackBerry Dynamics Launcher
33-
- BlackBerry Dynamics Launcher library for iOS v3.5, check details [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-launcher-framework-for-ios).
34-
- BlackBerry Dynamics Launcher library for Android v3.5, check details [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-launcher-framework-for-android).
44+
- BlackBerry Dynamics Launcher library for iOS v3.5, check details [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-launcher-framework-for-ios/3_5).
45+
- BlackBerry Dynamics Launcher library for Android v3.5, check details [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-launcher-framework-for-android/3_5).
3546

3647
# Features
3748
#### Integration with BlackBerry Dynamics

modules/BlackBerry-Dynamics-for-React-Native-AppKinetics/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,6 +28,6 @@ android {
2828
dependencies {
2929
implementation 'com.facebook.react:react-native:+'
3030
implementation project(path: ':BlackBerry-Dynamics-for-React-Native-Base')
31-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
32-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
31+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
32+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
3333
}

modules/BlackBerry-Dynamics-for-React-Native-Application/android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,6 +28,6 @@ android {
2828
dependencies {
2929
implementation 'com.facebook.react:react-native:+'
3030
implementation project(path: ':BlackBerry-Dynamics-for-React-Native-Base')
31-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
32-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
33-
}
31+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
32+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
33+
}

modules/BlackBerry-Dynamics-for-React-Native-Async-Storage/android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
* Some modifications to the original @react-native-community/async-storage
44
* from https://github.com/react-native-community/async-storage/
55
*/
@@ -35,7 +35,7 @@ android {
3535
}
3636

3737
dependencies {
38-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
39-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
38+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
39+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
4040
implementation "com.facebook.react:react-native:+"
41-
}
41+
}

modules/BlackBerry-Dynamics-for-React-Native-Base/README.md

+44-4
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,27 @@ Please setup your environment as described in the [React Native documentation](h
2626

2727
Dynamics SDK for iOS and Android are now installed as part of the Base module using CocoaPods & Gradle. The integration uses the iOS "Dynamic Framework" version of BlackBerry Dynamics as the static library is no longer supported.
2828

29+
Supported Dynamics SDK for iOS versions:
30+
- 11.1, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-ios/11_1)
31+
- 11.2, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-ios/11_2)
32+
33+
Supported Dynamics SDK for Android versions:
34+
- 11.1, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-android/11_1)
35+
- 11.2, check environment requirements [here](https://docs.blackberry.com/en/development-tools/blackberry-dynamics-sdk-android/11_2)
36+
2937
##### BlackBerry Dynamics SDK for iOS integration
30-
###### Using latest released version - default
31-
By default, `BlackBerry-Dynamics-for-React-Native-Base` module will integrate **latest** available BlackBerry Dynamics SDK for iOS using following podspec: `https://software.download.blackberry.com/repository/framework/dynamics/ios/11.0.1.137/BlackBerryDynamics-11.0.1.137.podspec`.
38+
###### Using default (11.1) released version - default
39+
By default, `BlackBerry-Dynamics-for-React-Native-Base` module will integrate **11.1** (11.1.0.62) version of BlackBerry Dynamics SDK for iOS using following podspec: `https://software.download.blackberry.com/repository/framework/dynamics/ios/11.1.0.62/BlackBerryDynamics-11.1.0.62.podspec`.
3240
> NOTE: If one of the below integration methods was used there is an option to reset **default** configuration by running following command:
3341
`$ yarn set-dynamics-podspec --default`
3442
`$ cd ios && pod install && cd ..`
3543

3644
###### Using other released version
3745
There is possibility to integrate other released build of BlackBerry Dynamics SDK for iOS.
38-
Following command should be run:
46+
Currently, the **latest** supported versions is 11.2.
47+
Following command should be run to use BlackBerry Dynamics SDK for iOS v11.2:
3948
```
40-
$ yarn set-dynamics-podspec --url "https://software.download.blackberry.com/repository/framework/dynamics/ios/10.2.0.83/BlackBerryDynamics-10.2.0.83.podspec"
49+
$ yarn set-dynamics-podspec --url "https://software.download.blackberry.com/repository/framework/dynamics/ios/11.2.0.26/BlackBerryDynamics-11.2.0.26.podspec"
4150
$ cd ios && pod install && cd ..
4251
```
4352
###### Using locally downloaded version
@@ -48,6 +57,37 @@ $ yarn set-dynamics-podspec --path "/Users/<user>/Downloads/gdsdk-release-dylib-
4857
$ cd ios && pod install && cd ..
4958
```
5059

60+
##### BlackBerry Dynamics SDK for Android integration
61+
By default, `BlackBerry-Dynamics-for-React-Native-Base` module will integrate **11.1** (11.1.0.62) version of BlackBerry Dynamics SDK for Android.
62+
###### Using other released version
63+
There is possibility to integrate other released build of BlackBerry Dynamics SDK for Android.
64+
Currently, the **latest** supported versions is 11.2.
65+
Following steps should be done to use BlackBerry Dynamics SDK for Android v11.2:
66+
- update versions of Dynamics dependencies in all modules from `<path>/BlackBerry_Dynamics_SDK_for_React_Native_vX.X.X.X/modules/` and ui-components from `<path>/BlackBerry_Dynamics_SDK_for_React_Native_vX.X.X.X/ui-components/`:
67+
```
68+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.2.0.13'
69+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.2.0.13'
70+
implementation 'com.blackberry.blackberrydynamics:android_webview:11.2.0.13'
71+
```
72+
- if your application contains some modules or ui-components from BlackBerry_Dynamics_SDK_for_React_Native, you will need to uninstall them first by using following commands:
73+
```
74+
$ cd <path_to_your_app>
75+
// Repeat this command to remove all appropriate modules and ui-components
76+
$ yarm remove BlackBerry-Dynamics-for-React-Native-<name>
77+
$ cd ios
78+
$ pod install
79+
$ cd ..
80+
```
81+
- install modules and ui-components from BlackBerry_Dynamics_SDK_for_React_Native with updated dependencies version by using following commands:
82+
```
83+
$ yarn add <path>/BlackBerry_Dynamics_SDK_for_React_Native_vX.X.X.X/modules/BlackBerry-Dynamics-for-React-Native-Base
84+
// Repeat this command for all appropriate modules and ui-components
85+
$ yarn add <path>/BlackBerry_Dynamics_SDK_for_React_Native_vX.X.X.X/modules/<name>
86+
$ cd ios
87+
$ pod install
88+
$ cd ..
89+
```
90+
5191
## Installation
5292
5393
#### react-native

modules/BlackBerry-Dynamics-for-React-Native-Base/android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
16+
1717
apply plugin: "com.android.library"
1818

1919
buildscript {
@@ -54,7 +54,7 @@ android {
5454
}
5555

5656
dependencies {
57-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
58-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
57+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
58+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
5959
implementation "com.facebook.react:react-native:+"
6060
}

modules/BlackBerry-Dynamics-for-React-Native-Base/android/gd.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,6 +22,6 @@ android {
2222
}
2323

2424
dependencies {
25-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
26-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
27-
}
25+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
26+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
27+
}

modules/BlackBerry-Dynamics-for-React-Native-Base/android/helper.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,5 +16,5 @@
1616

1717
ext {
1818
getBbdMavenLocation = 'https://software.download.blackberry.com/repository/maven'
19-
minSdkVersion = 28
19+
minSdkVersion = 29
2020
}

modules/BlackBerry-Dynamics-for-React-Native-Base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "BlackBerry-Dynamics-for-React-Native-Base",
33
"version": "1.0.0",
4-
"dynamicsPodSpec":"https://software.download.blackberry.com/repository/framework/dynamics/ios/11.0.1.137/BlackBerryDynamics-11.0.1.137.podspec",
4+
"dynamicsPodSpec":"https://software.download.blackberry.com/repository/framework/dynamics/ios/11.1.0.62/BlackBerryDynamics-11.1.0.62.podspec",
55
"description": "This is a BlackBerry Dynamics Base module for React Native that automatically integrates the BlackBerry Dynamics SDK for iOS and Android into a React Native application",
66
"main": "index.js",
77
"bin": {

modules/BlackBerry-Dynamics-for-React-Native-Base/scripts/BlackBerryDynamics.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
# Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ Pod::Spec.new do |spec|
2424
spec.description = <<-DESC
2525
Framework for building secure enterprise applications managed by BlackBerry Unified Endpoint Management (UEM).
2626
DESC
27-
spec.platform = :ios, '13.0'
27+
spec.platform = :ios, '15.0'
2828
spec.source = { :git => "", :tag => "#{spec.version}" }
2929
spec.requires_arc = true
3030
spec.swift_version = '5.0'

modules/BlackBerry-Dynamics-for-React-Native-Base/scripts/constants.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,10 +18,10 @@ const updatePodsCommand = '\t\tsystem("node ../node_modules/BlackBerry-Dynamics-
1818
'/scripts/updatePods.js")\n';
1919

2020
const podPlatformPatternVersion = /platform :ios, '([0-9\.]+)'/;
21-
const podPlatformVersion = 'platform :ios, \'14.0\'';
21+
const podPlatformVersion = 'platform :ios, \'15.0\'';
2222

2323
const bbdPodCommand = 'pod \'BlackBerryDynamics\', ' +
24-
':podspec => \'https://software.download.blackberry.com/repository/framework/dynamics/ios/11.0.1.137/BlackBerryDynamics-11.0.1.137.podspec\'\n';
24+
':podspec => \'https://software.download.blackberry.com/repository/framework/dynamics/ios/11.1.0.62/BlackBerryDynamics-11.1.0.62.podspec\'\n';
2525

2626
const bbdPodTemplate = /pod 'BlackBerryDynamics', (:podspec|:path) => '(.+)'/;
2727

modules/BlackBerry-Dynamics-for-React-Native-Base/scripts/react_native_info/development-tools-info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"framework": {
33
"name": "ReactNative",
4-
"bbdSdkForReactNativeVersion": "11.0.0.6",
4+
"bbdSdkForReactNativeVersion": "11.1.0.5",
55
"react-native": "",
66
"react": "",
77
"system": {

modules/BlackBerry-Dynamics-for-React-Native-Clipboard/android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ android {
2626
}
2727

2828
dependencies {
29-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
30-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
29+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
30+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
3131
implementation "com.facebook.react:react-native:+"
32-
}
32+
}

modules/BlackBerry-Dynamics-for-React-Native-FileSystem/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,8 +26,8 @@ android {
2626
}
2727

2828
dependencies {
29-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
30-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
29+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
30+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
3131
implementation project(path: ':BlackBerry-Dynamics-for-React-Native-Base')
3232
implementation project(path: ':BlackBerry-Dynamics-for-React-Native-Networking')
3333
implementation "com.facebook.react:react-native:+"

modules/BlackBerry-Dynamics-for-React-Native-Launcher/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -47,8 +47,8 @@ android {
4747
}
4848

4949
dependencies {
50-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
51-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
50+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
51+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
5252
implementation "com.facebook.react:react-native:+"
5353
implementation project(path: ':BlackBerry-Dynamics-for-React-Native-Base')
5454

modules/BlackBerry-Dynamics-for-React-Native-Networking/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2022 BlackBerry Limited. All Rights Reserved.
2+
* Copyright (c) 2023 BlackBerry Limited. All Rights Reserved.
33
*
44
 * Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,8 +33,8 @@ android {
3333
}
3434

3535
dependencies {
36-
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.0.1.140'
37-
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.0.1.140'
36+
implementation 'com.blackberry.blackberrydynamics:android_handheld_platform:11.1.0.62'
37+
implementation 'com.blackberry.blackberrydynamics:android_handheld_backup_support:11.1.0.62'
3838
implementation "com.facebook.react:react-native:+"
3939
implementation "com.squareup.okhttp3:okhttp:+"
4040
implementation "com.squareup.okio:okio:+"

0 commit comments

Comments
 (0)