Android Activity access Unity Classes
- by Anomaly
I have made my own C# classes in Unity, is there any way I can access these classes from the Android Activity that starts the UnityPlayer?
Example: I have a C# class called testClass in Unity:
class testClass{
public static string myString="test string";
}
From the Android activity in Java I want to access that class:
string…