Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagejava
firstline1
titleCode Sample
linenumberstrue
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
maxLevel2
minLevel2

...