Check in when you start working and select a project. Check out once you are finished. Your time will automatically be inserted into your Projectile timesheet.
// Configure APIpublicclassProductionSettingsextendsSettings {
publicStringgetProjectileUrl() {
return"https://myprojectile.org/projectile";
}
publicStringgetApplicationKey() {
return"my-app-key";
}
}
Settingssettings = newProductionSettings();
Crawlercrawler = newRetrofitClient(settings);
// Use APICredentialscredentials = newCredentials("my-username", "my-password");
crawler.checkCredentials(credentials);
...