simnumber 0.0.12 copy "simnumber: ^0.0.12" to clipboard
simnumber: ^0.0.12 copied to clipboard

A plugin for get SIM Details from Android Device.

SimNumber plugin for Flutter #

A Flutter plugin to retrieve Sim cards data - dual sim support.

Note: It works for Android only because getting mobile number of sim card is not supported in iOS.

Note: If the mobile number is not pre-exist on sim card it will return sim slot index and operator name.

Installation #

Add simnumber as a dependency in your pubspec.yaml.

Make sure that your AndroidManifext.xml file includes the following permission:

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />

Usage #

Before you use this plugin, you must make sure that the user has authorized access to his phone, for example with the permission_handler plugin.

You may then use the plugin:

import 'package:simnumber/sim_number.dart';

void printSimCardsData() async {
  try {
    SimInfo simInfo = await SimNumber.getSimData();
    for (var s in simInfo.cards) {
      print('Serial number: ${s.slotIndex} ${s.phoneNumber}');
    }
  } on Exception catch (e) {
    debugPrint("error! code: ${e.code} - message: ${e.message}");
  }
}

void main() => printSimCardsData();
18
likes
120
pub points
86%
popularity

Publisher

verified publisherharshmaheshwari88.blogspot.com

A plugin for get SIM Details from Android Device.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on simnumber