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 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'