Brian Hawkins

Results 9 comments of Brian Hawkins

Ok I have a solution for this, We have text with HTML, but also want the Linkify to work as well. I will open a PR soon for you. The...

Basically update addLinks to this ` private static void addLinks(int linkifyMask, BetterLinkMovementMethod movementMethod, TextView textView) { textView.setMovementMethod(movementMethod); URLSpan[] htmlUrlSpans = null; if(textView.getText() instanceof SpannableString){ htmlUrlSpans = ((SpannableString)textView.getText()).getSpans(0, textView.getText().length(), URLSpan.class); }...

Any possibility it's related to what was stated here? https://github.com/flutter/flutter/issues/103630#issuecomment-1193013914

I can confirm this crash is still happening on 3.3.0 stable, while the UX issues are now solved pressing back from the map causes the app to crash a few...

I think it could be related to this bug a bit. https://github.com/aws-amplify/aws-sdk-android/issues/1377 I switched out Amplify to AWSMobileClient call and it appears the mobile client is throwing the state exception....

It may be better to use something from okhttp like MimeUtils, the MimeTypeMap is not as exhaustive.

Yeah this seems to be related to the model builder, @include will work just fine if the Schema says field could be nullable, but if it's something that reports back...

I think you are seeing the same issue I am seeing and reported here as well. I actually have had a support ticket open since the release of 3.0 to...

Do we have to have the following line? artifactoryPublish.dependsOn('build') Problem I have with this is the fact that this now build debug, release, all of my build flavors runs lint...