jfullinfo

JFullInfo: Just An Amazing Full Hardware, System, Sim & Application Information Plugin For Android Devices.

Features

  • Get Full Device Information
  • Get Full Android Information
  • Get Full SIM Card Information
  • Get Full Application Information
  • Get All Information

Usage

To Use jfullinfo

First: To Use getSimInformation Method Add to AndroidManifest.xml this Permission:

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

Simple Usage

final _jFullInfo = JFullInfo();

Get Hardware Information:

Future<JHardwareInfo> getHardwareInfo()async{
  final value =  await _jFullInfo.getHardwareInformation();
  return value;
}

Get Android Information:

Future<JAndroidInfo> getAndroidInfo()async{
  final value =  await _jFullInfo.getAndroidInformation();
  return value;
}

Get Application Information:

Future<JApplicationInfo> getApplicationInfo()async{
  final value =  await _jFullInfo.getApplicationInformation();
  return value;
}

Get JSimInfo Information:

Future<List<JSimInfo>> getSimInfo()async{
  final value =  await _jFullInfo.getSimInformation();
  return value;
}

Get All Information:

Future<JInfoModel> getAllInfo()async{
  final value =  await _jFullInfo.getAllInformation();
  return value;
}

Additional information

Provided By Just Codes Developers