Skip to content

Commit 0dd8c1e

Browse files
authored
merge (#1)
* Update pubspec.yaml * add try ... catch statement * update gradle version * update package`archive` * fix await method
1 parent 9b96ad2 commit 0dd8c1e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ class PackageCommand extends Command {
433433
stdout.writeln(
434434
"Creating app archive at ${dest.path} from a temp directory");
435435
final encoder = ZipFileEncoder();
436-
encoder.zipDirectory(tempDir, filename: dest.path);
436+
await encoder.zipDirectory(tempDir, filename: dest.path);
437437

438438
// create hash file
439439
stdout.writeln("Writing app archive hash to ${dest.path}.hash");

src/serious_python/example/flask_example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.3.0'
9+
classpath 'com.android.tools.build:gradle:9.1.0'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

src/serious_python/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies:
4444
path: ../serious_python_linux
4545

4646
path_provider: ^2.1.3
47-
archive: ^4.0.2
47+
archive: ^4.0.7
4848
path: ^1.9.0
4949
args: ^2.5.0
5050
toml: ^0.15.0

src/serious_python_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
dependencies {
1313
// The Android Gradle Plugin knows how to build native code with the NDK.
14-
classpath 'com.android.tools.build:gradle:7.3.0'
14+
classpath 'com.android.tools.build:gradle:9.1.0'
1515
classpath 'de.undercouch:gradle-download-task:4.1.2'
1616
}
1717
}

src/serious_python_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414
plugin_platform_interface: ^2.1.8
1515
path_provider: ^2.1.3
16-
archive: ^4.0.2
16+
archive: ^4.0.7
1717
path: ^1.9.0
1818

1919
dev_dependencies:

0 commit comments

Comments
 (0)