Skip to content

Commit

Permalink
Upgrade to agb 8
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Oct 21, 2023
1 parent 2dc1267 commit 24c21e9
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
4 changes: 2 additions & 2 deletions app/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionSha256Sum=6147605a23b4eff6c334927a86ff3508cb5d6722cd624c97ded4c2e8640f1f87
distributionSha256Sum=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae
2 changes: 1 addition & 1 deletion app/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pluginManagement {

plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.3.0" apply false
id "com.android.application" version '8.1.2' apply false
}

include ":app"
6 changes: 3 additions & 3 deletions app/lib/pages/calendar/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ class _CalendarBodyViewState extends State<CalendarBodyView> {

@override
Widget build(BuildContext context) {
return BlocBuilder<FlowCubit, FlowState>(builder: (context, state) {
return _getView();
});
return BlocBuilder<FlowCubit, FlowState>(
builder: (context, state) => _getView(),
);
}

void _onFilterChanged(value) {
Expand Down
1 change: 0 additions & 1 deletion app/lib/setup_io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Future<void> setup(
await windowManager.ensureInitialized();

final windowOptions = WindowOptions(
size: const Size(800, 600),
minimumSize: const Size(420, 300),
titleBarStyle: settingsCubit.state.nativeTitleBar
? TitleBarStyle.normal
Expand Down
2 changes: 1 addition & 1 deletion app/linux/rpm/linwood-flow.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Exec=/usr/bin/linwood-flow %f
Icon=/usr/share/linwood-flow/data/flutter_assets/images/logo.svg
Terminal=false
Type=Application
Categories=Productivity;
Categories=Office;Calendar;
3 changes: 2 additions & 1 deletion fastlane/metadata/android/en-US/changelogs/6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
* Fix file name in start.sh
* Add executable permission on linux
* Fix start.sh
* Upgrade to flutter 3.16
* Upgrade to flutter 3.16
* Upgrade to agb 8

0 comments on commit 24c21e9

Please sign in to comment.