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
2 changes: 1 addition & 1 deletion src/serious_python/bin/package_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class PackageCommand extends Command {
stdout.writeln(
"Creating app archive at ${dest.path} from a temp directory");
final encoder = ZipFileEncoder();
encoder.zipDirectory(tempDir, filename: dest.path);
await encoder.zipDirectory(tempDir, filename: dest.path);

// create hash file
stdout.writeln("Writing app archive hash to ${dest.path}.hash");
Expand Down
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.3.0'
classpath 'com.android.tools.build:gradle:9.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
4 changes: 2 additions & 2 deletions src/serious_python/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies:
path: ../serious_python_linux

path_provider: ^2.1.3
archive: ^3.6.1
archive: ^4.0.7
path: ^1.9.0
args: ^2.5.0
toml: ^0.15.0
Expand All @@ -57,4 +57,4 @@ dev_dependencies:
flutter_test:
sdk: flutter
plugin_platform_interface: ^2.1.6
flutter_lints: ^2.0.0
flutter_lints: ^2.0.0
2 changes: 1 addition & 1 deletion src/serious_python_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

dependencies {
// The Android Gradle Plugin knows how to build native code with the NDK.
classpath 'com.android.tools.build:gradle:7.3.0'
classpath 'com.android.tools.build:gradle:9.1.0'
classpath 'de.undercouch:gradle-download-task:4.1.2'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/serious_python_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
sdk: flutter
plugin_platform_interface: ^2.1.8
path_provider: ^2.1.3
archive: ^3.6.1
archive: ^4.0.7
path: ^1.9.0

dev_dependencies:
Expand Down