getOAID static method

Future<String?> getOAID()

安卓的OAID

Implementation

static Future<String?> getOAID() async {
  // OAID lookup has been removed from this package to avoid unresolved
  // binary dependencies (see pubspec).  Return cached value or empty string.
  var oaid = AppStorage.oaid;
  if (oaid.isNotEmpty) {
    return oaid;
  }
  // no external plugin available; leave blank
  return '';
}