Skip to content

Commit 2ba9a34

Browse files
committed
fix: conflicts
2 parents a682a06 + dac0b0b commit 2ba9a34

File tree

80 files changed

+8025
-2786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+8025
-2786
lines changed

packages/firebase_crashlytics/firebase_crashlytics/ios/crashlytics_add_upload_symbols

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,14 @@ end
3535
# Path to the Xcode project to modify
3636
project_path = File.join(options_dict[:project_dir], options_dict[:project_name])
3737

38-
unless (File.exist?(project_path))
38+
unless (File.exist?(project_path))
3939
abort("Project at #{project_path} does not exist. Please check paths or incorporate Crashlytics upload symbols manually.\n");
4040
end
4141

4242
# If this is a Flutter project, upload-symbols will use the firebase_app_id_file.json to get the app's ID. If this file doesn't exist, upload-symbols may not be
43-
# able to upload symbols correctly.
43+
# able to upload symbols correctly.
4444
if(options_dict[:flutter_project])
4545
unless File.exist?("#{options_dict[:project_dir]}/firebase_app_id_file.json")
46-
puts("Warning: firebase_app_id_file.json file does not exist. This may cause issues in upload-symbols. If this error is unexpected, try running flutterfire configure again.")
4746
exit(0)
4847
end
4948
end
@@ -57,9 +56,9 @@ end
5756
# Actually open and modify the project
5857
project = Xcodeproj::Project.open(project_path)
5958
project.targets.each do |target|
60-
if (target.name == "Runner")
59+
if (target.name == "Runner")
6160
# We need to make sure that we're not adding more than one run script to upload-symbols (or overwriting custom upload-symbols scripts).
62-
target.shell_script_build_phases().each { |phase|
61+
target.shell_script_build_phases().each { |phase|
6362
if (phase.shell_script.include? "FirebaseCrashlytics/upload-symbols")
6463
puts("Run script to upload symbols already exists.")
6564
exit(0)

packages/firebase_data_connect/firebase_data_connect/example/android/app/local-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ ext {
33
minSdk=23
44
targetSdk=34
55
javaVersion = JavaVersion.toVersion(17)
6-
androidGradlePluginVersion = '8.3.0'
6+
androidGradlePluginVersion = '8.6.0'
77
}

packages/firebase_data_connect/firebase_data_connect/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222
// START: FlutterFire Configuration
2323
id "com.google.gms.google-services" version "4.3.15" apply false
2424
// END: FlutterFire Configuration
25-
id "org.jetbrains.kotlin.android" version "1.9.22" apply false
25+
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2626
}
2727

2828
include ":app"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Copyright 2025 The Chromium Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# in the LICENSE file.
4+
5+
include: ../../analysis_options.yaml
6+
7+
analyzer:
8+
exclude:
9+
- firebase_database_platform_interface/lib/src/pigeon/messages.pigeon.dart
10+
- firebase_database_platform_interface/test/pigeon/test_api.dart
11+
- firebase_database_platform_interface/pigeons/messages.dart

packages/firebase_database/firebase_database/android/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ group 'io.flutter.plugins.firebase.database'
22
version '1.0-SNAPSHOT'
33

44
apply plugin: 'com.android.library'
5+
apply plugin: 'kotlin-android'
56
apply from: file("local-config.gradle")
67

78
buildscript {
@@ -49,6 +50,18 @@ android {
4950
targetCompatibility project.ext.javaVersion
5051
}
5152

53+
kotlinOptions {
54+
jvmTarget = project.ext.javaVersion
55+
}
56+
57+
sourceSets {
58+
main {
59+
java {
60+
srcDirs = ['src/main/kotlin']
61+
}
62+
}
63+
}
64+
5265
buildFeatures {
5366
buildConfig = true
5467
}

packages/firebase_database/firebase_database/android/local-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ ext {
33
minSdk=23
44
targetSdk=34
55
javaVersion = JavaVersion.toVersion(17)
6-
androidGradlePluginVersion = '8.3.0'
6+
androidGradlePluginVersion = '8.6.0'
77
}

packages/firebase_database/firebase_database/android/src/main/java/io/flutter/plugins/firebase/database/ChildEventsProxy.java

Lines changed: 0 additions & 47 deletions
This file was deleted.

packages/firebase_database/firebase_database/android/src/main/java/io/flutter/plugins/firebase/database/Constants.java

Lines changed: 0 additions & 60 deletions
This file was deleted.

packages/firebase_database/firebase_database/android/src/main/java/io/flutter/plugins/firebase/database/EventStreamHandler.java

Lines changed: 0 additions & 61 deletions
This file was deleted.

packages/firebase_database/firebase_database/android/src/main/java/io/flutter/plugins/firebase/database/EventsProxy.java

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)