Name | Description |
---|---|
className | Specifies the Java class name (e.g. "java.lang.String" or "java/lang/String"). |
Construct an AndroidJavaClass from the class name.
This essentially means locate the class type and allocate a java.lang.Class object of that particular type.
// Try to collect som Java garbage..
function Start() {
var jc = new AndroidJavaClass("java.lang.System");
jc.CallStatic("gc");
}
// Retrieve the manufacturer of the product/hardware.
function Start() {
var jc = new AndroidJavaClass("android.os.Build");
var manufacturer = jc.Get.<string>("MANUFACTURER");
}