isAPK static method

bool isAPK(
  1. String s
)

Checks if string is an APK file. 检查字符串是否为apk文件

Implementation

static bool isAPK(String s) => RegexUtils.hasMatch(s, RegexConstants.apk);