mirror of
https://gitlab.com/comunic/comunicmessages
synced 2024-12-04 19:24:11 +00:00
33 lines
652 B
C
33 lines
652 B
C
/**
|
|
* Project configuration
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/**
|
|
* Application information
|
|
*/
|
|
#define ORGANIZATION_NAME "Communiquons"
|
|
#define ORGANIZATION_DOMAIN "communiquons.org"
|
|
#define APPLICATION_NAME "ComunicMessages"
|
|
|
|
/**
|
|
* API credentials
|
|
*
|
|
* Note : only HTTPS should be used in production
|
|
*/
|
|
#define API_URL "https://api.communiquons.org/"
|
|
#define API_SERVICE_NAME "ComunicAndroid"
|
|
#define API_SERVICE_TOKEN "cWHlmMS5A1"
|
|
|
|
|
|
/**
|
|
* Settings information
|
|
*/
|
|
#define SETTINGS_ACCOUNT_LOGIN_TOKEN_1 "account_login_token_1"
|
|
#define SETTINGS_ACCOUNT_LOGIN_TOKEN_2 "account_login_token_2"
|
|
|
|
#endif // CONFIG_H
|