Luke Hutchison

Results 97 issues of Luke Hutchison

### New Issue Checklist - [x] Updated fastlane to the latest version - [x] I read the [Contribution Guidelines](https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md) - [x] I read [docs.fastlane.tools](https://docs.fastlane.tools) - [x] I searched for [existing...

### Steps to reproduce Sometimes when I start my Flutter app, after it has been evicted, it gets stuck on the Android splash screen (Flutter is never started). Attaching a...

in triage

Hi, your Google Play and Android links return, for URL https://iconforest.flutterplay.com/download/android.php : ``` This site can’t provide a secure connectionicon forest.flutterplay.com sent an invalid response. ERR_SSL_PROTOCOL_ERROR ```

### Plugin package_info_plus ### Use case Right now the `packageInfo.buildSignature` method returns a SHA256 hex string (without colon byte delimiters). The Android ecosystem still extensively uses SHA1 hex strings (with...

enhancement
triage

For the following code: ```dart abstract class X { Future getNameOrNull( String database, String table, ); Future getName(String database, String table) async { final name = ( await getNameOrNull( database,...

type-enhancement
lint-request
P2

### Page URL https://docs.flutter.dev/deployment/cd ### Describe the problem I added `ci_post_clone.sh` (the script by @Diizzayy) to my Flutter project, and set up the Xcode cloud deployment workflow as shown in...

from.page-issue

- [x] I have updated Purchases SDK to the latest version - [x] I have read the [Contribution Guidelines](https://github.com/RevenueCat/purchases-ios/blob/main/Contributing/CONTRIBUTING.md) - [x] I have searched the [Community](https://community.revenuecat.com) - [x] I have...

bug

In my app, when the user purchases a product, the app is notified of the new entitlement, and then separately the server is notified of the new entitlement via the...

enhancement

Right now to display a price, you have to use `product.priceString`, followed by some custom string building to add a suffix from `product.subscriptionPeriod`, like `'/month'` or `'/3mo'`. However, this doesn't...

enhancement

**Describe the bug** ```dart final timestamp = '2024-07-02T08:07:50Z'; final a = DateTime.parse(timestamp); // a = DateTime (2024-07-02 08:07:50.000Z) final b = DateTime.parse(timestamp).toUtc(); // b = DateTime (2024-07-02 08:07:50.000Z) final c...