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
collapsetrue
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
maxLevel2
minLevel2

...