Skip to content

Commit

Permalink
Merge pull request #206 from RodrigoSMarques/dev
Browse files Browse the repository at this point in the history
Release 6.5.0
  • Loading branch information
RodrigoSMarques authored Feb 17, 2023
2 parents e00a325 + 1c8f390 commit 8391d89
Show file tree
Hide file tree
Showing 12 changed files with 184 additions and 142 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.5.0
* Updated Native `iOS` SDK:
* iOS Native SDK Update 2.0.0 - [iOS Version History](https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/releases)

## 6.4.0
* Fix issue #193: `Flutter app won't get notified about the quick link event if the app is at foreground on Android devices`

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Branch.io helps mobile apps grow with deep links that power referral systems, sh
Supports Android, iOS and Web.

* Android - Branch SDK Version >= 5.2.+ [Android Version History](https://github.com/BranchMetrics/android-branch-deep-linking-attribution/releases)
* iOS - Branch SDK Version >= 1.45.+ [iOS Version History](https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/releases)
* iOS - Branch SDK Version >= 2.0.+ [iOS Version History](https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/releases)

Implemented functions in plugin:

Expand Down
93 changes: 46 additions & 47 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,46 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/

# Web related

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '11.0'
platform :ios, '11.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
12 changes: 6 additions & 6 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PODS:
- Branch (1.45.0)
- BranchSDK (2.0.0)
- Flutter (1.0.0)
- flutter_branch_sdk (6.4.0):
- Branch (~> 1.45.0)
- BranchSDK (~> 2.0.0)
- Flutter

DEPENDENCIES:
Expand All @@ -11,7 +11,7 @@ DEPENDENCIES:

SPEC REPOS:
trunk:
- Branch
- BranchSDK

EXTERNAL SOURCES:
Flutter:
Expand All @@ -20,10 +20,10 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/flutter_branch_sdk/ios"

SPEC CHECKSUMS:
Branch: ef0aa28182506c63a50618a0862f63a0f7b3fe9d
BranchSDK: dbecf9d1da931c2cf57393b233347b3587d11acb
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_branch_sdk: 71c67c3436adb82d62a817a906f6eaf52ec0e176
flutter_branch_sdk: 193591ad0c4938b925c9068aff19584236c3cf8f

PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
PODFILE CHECKSUM: 7368163408c647b7eb699d0d788ba6718e18fb8d

COCOAPODS: 1.11.3
12 changes: 4 additions & 8 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:async';
import 'dart:io';

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
Expand All @@ -9,10 +10,9 @@ import 'custom_button.dart';

void main() {
WidgetsFlutterBinding.ensureInitialized();
FlutterBranchSdk.setPreinstallCampaign('My Campaign Name');
FlutterBranchSdk.setPreinstallPartner('Branch \$3p Parameter Value');
FlutterBranchSdk.addFacebookPartnerParameter(
'em', '11234e56af071e9c79927651156bd7a10bca8ac34672aba121056e2698ee7088');
//FlutterBranchSdk.setPreinstallCampaign('My Campaign Name');
//FlutterBranchSdk.setPreinstallPartner('Branch \$3p Parameter Value');
//FlutterBranchSdk.addFacebookPartnerParameter('em', '11234e56af071e9c79927651156bd7a10bca8ac34672aba121056e2698ee7088');
//FlutterBranchSdk.clearPartnerParameters();

runApp(const MyApp());
Expand Down Expand Up @@ -224,14 +224,10 @@ class _HomePageState extends State<HomePage> {
return;
}

/*
FlutterBranchSdk.validateSDKIntegration();
if (Platform.isAndroid) {
showSnackBar(message: 'Check messages in run log or logcat');
}
*/
FlutterBranchSdk.handleDeepLink(
'https://flutterbranchsdk.test-app.link/sxz79EtAPub');
}

void enableTracking() {
Expand Down
Loading

1 comment on commit 8391d89

@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 sign in to comment.