1.5.9 • Published 3 years ago

@leandrosq/apk-classifier v1.5.9

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

APK Classifier

Detect the platform of which an APK file was build on top.

Example Example of an .apk file built using Ionic

Platforms supported

PlatformSupportedPresented as
Android nativeSupportedNative
React nativeSupportedReact native
FlutterSupportedFlutter
CordovaSupportedCordova
IonicSupportedCordova-like
PhonegapSupportedCordova-like
Framework7SupportedCordova-like

Usage

Using npx

  • Run the script
    • For a single file: npx @leandrosq/apk-classifier -f <FILE_PATH.apk>
    • For multiple files: npx @leandrosq/apk-classifier -d <DIRECTORY_PATH>

Running by the source

  • Clone the repository
  • Run npm install for installing the dependencies
  • Run the script
    • For a single file: node src/main.js -f <FILE_PATH.apk> or npm start -- -f <FILE_PATH.apk>
    • For multiple files (Directory): node src/main.js -d <DIRECTORY_PATH> or npm start -- -d <DIRECTORY_PATH>