comunicmessages/config.h

33 lines
652 B
C
Raw Normal View History

2018-11-27 18:15:54 +00:00
/**
* Project configuration
*
* @author Pierre HUBERT
*/
#ifndef CONFIG_H
#define CONFIG_H
2018-11-29 14:53:54 +00:00
/**
* Application information
*/
#define ORGANIZATION_NAME "Communiquons"
#define ORGANIZATION_DOMAIN "communiquons.org"
#define APPLICATION_NAME "ComunicMessages"
2018-11-27 18:15:54 +00:00
/**
* API credentials
*
* Note : only HTTPS should be used in production
2018-11-27 18:15:54 +00:00
*/
#define API_URL "https://api.communiquons.org/"
#define API_SERVICE_NAME "ComunicAndroid"
#define API_SERVICE_TOKEN "cWHlmMS5A1"
2018-11-29 14:53:54 +00:00
/**
* Settings information
*/
#define SETTINGS_ACCOUNT_LOGIN_TOKEN_1 "account_login_token_1"
#define SETTINGS_ACCOUNT_LOGIN_TOKEN_2 "account_login_token_2"
2018-11-27 18:15:54 +00:00
#endif // CONFIG_H