Java Binding Library native Thumbnailator Lib Xamarin Android

岁酱吖の 提交于 2019-12-11 17:37:39

问题


i'm trying to add into my project this lib.
So i've added Java Binding Library to my Xamarin.Android project and after compile,i've got some problems.

Tried to resolve by my self and didn't get a luck.
So i removed packages,via remove-node that i wont to use and all complies fine,but i have strange behaviour.

Class,that i want to use is empty(that how is he showed on assembly browser):

using Android.Runtime;
using Java.Lang;
using System;

namespace Net.Coobird.Thumbnailator.Util.Exif
{
    [Register("net/coobird/thumbnailator/util/exif/ExifUtils", DoNotGenerateAcw = true)]
    public sealed class ExifUtils : Object
    {
        //
        // Constructors
        //
        internal ExifUtils(IntPtr javaReference, JniHandleOwnership transfer);
    }
}

And the original(source .java version) is looks like this.
Why this happens? It unusable.
Thanks!

来源:https://stackoverflow.com/questions/33801057/java-binding-library-native-thumbnailator-lib-xamarin-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!