Skip to content

Commit

Permalink
Merge pull request #343 from RodrigoSMarques/dev
Browse files Browse the repository at this point in the history
Release 8.0.3
  • Loading branch information
RodrigoSMarques authored Jun 27, 2024
2 parents 10d483a + 2ed703a commit 8a7ef32
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 8.0.3
### ⚠️ BREAKING CHANGE
This is a major release which contains breaking API changes.
#### ⚠️ SDK Initialization Changed
* `useTestKey` parameter is no longer supported at `FlutterBranchSdk.init()`.

Check the instructions in `README.MD` on how to activate the `key_test_`.

### 🐛 Bug Fixes
* Fix issue #340: Logging not working in Android Studio Emulator

## 8.0.2
### ⚠️ BREAKING CHANGE
This is a major release which contains breaking API changes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import io.branch.indexing.BranchUniversalObject;
import io.branch.referral.Branch;
import io.branch.referral.BranchError;
import io.branch.referral.BranchLogger;
import io.branch.referral.QRCode.BranchQRCode;
import io.branch.referral.ServerRequestGetLATD;
import io.branch.referral.util.BranchEvent;
Expand Down Expand Up @@ -389,7 +390,7 @@ private void setupBranch(MethodCall call, final Result result) {
HashMap<String, Object> argsMap = (HashMap<String, Object>) call.arguments;

if ((Boolean) argsMap.get("enableLogging")) {
Branch.enableLogging();
Branch.enableLogging(BranchLogger.BranchLogLevel.VERBOSE);
} else {
Branch.disableLogging();
}
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- BranchSDK (3.4.3)
- Flutter (1.0.0)
- flutter_branch_sdk (8.0.0-beta.0):
- flutter_branch_sdk (8.0.2):
- BranchSDK (~> 3.4.3)
- Flutter

Expand All @@ -22,7 +22,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
BranchSDK: 078e92df232a7cc0a8d900287d1e57057a2e2997
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
flutter_branch_sdk: 76e2267c772a75db0c97841233494ee9f79db978
flutter_branch_sdk: 77488aedfda2ec7a4dc65f2c71a98412a7443a2c

PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048

Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ packages:
dependency: "direct dev"
description:
name: flutter_lints
sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
url: "https://pub.dev"
source: hosted
version: "3.0.1"
version: "3.0.2"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SwiftFlutterBranchSdkPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public class SwiftFlutterBranchSdkPlugin: NSObject, FlutterPlugin, FlutterStream


if args["enableLogging"] as! Bool == true {
Branch.enableLogging()
Branch.enableLogging(at: BranchLogLevel.debug)
}

if (!requestMetadata.isEmpty) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_branch_sdk
description: Flutter Plugin for create deep link using Brach SDK (https://branch.io). This plugin provides a cross-platform (iOS, Android, Web).
version: 8.0.2
version: 8.0.3
homepage: https://github.com/RodrigoSMarques/flutter_branch_sdk

environment:
Expand Down

1 comment on commit 8a7ef32

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please # to comment.