isAPK static method

bool isAPK(
  1. String filePath
)

文件是否是APK

Implementation

static bool isAPK(String filePath) {
  return filePath.toLowerCase().endsWith(".apk");
}