Skip to content

Commit 132ca43

Browse files
committed
update gradle version
1 parent 0b5905c commit 132ca43

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ class PackageCommand extends Command {
487487
for (var entity in directory.listSync()) {
488488
if (globs.any((g) => g.matches(entity.path.replaceAll("\\", "/"))) &&
489489
await entity.exists()) {
490-
try {verbose("Deleting ${entity.path}");} catch (e) {}
490+
verbose("Deleting ${entity.path}");
491491
await entity.delete(recursive: true);
492492
} else if (entity is Directory) {
493493
if (await cleanupDirRecursive(entity, globs)) {

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_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
}

0 commit comments

Comments
 (0)