Skip to content

Commit 371d105

Browse files
committed
chore: made it somehow build again...
1 parent 717c00d commit 371d105

41 files changed

Lines changed: 694 additions & 367 deletions

Some content is hidden

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

.flutter

Submodule .flutter updated 6427 files

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (flutterVersionName == null) {
2323
}
2424

2525
android {
26-
compileSdkVersion 35
26+
compileSdkVersion 36
2727

2828
namespace "org.brightdv.boxbox"
2929

@@ -48,7 +48,7 @@ android {
4848
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4949
applicationId "org.brightdv.boxbox"
5050
minSdkVersion 24
51-
targetSdkVersion 31
51+
targetSdkVersion 36
5252
versionCode flutterVersionCode.toInteger()
5353
versionName flutterVersionName
5454
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ public final class GeneratedPluginRegistrant {
1616
private static final String TAG = "GeneratedPluginRegistrant";
1717
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
1818
try {
19-
flutterEngine.getPlugins().add(new com.javih.add_2_calendar.Add2CalendarPlugin());
19+
flutterEngine.getPlugins().add(new com.javih.add_2_calendar_new.Add2CalendarPlugin());
2020
} catch (Exception e) {
21-
Log.e(TAG, "Error registering plugin add_2_calendar, com.javih.add_2_calendar.Add2CalendarPlugin", e);
21+
Log.e(TAG, "Error registering plugin add_2_calendar_new, com.javih.add_2_calendar_new.Add2CalendarPlugin", e);
2222
}
2323
try {
2424
flutterEngine.getPlugins().add(new me.carda.awesome_notifications.AwesomeNotificationsPlugin());

android/gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
org.gradle.jvmargs=-Xmx1536M
2-
android.enableR8=true
1+
org.gradle.jvmargs=-Xmx4G
32
android.useAndroidX=true
43
android.enableJetifier=true

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip

android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "8.1.0" apply false
22-
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
21+
id "com.android.application" version "8.13.0" apply false
22+
id "org.jetbrains.kotlin.android" version "2.2.10" apply false
2323
}
2424

2525
include ":app"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#
2+
# Generated file, do not edit.
3+
#
4+
5+
import lldb
6+
7+
def handle_new_rx_page(frame: lldb.SBFrame, bp_loc, extra_args, intern_dict):
8+
"""Intercept NOTIFY_DEBUGGER_ABOUT_RX_PAGES and touch the pages."""
9+
base = frame.register["x0"].GetValueAsAddress()
10+
page_len = frame.register["x1"].GetValueAsUnsigned()
11+
12+
# Note: NOTIFY_DEBUGGER_ABOUT_RX_PAGES will check contents of the
13+
# first page to see if handled it correctly. This makes diagnosing
14+
# misconfiguration (e.g. missing breakpoint) easier.
15+
data = bytearray(page_len)
16+
data[0:8] = b'IHELPED!'
17+
18+
error = lldb.SBError()
19+
frame.GetThread().GetProcess().WriteMemory(base, data, error)
20+
if not error.Success():
21+
print(f'Failed to write into {base}[+{page_len}]', error)
22+
return
23+
24+
def __lldb_init_module(debugger: lldb.SBDebugger, _):
25+
target = debugger.GetDummyTarget()
26+
# Caveat: must use BreakpointCreateByRegEx here and not
27+
# BreakpointCreateByName. For some reasons callback function does not
28+
# get carried over from dummy target for the later.
29+
bp = target.BreakpointCreateByRegex("^NOTIFY_DEBUGGER_ABOUT_RX_PAGES$")
30+
bp.SetScriptCallbackFunction('{}.handle_new_rx_page'.format(__name__))
31+
bp.SetAutoContinue(True)
32+
print("-- LLDB integration loaded --")
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#
2+
# Generated file, do not edit.
3+
#
4+
5+
command script import --relative-to-command-file flutter_lldb_helper.py

ios/Runner/GeneratedPluginRegistrant.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
#import "GeneratedPluginRegistrant.h"
88

9-
#if __has_include(<add_2_calendar/Add2CalendarPlugin.h>)
10-
#import <add_2_calendar/Add2CalendarPlugin.h>
9+
#if __has_include(<add_2_calendar_new/Add2CalendarPlugin.h>)
10+
#import <add_2_calendar_new/Add2CalendarPlugin.h>
1111
#else
12-
@import add_2_calendar;
12+
@import add_2_calendar_new;
1313
#endif
1414

1515
#if __has_include(<awesome_notifications/AwesomeNotificationsPlugin.h>)

lib/Screens/race_details.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Copyright (c) 2022-2025, BrightDV
1818
*/
1919

20-
import 'package:add_2_calendar/add_2_calendar.dart' as a2c;
20+
import 'package:add_2_calendar_new/add_2_calendar_new.dart' as a2c;
2121
import 'package:boxbox/classes/driver.dart';
2222
import 'package:boxbox/classes/race.dart';
2323
import 'package:boxbox/helpers/divider.dart';

0 commit comments

Comments
 (0)