legalsoft_package
A compilmentary package for clients of legalsoft.
Steps to follow:
- Go to site legalsoft website.
- Create Account and Add app.
- Fill the requirements.
- Copy array generated by site and appId.
- Install this package.
- Modify androidManifest.xml
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.DIAL" />
<data android:scheme="tel" />
</intent>
<intent>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="*/*" />
</intent>
</queries>
- Import package where it is required.
- Use the function as in example.
- Finished.