...
Each Method is called through "Appoxee.methodName", since they are all public static methods.
Each call to the methods must be under AsyncTask. For example :
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
String result = getDeviceOsName();
//Do what is needed with the returned result...
return null;
}
}.execute(); |
Device Info API Methods
Table of Contents | ||||
---|---|---|---|---|
|
...