-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: build error on flutter 3.24.0 #39
base: master
Are you sure you want to change the base?
Conversation
|
||
defaultConfig { | ||
minSdkVersion 16 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did the minSdkVersion
need to be changed? I think it should work leaving it at 16
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bigbenyayi
There were some remnants from when I was conducting operation tests.
I'll revert them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for creating this PR
55131ea
to
4949ccd
Compare
Hey team!! Any update on this |
Hi also same issue |
Any plans to merge this soon? Thanks in advance. |
Hi @bigbenyayi |
I sadly do not have the rights to merge on this project |
I can't merge this PR because I don't have write access to this repository |
I see, thanks anyways. We ended up using URL launcher plugin for those who are interested in. canLaunchUrl(Uri.parse('spotify://')).then((bool result) {
if (result == true) {
launchUrl(Uri.parse('spotify://'),
mode: LaunchMode.externalApplication);
} else {
if (Platform.isAndroid) {
String appPackageName = 'com.spotify.music';
launchUrl(Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName));
}
if (Platform.isIOS) {
launchUrl(Uri.parse('itms-apps://itunes.apple.com/us/app/spotify-music-and-podcasts/id324684580'));
}
}
}); |
Fix the following error that occurs when compiling for an Android build on Flutter 3.24.0