Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions example/flutter_example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ linter:
always_put_control_body_on_new_line: true
curly_braces_in_flow_control_structures: true

analyzer:
errors:
deprecated_member_use: ignore
# See lint rules here https://dart.dev/tools/linter-rules#lints
6 changes: 2 additions & 4 deletions example/flutter_example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,23 +72,21 @@ flutter {
source '../..'
}

ext.mindbox_version = "2.13.0"

dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
//https://developers.mindbox.ru/docs/firebase-send-push-notifications-flutter
implementation "cloud.mindbox:mobile-sdk:$mindbox_version"
implementation "cloud.mindbox:mindbox-firebase"
implementation platform('com.google.firebase:firebase-bom:32.8.1')
implementation 'com.google.firebase:firebase-messaging:23.4.1'
//https://developers.mindbox.ru/docs/huawei-send-push-notifications-flutter
implementation 'cloud.mindbox:mindbox-huawei'
implementation 'com.huawei.hms:push:6.11.0.300'
implementation 'com.google.code.gson:gson:2.8.8'

implementation 'cloud.mindbox:mindbox-rustore'
implementation 'ru.rustore.sdk:pushclient:6.5.1'

implementation 'com.google.code.gson:gson:2.8.8'

implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1"
}
Binary file not shown.
6 changes: 3 additions & 3 deletions example/flutter_example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ target 'Runner' do
use_frameworks!
use_modular_headers!
# add this pod if doesn't use MindboxFlutterAppDelegate
pod 'Mindbox', '2.11.0'
pod 'Mindbox'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
# target 'RunnerTests' do
# inherit! :search_paths
Expand All @@ -42,12 +42,12 @@ end

target 'MindboxNotificationServiceExtension' do
use_frameworks!
pod 'MindboxNotifications', '2.11.0'
pod 'MindboxNotifications'
end

target 'MindboxNotificationContentExtension' do
use_frameworks!
pod 'MindboxNotifications', '2.11.0'
pod 'MindboxNotifications'
end

post_install do |installer|
Expand Down
Loading
Loading