What i did is select Product > Build then copy the .bundle file in the Products group to unity plugin folder, but it shows error “DLLNotFoundException:” when i run my app.
[DllImport("TestPlugin")]
private static extern int showNum();
void Start(){
Debug.Log(showNum());
}
Thx u