more exams

This commit is contained in:
Milos Kozak 2019-09-07 13:50:55 +02:00
parent 2699f255b8
commit 1b1ce941db
2 changed files with 66 additions and 0 deletions

View file

@ -77,6 +77,39 @@ public class Objective2 extends Objective {
.option(new Option(R.string.basaltest_havingregularhyper, true))
.hint(new Hint(R.string.basaltest_hint1))
);
tasks.add(new ExamTask(R.string.prerequisites, R.string.prerequisites_what, "prerequisites")
.option(new Option(R.string.prerequisites_determinedcorrectprofile, true))
.option(new Option(R.string.prerequisites_computer, true))
.option(new Option(R.string.prerequisites_phone, true))
.option(new Option(R.string.prerequisites_car, false))
.option(new Option(R.string.prerequisites_nightscout, true))
.option(new Option(R.string.prerequisites_tidepoolaccount, false))
.option(new Option(R.string.prerequisites_googleaccount, false))
.option(new Option(R.string.prerequisites_githubaccount, false))
.option(new Option(R.string.prerequisites_beanandroiddeveloper, false))
.option(new Option(R.string.prerequisites_own670g, false))
.option(new Option(R.string.prerequisites_smartwatch, false))
.option(new Option(R.string.prerequisites_supportedcgm, true))
.hint(new Hint(R.string.prerequisites_hint1))
);
tasks.add(new ExamTask(R.string.update_update, R.string.whatistrue,"update")
.option(new Option(R.string.update_git, true))
.option(new Option(R.string.update_asap, true))
.option(new Option(R.string.update_keys, true))
.option(new Option(R.string.update_neverupdate, false))
.option(new Option(R.string.update_askfriend, false))
.hint(new Hint(R.string.update_hint1))
);
tasks.add(new ExamTask(R.string.troubleshooting, R.string.troubleshooting_wheretoask,"troubleshooting")
.option(new Option(R.string.troubleshooting_fb, true))
.option(new Option(R.string.troubleshooting_wiki, true))
.option(new Option(R.string.troubleshooting_gitter, true))
.option(new Option(R.string.troubleshooting_googlesupport, false))
.option(new Option(R.string.troubleshooting_yourendo, false))
.hint(new Hint(R.string.troubleshooting_hint1))
.hint(new Hint(R.string.troubleshooting_hint2))
.hint(new Hint(R.string.troubleshooting_hint3))
);
for (Task task : tasks)
Collections.shuffle(((ExamTask)task).options);

View file

@ -56,5 +56,38 @@
<string name="basaltest_havingregularhypo">When having regular hypos</string>
<string name="basaltest_havingregularhyper">When having regular hypers</string>
<string name="basaltest_hint1">https://androidaps.readthedocs.io/en/latest/EN/Getting-Started/FAQ.html#androidaps-settings</string>
<string name="prerequisites">Prerequisites</string>
<string name="prerequisites_what">What do I need?</string>
<string name="prerequisites_determinedcorrectprofile">Determined correct profile (Basals, IC, ISF, DIA)</string>
<string name="prerequisites_computer">Computer to create an APK</string>
<string name="prerequisites_phone">Supported phone</string>
<string name="prerequisites_car">Car</string>
<string name="prerequisites_nightscout">Nightscout to pass objectives</string>
<string name="prerequisites_tidepoolaccount">Tidepool account</string>
<string name="prerequisites_googleaccount">Google account</string>
<string name="prerequisites_githubaccount">Github account</string>
<string name="prerequisites_beanandroiddeveloper">To be an Android developer</string>
<string name="prerequisites_own670g">Own a 670g pump</string>
<string name="prerequisites_hint1">https://androidaps.readthedocs.io/en/latest/EN/Module/module.html</string>
<string name="prerequisites_smartwatch">Smartwatch</string>
<string name="prerequisites_supportedcgm">Supported CGM</string>
<string name="update_update">Updating of AndroidAPS</string>
<string name="whatistrue">What is true?</string>
<string name="update_git">You need to have Git installed</string>
<string name="update_asap">Update as soon as new version is released</string>
<string name="update_keys">Use the same signing keys</string>
<string name="update_neverupdate">Never update if system is working well</string>
<string name="update_askfriend">Ask your friend for new APK</string>
<string name="update_hint1">https://androidaps.readthedocs.io/en/latest/EN/Installing-AndroidAPS/Update-to-new-version.html#update-to-a-new-version-or-branch</string>
<string name="troubleshooting">Troubleshooting</string>
<string name="troubleshooting_wheretoask">Where look for help?</string>
<string name="troubleshooting_fb">Facebook group</string>
<string name="troubleshooting_wiki">Wiki</string>
<string name="troubleshooting_gitter">Gitter</string>
<string name="troubleshooting_googlesupport">Google support</string>
<string name="troubleshooting_yourendo">Your endo</string>
<string name="troubleshooting_hint1">https://androidaps.readthedocs.io/en/latest/EN/Installing-AndroidAPS/Update-to-new-version.html#troubleshooting</string>
<string name="troubleshooting_hint2">https://www.facebook.com/groups/AndroidAPSUsers/</string>
<string name="troubleshooting_hint3">https://gitter.im/MilosKozak/AndroidAPS</string>
</resources>