...
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) {
// TODO Auto-generated method stub
String result = getDeviceOsName();
return null;
}
}.execute(); |
Device Info API Methods
Table of Contents | ||||
---|---|---|---|---|
|
...