Use dll files in android Application

后端 未结 4 972
一生所求
一生所求 2020-11-29 12:22

Can I use dll files (commonly used in windows Application) in Android application?

4条回答
  •  天命终不由人
    2020-11-29 12:56

    DLL stands for "Dynamic Link Library" and is a Windows concept. The equivalent in linux is SO (Shared Object).

    You can refer to this article in CodeProject for similarities and differences between the two.

    This Stackoverflow question is pretty similar.

提交回复
热议问题