From 1ddf2869a64feea4642a2e4becc6569d8cbbd296 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Tue, 6 Aug 2024 16:47:38 -0400 Subject: [PATCH 1/2] Yet another APKPure bugfix (last one) --- lib/app_sources/apkpure.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app_sources/apkpure.dart b/lib/app_sources/apkpure.dart index 3048aa97..3fe3237d 100644 --- a/lib/app_sources/apkpure.dart +++ b/lib/app_sources/apkpure.dart @@ -97,6 +97,7 @@ class APKPure extends AppSource { List architectures = architectureString .split(',') .map((e) => e.trim()) + .where((e) => e.isNotEmpty) .toList(); // Only take the first APK for each architecture, ignore others for now, for simplicity // Unclear why there can even be multiple APKs for the same version and arch From f963996a197e2f3cfd34fdf555a76e9ac36f1d58 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Tue, 6 Aug 2024 16:48:02 -0400 Subject: [PATCH 2/2] Version increment --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2b0074e5..cc9dd785 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.1.18+2275 +version: 1.1.19+2276 environment: sdk: '>=3.0.0 <4.0.0'