arp_scanner 1.2.7 copy "arp_scanner: ^1.2.7" to clipboard
arp_scanner: ^1.2.7 copied to clipboard

PlatformAndroid

A new flutter plugin project.

arp_scanner #

A Flutter plugin for discovers devices on local network. It return IP v4 address, Mac Address,Interface Vendor and host name.

Limit #

  • Plugin only support Android Sdk Version 29
  • The hostname resolve only work in 2.4G Wifi, otherwise return null

Usage #

To use this plugin, add arp_scanner as a dependency in your pubspec.yaml file.

build.gradle for App #

Change compileSdkVersion of build.gradle build script to 29.

android {
    ....
    compileSdkVersion 29
    ....
}
copied to clipboard

build.gradle for project #

Change kotlin version of build.gradle build script to 1.5.30 or newer.

buildscript {
  ...
  ext.kotlin_version = '1.5.30'
  ...
}
copied to clipboard

Example #

The example You can find here.

Update Mac vendor database #

Clone repo to local. Then

 go mod tidy 
 go run createMacVendorDB.go
copied to clipboard

Add local repo as your project dependency after Mac vendor database is updated.

Fix Duplicate class com.google.gson #

android {
  configurations {
    all {
      exclude module:'gson'
    }
  }
}
copied to clipboard
5
likes
140
points
63
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.22 - 2025.04.06

A new flutter plugin project.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on arp_scanner