July 22, 2023 - Euromessage v5.2.7
The Euromessage Android Sdk is a java implementation of an Android client for Euromessage.
Euromessage SDK requires minimum API level 21.
Add maven jitpack repository to your project/build.gradle file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add Euromessage to the dependencies
in app/build.gradle.
implementation 'com.github.relateddigital:euromessage-android:5.2.7'
For more information, please check new detailed documentation :
Euromessage Türkçe Dokümantasyon
Euromessage English Documentation
You need to add an android project in Firebase Console. Please follow Firebase instruction and do not forget to add google_service.json to the project.
You need to add an android project in Huawei Console. Please follow Huawei instruction and do not forget to add agconnect_services.json to the project. *you may need to add your fingerprint to app in Huawei console.
-
If you have a question please send an e-mail to: clientsupport@relateddigital.com
To register email IYS:
EuromessageCallback callback = new EuromessageCallback() {
@Override
public void success() {
Toast.makeText(getApplicationContext(), "REGISTER EMAIL SUCCESS", Toast.LENGTH_LONG).show();
}
@Override
public void fail(String errorMessage) {
String message = "REGISTER EMAIL ERROR ";
if(errorMessage != null) {
message = message + errorMessage;
}
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
}
};
EuroMobileManager.getInstance().registerEmail("test@euromsg.com", EmailPermit.ACTIVE, false, getApplicationContext(), callback);