-
Notifications
You must be signed in to change notification settings - Fork 414
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
Added support for android view intent action #160
Conversation
@@ -717,7 +755,7 @@ | |||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; | |||
CODE_SIGN_IDENTITY = "iPhone Developer"; | |||
CURRENT_PROJECT_VERSION = 1; | |||
DEVELOPMENT_TEAM = ""; | |||
DEVELOPMENT_TEAM = BN2V9FW285; |
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.
I think this is set to "" on purpose ;-) I suggest leaving it out.
DEVELOPMENT_TEAM = BN2V9FW285; | |
DEVELOPMENT_TEAM = ""; |
@@ -596,7 +634,7 @@ | |||
MARKETING_VERSION = 1.0.0; | |||
MTL_FAST_MATH = YES; | |||
OTHER_LDFLAGS = ""; | |||
PRODUCT_BUNDLE_IDENTIFIER = "com.kasem.sharing.Sharing-Extension"; | |||
PRODUCT_BUNDLE_IDENTIFIER = "com.odamsoft.sharing.Sharing-Extension"; |
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.
Keep it like com.kasem....
PRODUCT_BUNDLE_IDENTIFIER = "com.odamsoft.sharing.Sharing-Extension"; | |
PRODUCT_BUNDLE_IDENTIFIER = "com.kasem.sharing.Sharing-Extension"; |
I added some representative change request, but there is more of your personal ids that need to be reverted ;-) |
intent.action.VIEW is handled in package as url type. When user try open a file, android system send the uri of this file to intent. if you need open file with dart:io functions like readAdBytes or readAsString, you should convert the Uri to full path. You can do this with uri_to_file package. So, you can handle action.VIEW with this code in flutter side:
|
No description provided.