Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 782 Bytes

adal-utils.md

File metadata and controls

40 lines (31 loc) · 782 Bytes

adal-utils

Android library that includes some useful utils like:

  • Open settings;
  • Check if Google Play Services exists;
  • Open Dial;
  • Open Email;

Download

Gradle:

dependencies {
  implementation 'com.massivedisaster.adal:adal-utils:0.1.20'
}

Usage

// Open settings
AppUtils.openAppSettings(getActivity());

// Check if Google Play Services exists
AppUtils.checkPlayServicesExists(getActivity())

// Open Dial
AppUtils.openDial(getActivity(), "00351910000000");

// Open Email
AppUtils.openEmail(getActivity(), getString(R.string.send_email), "[email protected]", "[email protected]");

Contributing

CONTRIBUTING

License

MIT LICENSE