GithubHelp home page GithubHelp logo

Comments (5)

meelelijan avatar meelelijan commented on July 30, 2024

Hi,

I think this is a similar issue, put the plugin esys_flutter_share: ^0.0.6 on pubspec.yaml, when I run pod install this error pops up.

[!] Unable to determine Swift version for the following pods:
esys_flutter_share does not specify a Swift version and none of the targets (Runner) integrating it have the SWIFT_VERSION attribute set. Please contact the author or set the SWIFT_VERSION attribute in at least one of the targets that integrate this pod.

from esys-flutter-share.

xellDart avatar xellDart commented on July 30, 2024

some here

from esys-flutter-share.

raulmabe avatar raulmabe commented on July 30, 2024

I get this one with v0.0.7:

Launching lib/main.dart on iPhone XS Max in debug mode...
Starting Xcode build...
Xcode build done.                                            1,8s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **


Xcode's output:
↳
    === BUILD TARGET url_launcher OF PROJECT Pods WITH CONFIGURATION Debug ===
    /Users/raulmateobeneyto/flutter/.pub-cache/hosted/pub.dartlang.org/esys_flutter_share-0.0.7/ios/Classes/Esys
    FlutterSharePlugin.m:2:9: fatal error: 'esys_flutter_share/esys_flutter_share-Swift.h' file not found
    #import <esys_flutter_share/esys_flutter_share-Swift.h>
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1 error generated.

Could not build the application for the simulator.
Error launching application on iPhone XS Max.

I need to solve this bug, if anyone could help! Much appreciated

from esys-flutter-share.

xellDart avatar xellDart commented on July 30, 2024

Hi, I developed custom plugin with some bases, for the moment only can share Images, but works with IOS and Android
https://github.com/xperiafan13-rom/ShareImage-Flutter

Example
Future writeToFile(ByteData data, String path) async {
final Uint8List list = data.buffer.asUint8List();
final file = await new File(path).create();
await file.writeAsBytes(list);
}

share() async {
getImage().then((onValue) async {
ByteData data = onValue.buffer.asByteData();
final tempDir = await getTemporaryDirectory();
String path = '${tempDir.path}/qr.jpg';
writeToFile(data, path).then((value) {
Share.image(
path: 'qr.jpg',//path,
mimeType: ShareType.TYPE_IMAGE,
title: 'IDLegal',
text: 'IDLegal').share();
});

});

}

from esys-flutter-share.

d-wolf avatar d-wolf commented on July 30, 2024

I guess it's the same issue as described here. The iOS part of the plugin is developed in swift. So if you create a new flutter project, the iOS part of your flutter app must be in swift aswell. Probably you have chosen the standard objective-c implementation. The plugin is incompatible to an objective-c app.

from esys-flutter-share.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.