Xamarin iOS绑定项目

时间:2017-10-25 21:08:21

标签: xamarin xamarin.ios objective-sharpie

我有一个Xamarin.iOS应用程序,我想引用一个绑定项目,以便我可以在我的项目中使用.a文件。但是当我尝试构建时出现此错误:

  

链接器命令失败,退出代码为1(使用-v查看调用)   /Users/darius/Mobile-MyApp/Source/MyApp/MyApp.Touch/MTOUCH:错误MT5216:'/ Users/darius/Mobile-MyApp/Source/MyApp/MyApp.Touch/obj/iPhone/Debug/的原生链接失败设备建立/ iphone7.1-11.0.3 / mTouch触摸缓存/ arm64 / libAcrCloudSdkIosBinding.dll.dylib”。请在http://bugzilla.xamarin.com(MT5216)(Touchshop.Touch)

提交错误报告

我使用此命令行检查了.a文件支持的体系结构:

xcrun -sdk iphoneos lipo -info libACRCloud_IOS_SDK.a

并输出:

Architectures in the fat file: libACRCloud_IOS_SDK.a are: armv7 i386 x86_64 arm64

我将.a放在NativeReferences文件夹中。

这是我的ApiDefinition.cs

using System;

using UIKit;
using Foundation;
using ObjCRuntime;
using CoreGraphics;

namespace AcrCloudSdkIos
{
// typedef void (^ACRCloudResultBlock)(NSString *, ACRCloudResultType);
delegate void ACRCloudResultBlock(string arg0, ACRCloudResultType arg1);

// typedef void (^ACRCloudResultWithFpBlock)(NSString *, NSData *);
delegate void ACRCloudResultWithFpBlock(string arg0, NSData arg1);

// typedef void (^ACRCloudStateBlock)(NSString *);
delegate void ACRCloudStateBlock(string arg0);

// typedef void (^ACRCloudVolumeBlock)(float);
delegate void ACRCloudVolumeBlock(float arg0);

// @interface ACRCloudConfig : NSObject
[BaseType(typeof(NSObject))]
interface ACRCloudConfig
{
    // @property (retain, nonatomic) NSString * accessKey;
    [Export("accessKey", ArgumentSemantic.Retain)]
    string AccessKey { get; set; }

    // @property (retain, nonatomic) NSString * accessSecret;
    [Export("accessSecret", ArgumentSemantic.Retain)]
    string AccessSecret { get; set; }

    // @property (retain, nonatomic) NSString * host;
    [Export("host", ArgumentSemantic.Retain)]
    string Host { get; set; }

    // @property (retain, nonatomic) NSString * audioType;
    [Export("audioType", ArgumentSemantic.Retain)]
    string AudioType { get; set; }

    // @property (retain, nonatomic) NSString * homedir;
    [Export("homedir", ArgumentSemantic.Retain)]
    string Homedir { get; set; }

    // @property (retain, nonatomic) NSString * uuid;
    [Export("uuid", ArgumentSemantic.Retain)]
    string Uuid { get; set; }

    // @property (retain, nonatomic) NSString * protocol;
    [Export("protocol", ArgumentSemantic.Retain)]
    string Protocol { get; set; }

    // @property (retain, nonatomic) NSDictionary * params;
    [Export("params", ArgumentSemantic.Retain)]
    NSDictionary Params { get; set; }

    // @property (assign, nonatomic) ACRCloudRecMode recMode;
    [Export("recMode", ArgumentSemantic.Assign)]
    ACRCloudRecMode RecMode { get; set; }

    // @property (assign, nonatomic) NSInteger requestTimeout;
    [Export("requestTimeout")]
    nint RequestTimeout { get; set; }

    // @property (assign, nonatomic) NSInteger prerecorderTime;
    [Export("prerecorderTime")]
    nint PrerecorderTime { get; set; }

    // @property (assign, nonatomic) _Bool keepPlaying;
    [Export("keepPlaying")]
    bool KeepPlaying { get; set; }

    // @property (copy, nonatomic) ACRCloudResultBlock resultBlock;
    [Export("resultBlock", ArgumentSemantic.Copy)]
    ACRCloudResultBlock ResultBlock { get; set; }

    // @property (copy, nonatomic) ACRCloudStateBlock stateBlock;
    [Export("stateBlock", ArgumentSemantic.Copy)]
    ACRCloudStateBlock StateBlock { get; set; }

    // @property (copy, nonatomic) ACRCloudVolumeBlock volumeBlock;
    [Export("volumeBlock", ArgumentSemantic.Copy)]
    ACRCloudVolumeBlock VolumeBlock { get; set; }

    // @property (copy, nonatomic) ACRCloudResultWithFpBlock resultFpBlock;
    [Export("resultFpBlock", ArgumentSemantic.Copy)]
    ACRCloudResultWithFpBlock ResultFpBlock { get; set; }
}

// @interface ACRCloudRecognition : NSObject
[BaseType(typeof(NSObject))]
interface ACRCloudRecognition
{
    // -(id)initWithConfig:(ACRCloudConfig *)config;
    [Export("initWithConfig:")]
    IntPtr Constructor(ACRCloudConfig config);

    // -(void)startPreRecord:(NSInteger)recordTime;
    [Export("startPreRecord:")]
    void StartPreRecord(nint recordTime);

    // -(void)stopPreRecord;
    [Export("stopPreRecord")]
    void StopPreRecord();

    // -(void)startRecordRec;
    [Export("startRecordRec")]
    void StartRecordRec();

    // -(void)stopRecordRec;
    [Export("stopRecordRec")]
    void StopRecordRec();

    // -(void)stopRecordAndRec;
    [Export("stopRecordAndRec")]
    void StopRecordAndRec();

    // -(NSString *)recognize:(char *)buffer len:(int)len;
    [Export("recognize:len:")]
    unsafe string Recognize(NSObject buffer, int len);

    // -(NSString *)recognize:(NSData *)pcm_data;
    [Export("recognize:")]
    string Recognize(NSData pcm_data);

    // -(void)recognize_fp:(NSData *)fingerprint resultBlock:(ACRCloudResultBlock)resultBlock;
    [Export("recognize_fp:resultBlock:")]
    void Recognize_fp(NSData fingerprint, ACRCloudResultBlock resultBlock);

    // -(NSString *)recognize_fp:(NSData *)fingerprint;
    [Export("recognize_fp:")]
    string Recognize_fp(NSData fingerprint);

    // +(NSData *)get_fingerprint:(char *)pcm len:(int)len;
    [Static]
    [Export("get_fingerprint:len:")]
    unsafe NSData Get_fingerprint(NSObject pcm, int len);

    // +(NSData *)get_fingerprint:(NSData *)pcm;
    [Static]
    [Export("get_fingerprint:")]
    NSData Get_fingerprint(NSData pcm);

    // +(NSData *)get_fingerprint:(char *)pcm len:(unsigned int)len sampleRate:(unsigned int)sampleRate nChannel:(short)nChannel;
    [Static]
    [Export("get_fingerprint:len:sampleRate:nChannel:")]
    unsafe NSData Get_fingerprint(NSObject pcm, uint len, uint sampleRate, short nChannel);

    // +(NSData *)get_fingerprint:(NSData *)pcm sampleRate:(unsigned int)sampleRate nChannel:(short)nChannel;
    [Static]
    [Export("get_fingerprint:sampleRate:nChannel:")]
    NSData Get_fingerprint(NSData pcm, uint sampleRate, short nChannel);

    // +(NSData *)resample:(NSData *)pcm sampleRate:(unsigned int)sampleRate nChannel:(short)nChannel;
    [Static]
    [Export("resample:sampleRate:nChannel:")]
    NSData Resample(NSData pcm, uint sampleRate, short nChannel);

    // +(NSData *)resample:(char *)pcm len:(unsigned int)len sampleRate:(unsigned int)sampleRate nChannel:(short)nChannel;
    [Static]
    [Export("resample:len:sampleRate:nChannel:")]
    unsafe NSData Resample(NSObject pcm, uint len, uint sampleRate, short nChannel);

    // +(NSData *)resample_bit32:(char *)pcm len:(unsigned int)bytes sampleRate:(unsigned int)sampleRate nChannel:(short)nChannel isFloat:(_Bool)isFloat;
    [Static]
    [Export("resample_bit32:len:sampleRate:nChannel:isFloat:")]
    unsafe NSData Resample_bit32(NSObject pcm, uint bytes, uint sampleRate, short nChannel, bool isFloat);
}

}

Structs.cs

using System;

namespace AcrCloudSdkIosBinding
{
    public enum ACRCloudRecMode : uint
    {
        remote = 0,
        local = 1,
        both = 2,
        advance_remote = 3
    }

    public enum ACRCloudResultType
    {
        error = -1,
        none = 0,
        audio = 1,
        live = 2,
        audio_live = 3
    }

    public enum HTTPResumeType
    {
        error = -1,
        resume = 0,
        restart = 1,
        success = 2
    }
}

Here是它的来源,.a文件也可以在那里找到(libACRCloud_IOS_SDK.a)。 Here是它的cocoapod。

2 个答案:

答案 0 :(得分:2)

经过一周的黑客攻击,我找到了解决方案。我在Xcode中打开了本机项目(Swift)的源代码,发现它引用了libc++.tbd。所以我所要做的就是在Linker Flags中为Visual Studio中的引用-lc++库设置.a(右键单击库 - >属性 - > Linker Flags)。

此外,请确保您在图书馆所需的info.plist中提供适当的权限。在设置所需的权限之前,它会在没有出现任何错误的情况下崩溃。

Cole Xia引用的工具也值得关注,因为我必须在生成的ApiDefinition.cs中手动选择我需要的接口,因为它充满了我不需要的垃圾,并修复了也很少有东西。所以我给了他赏金点。我想这个工具对于这个库不起作用,因为引用了libc++.tbd

答案 1 :(得分:1)

尝试将Xcode和Sharpie更新到最新版本,然后重新创建绑定项目。

here可能会有所帮助。

更新

我尝试在official link之后使用Sharpie和cocoapods。

  • 当我尝试绑定着名的第三方库AFNetworking时,它会生成一个名为Binding的文件夹,在其中我们可以找到ApiDefinitions,{{1}和图书馆。

    StructsAndEnums

    enter image description here

  • 当我尝试绑定sharpie pod -d /Users/yourName/Desktop/FolderName init ios AFNetworking && sharpie pod -d /Users/yourName/Desktop/FolderName bind 时,它没有生成绑定文件夹。

    acrcloud

    enter image description here

所以我想sharpie pod -d /Users/yourName/Desktop/FolderName init ios acrcloud_ios_sdk && sharpie pod -d /Users/yourName/Desktop/FolderName bind sdk可能有问题。