setAppUid method

void setAppUid(
  1. String id
)

Implementation

void setAppUid(String id) {
  if (this._accountType < 0) {
    this._accountType = 2;
  }

  if (this._accountType != 2) {
    throw new Exception("your account may has be inited as device");
  } else {
    this._deviceID = id;
  }
}