package com.dmc.callcrm /** * Central config for where the app sends data. * * BASE_URL must end with a trailing slash and point at the /api/ folder * on your server (the PHP backend in this repo). * * APP_SECRET must match APP_SECRET in backend/config.php (leave "" to disable). */ object ApiConfig { const val BASE_URL = "https://callcrm.dholerametrocityoffer.com/api/" const val APP_SECRET = "" // set the same value on the server if you enable it // How often the background worker force-syncs, in minutes (min allowed by WorkManager is 15). const val SYNC_INTERVAL_MIN = 15L // How many days of history to read on the very first sync. const val FIRST_SYNC_DAYS = 30 }