Hi Guys ,
Recently i've developed a service that transfers data over bluetooth on android and an android plugin that receives the intents from the service so i can extract data from them in unity.
i have created Plugins/Android folders inside Assets folder in unity which i have placed the jar file with the AndroidManifest. The problem is that whenever i try to reach the class inside the plugin and try to get a static string using GetStatic it gives me this error:
Exception: Field text or type signature not found
this is the part of C# code where i try to connect to the plugin class :
AndroidJavaObject jc=new AndroidJavaObject("com.game.receiverUnity.Receiver");
jc.CallStatic("createInstance");
javaMessage = jc.GetStatic<string>("text");