Android App zur Berechnung der Visiereinstellung eines Recurvebogens.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

workspace.xml 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project version="4">
  3. <component name="AndroidLayouts">
  4. <shared>
  5. <config>
  6. <device id="pixel_2_xl" />
  7. <device id="Nexus 7" />
  8. <device id="pixel_c" />
  9. <device id="_device_class_tablet" />
  10. <device id="_device_class_phone" />
  11. <locale>de</locale>
  12. <option name="nonWearDeviceLastStateName" value="Portrait" />
  13. </config>
  14. </shared>
  15. </component>
  16. <component name="AndroidLogFilters">
  17. <option name="TOOL_WINDOW_CONFIGURED_FILTER" value="Show only selected application" />
  18. </component>
  19. <component name="AutoImportSettings">
  20. <option name="autoReloadType" value="NONE" />
  21. </component>
  22. <component name="ChangeListManager">
  23. <list default="true" id="41369230-c648-4299-baf3-de5f13bcb18c" name="Changes" comment="">
  24. <change afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationViewModel.java" afterDir="false" />
  25. <change beforePath="$PROJECT_DIR$/.gradle/7.3.3/executionHistory/executionHistory.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/7.3.3/executionHistory/executionHistory.bin" afterDir="false" />
  26. <change beforePath="$PROJECT_DIR$/.gradle/7.3.3/executionHistory/executionHistory.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/7.3.3/executionHistory/executionHistory.lock" afterDir="false" />
  27. <change beforePath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/fileHashes.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/fileHashes.bin" afterDir="false" />
  28. <change beforePath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/fileHashes.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/fileHashes.lock" afterDir="false" />
  29. <change beforePath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/resourceHashesCache.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/7.3.3/fileHashes/resourceHashesCache.bin" afterDir="false" />
  30. <change beforePath="$PROJECT_DIR$/.gradle/buildOutputCleanup/buildOutputCleanup.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/buildOutputCleanup/buildOutputCleanup.lock" afterDir="false" />
  31. <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
  32. <change beforePath="$PROJECT_DIR$/app/src/main/AndroidManifest.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/AndroidManifest.xml" afterDir="false" />
  33. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/database/dao/ArcherySetupDao.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/database/dao/ArcherySetupDao.java" afterDir="false" />
  34. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/model/ArcherySetup.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/model/ArcherySetup.java" afterDir="false" />
  35. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/model/IArcherySetup.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/model/IArcherySetup.java" afterDir="false" />
  36. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/calcsight/CalculateSightParametersFragment.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/calcsight/CalculateSightParametersFragment.java" afterDir="false" />
  37. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/calcsight/CalculateSightParametersViewModel.java" beforeDir="false" />
  38. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/EquipmentConfigurationActivity.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationActivity.java" afterDir="false" />
  39. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/RiserConfigurationActivity.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/RiserConfigurationActivity.java" afterDir="false" />
  40. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/SightConfigurationActivity.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/SightConfigurationActivity.java" afterDir="false" />
  41. <change beforePath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/equipment/AddEquipmentFragment.java" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/equipment/AddEquipmentFragment.java" afterDir="false" />
  42. <change beforePath="$PROJECT_DIR$/app/src/main/res/layout/activity_equipment_configuration.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/res/layout/activity_equipment_configuration.xml" afterDir="false" />
  43. <change beforePath="$PROJECT_DIR$/app/src/main/res/layout/activity_sight_configuration.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/res/layout/activity_sight_configuration.xml" afterDir="false" />
  44. <change beforePath="$PROJECT_DIR$/app/src/main/res/layout/fragment_calcsight_parameters.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/res/layout/fragment_calcsight_parameters.xml" afterDir="false" />
  45. <change beforePath="$PROJECT_DIR$/app/src/main/res/values-de/strings.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/res/values-de/strings.xml" afterDir="false" />
  46. <change beforePath="$PROJECT_DIR$/app/src/main/res/values/strings.xml" beforeDir="false" afterPath="$PROJECT_DIR$/app/src/main/res/values/strings.xml" afterDir="false" />
  47. </list>
  48. <option name="SHOW_DIALOG" value="false" />
  49. <option name="HIGHLIGHT_CONFLICTS" value="true" />
  50. <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
  51. <option name="LAST_RESOLUTION" value="IGNORE" />
  52. </component>
  53. <component name="ExecutionTargetManager" SELECTED_TARGET="device_and_snapshot_combo_box_target[C:\Users\FSmilari\.android\avd\pixel_2_q_10_0_-_api_29.avd]" />
  54. <component name="ExternalProjectsData">
  55. <projectState path="$PROJECT_DIR$">
  56. <ProjectState />
  57. </projectState>
  58. </component>
  59. <component name="FileTemplateManagerImpl">
  60. <option name="RECENT_TEMPLATES">
  61. <list>
  62. <option value="resourceFile" />
  63. <option value="Class" />
  64. <option value="valueResourceFile" />
  65. </list>
  66. </option>
  67. </component>
  68. <component name="GitSEFilterConfiguration">
  69. <file-type-list>
  70. <filtered-out-file-type name="LOCAL_BRANCH" />
  71. <filtered-out-file-type name="REMOTE_BRANCH" />
  72. <filtered-out-file-type name="TAG" />
  73. <filtered-out-file-type name="COMMIT_BY_MESSAGE" />
  74. </file-type-list>
  75. </component>
  76. <component name="ProjectId" id="2CtkRh68cCgVducVNKsBVO29cSE" />
  77. <component name="ProjectViewState">
  78. <option name="hideEmptyMiddlePackages" value="true" />
  79. <option name="showLibraryContents" value="true" />
  80. <option name="showMembers" value="true" />
  81. <option name="showVisibilityIcons" value="true" />
  82. </component>
  83. <component name="PropertiesComponent">
  84. <property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
  85. <property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
  86. <property name="RunOnceActivity.cidr.known.project.marker" value="true" />
  87. <property name="android-custom-viewC:/Users/FSmilari/.gradle/caches/modules-2/files-2.1/androidx.recyclerview/recyclerview/1.2.1/f0f93e67af3f7417bdd560d5142f6dec4fe629c3/recyclerview-1.2.1-sources.jar!/androidx/recyclerview/widget/RecyclerView.java_RecyclerView_DIMENSIONS" value="1080&#10;1920" />
  88. <property name="android-custom-viewC:/Users/FSmilari/.gradle/caches/modules-2/files-2.1/androidx.recyclerview/recyclerview/1.2.1/f0f93e67af3f7417bdd560d5142f6dec4fe629c3/recyclerview-1.2.1-sources.jar!/androidx/recyclerview/widget/RecyclerView.java_SELECTED" value="RecyclerView" />
  89. <property name="android-custom-viewC:/Users/FSmilari/.gradle/caches/modules-2/files-2.1/androidx.viewpager2/viewpager2/1.0.0/3c3569044e6969f1ee5c3aa03b08e6717a2d782f/viewpager2-1.0.0-sources.jar!/androidx/viewpager2/widget/ViewPager2.java_SELECTED" value="ViewPager2" />
  90. <property name="android-custom-viewC:/Users/FSmilari/.gradle/caches/modules-2/files-2.1/androidx.viewpager2/viewpager2/1.0.0/3c3569044e6969f1ee5c3aa03b08e6717a2d782f/viewpager2-1.0.0-sources.jar!/androidx/viewpager2/widget/ViewPager2.java_ViewPager2_DIMENSIONS" value="1080&#10;1920" />
  91. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-29/android/view/View.java_SELECTED" value="View" />
  92. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-29/android/widget/AutoCompleteTextView.java_SELECTED" value="AutoCompleteTextView" />
  93. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-29/android/widget/EditText.java_SELECTED" value="EditText" />
  94. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-29/android/widget/TextView.java_SELECTED" value="TextView" />
  95. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/view/View.java_SELECTED" value="View" />
  96. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/view/View.java_View_DIMENSIONS" value="1080&#10;1920" />
  97. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/view/ViewGroup.java_SELECTED" value="ViewGroup" />
  98. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/view/ViewGroup.java_ViewGroup_DIMENSIONS" value="1080&#10;1920" />
  99. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/AutoCompleteTextView.java_AutoCompleteTextView_DIMENSIONS" value="1080&#10;1920" />
  100. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/AutoCompleteTextView.java_SELECTED" value="AutoCompleteTextView" />
  101. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/EditText.java_EditText_DIMENSIONS" value="1080&#10;1920" />
  102. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/EditText.java_SELECTED" value="EditText" />
  103. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/TextView.java_SELECTED" value="TextView" />
  104. <property name="android-custom-viewC:/Users/FSmilari/AppData/Local/Android/Sdk/sources/android-32/android/widget/TextView.java_TextView_DIMENSIONS" value="1080&#10;1920" />
  105. <property name="cidr.known.project.marker" value="true" />
  106. <property name="code.cleanup.on.save" value="true" />
  107. <property name="format.on.save" value="true" />
  108. <property name="last_opened_file_path" value="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/calcsight" />
  109. <property name="optimize.imports.on.save" value="true" />
  110. <property name="settings.editor.selected.configurable" value="preferences.editor.code.editing" />
  111. </component>
  112. <component name="RecentsManager">
  113. <key name="android.template.-1377507120">
  114. <recent name="ch.spherIC.recurvebowsight.ui.configuration" />
  115. </key>
  116. <key name="CopyFile.RECENT_KEYS">
  117. <recent name="Z:\Work\Java Projects\Android\RecurveBowSight\V2\app\src\main\java\ch\spherIC\recurvebowsight\ui\calcsight" />
  118. <recent name="Z:\Work\Java Projects\Android\RecurveBowSight\V2\app\src\main\res\layout" />
  119. <recent name="Z:\Work\Java Projects\Android\RecurveBowSight\V2\app\src\main\java\ch\spherIC\recurvebowsight\utilities" />
  120. <recent name="Z:\Work\Java Projects\Android\RecurveBowSight\V2\app\src\main\java\ch\spherIC\recurvebowsight\database" />
  121. <recent name="Z:\Work\Java Projects\Android\RecurveBowSight\V2\app\src\main\java\ch\spherIC\recurvebowsight\database\scheme\masterdata" />
  122. </key>
  123. <key name="android.template.1093395407">
  124. <recent name="ch.spherIC.recurvebowsight" />
  125. </key>
  126. <key name="android.template.1734690915">
  127. <recent name="ch.spherIC.recurvebowsight.ui.configuration" />
  128. </key>
  129. <key name="android.template.170908341">
  130. <recent name="ch.spherIC.recurvebowsight" />
  131. </key>
  132. <key name="android.template.-1136685790">
  133. <recent name="ch.spherIC.recurvebowsight.ui.configuration" />
  134. <recent name="ch.spherIC.recurvebowsight" />
  135. </key>
  136. <key name="CopyClassDialog.RECENTS_KEY">
  137. <recent name="ch.spherIC.recurvebowsight.ui.configuration" />
  138. <recent name="ch.spherIC.recurvebowsight.ui.calcsight" />
  139. <recent name="ch.spherIC.recurvebowsight.ui.equipment" />
  140. </key>
  141. </component>
  142. <component name="RunManager">
  143. <configuration name="app" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
  144. <module name="RecurveBowSight.app.main" />
  145. <option name="DEPLOY" value="true" />
  146. <option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
  147. <option name="DEPLOY_AS_INSTANT" value="false" />
  148. <option name="ARTIFACT_NAME" value="" />
  149. <option name="PM_INSTALL_OPTIONS" value="" />
  150. <option name="ALL_USERS" value="false" />
  151. <option name="ALWAYS_INSTALL_WITH_PM" value="false" />
  152. <option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
  153. <option name="ACTIVITY_EXTRA_FLAGS" value="" />
  154. <option name="MODE" value="default_activity" />
  155. <option name="CLEAR_LOGCAT" value="false" />
  156. <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
  157. <option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" value="false" />
  158. <option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
  159. <option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
  160. <option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
  161. <option name="DEBUGGER_TYPE" value="Auto" />
  162. <Auto>
  163. <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
  164. <option name="SHOW_STATIC_VARS" value="true" />
  165. <option name="WORKING_DIR" value="" />
  166. <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
  167. <option name="SHOW_OPTIMIZED_WARNING" value="true" />
  168. </Auto>
  169. <Hybrid>
  170. <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
  171. <option name="SHOW_STATIC_VARS" value="true" />
  172. <option name="WORKING_DIR" value="" />
  173. <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
  174. <option name="SHOW_OPTIMIZED_WARNING" value="true" />
  175. </Hybrid>
  176. <Java />
  177. <Native>
  178. <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
  179. <option name="SHOW_STATIC_VARS" value="true" />
  180. <option name="WORKING_DIR" value="" />
  181. <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
  182. <option name="SHOW_OPTIMIZED_WARNING" value="true" />
  183. </Native>
  184. <Profilers>
  185. <option name="ADVANCED_PROFILING_ENABLED" value="false" />
  186. <option name="STARTUP_PROFILING_ENABLED" value="false" />
  187. <option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
  188. <option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
  189. <option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
  190. <option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
  191. </Profilers>
  192. <option name="DEEP_LINK" value="" />
  193. <option name="ACTIVITY_CLASS" value="" />
  194. <option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
  195. <option name="SKIP_ACTIVITY_VALIDATION" value="false" />
  196. <method v="2">
  197. <option name="Android.Gradle.BeforeRunTask" enabled="true" />
  198. </method>
  199. </configuration>
  200. </component>
  201. <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
  202. <component name="SvnConfiguration" cleanupOnStartRun="true">
  203. <configuration>C:\Users\FSmilari\AppData\Roaming\Subversion</configuration>
  204. <supportedVersion>125</supportedVersion>
  205. </component>
  206. <component name="SvnFileUrlMappingImpl">
  207. <option name="myMappingRoots">
  208. <list>
  209. <SvnCopyRootSimple>
  210. <option name="myVcsRoot" value="Z:\Work\Java Projects\Android\RecurveBowSight\V2" />
  211. <option name="myCopyRoot" value="Z:\Work\Java Projects\Android\RecurveBowSight\V2" />
  212. </SvnCopyRootSimple>
  213. </list>
  214. </option>
  215. <option name="myMoreRealMappingRoots">
  216. <list>
  217. <SvnCopyRootSimple>
  218. <option name="myVcsRoot" value="Z:\Work\Java Projects\Android\RecurveBowSight\V2" />
  219. <option name="myCopyRoot" value="Z:\Work\Java Projects\Android\RecurveBowSight\V2" />
  220. </SvnCopyRootSimple>
  221. </list>
  222. </option>
  223. </component>
  224. <component name="TaskManager">
  225. <task active="true" id="Default" summary="Default task">
  226. <changelist id="41369230-c648-4299-baf3-de5f13bcb18c" name="Changes" comment="" />
  227. <created>1659629287053</created>
  228. <option name="number" value="Default" />
  229. <option name="presentableId" value="Default" />
  230. <updated>1659629287053</updated>
  231. </task>
  232. <servers />
  233. </component>
  234. <component name="XDebuggerManager">
  235. <breakpoint-manager>
  236. <breakpoints>
  237. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  238. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/about/AboutFragment.java</url>
  239. <line>18</line>
  240. <option name="timeStamp" value="2" />
  241. </line-breakpoint>
  242. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  243. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/database/RBSDatabaseHelper.java</url>
  244. <line>99</line>
  245. <option name="timeStamp" value="4" />
  246. </line-breakpoint>
  247. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  248. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/equipment/EquipmentRecyclerViewAdapter.java</url>
  249. <line>51</line>
  250. <option name="timeStamp" value="10" />
  251. </line-breakpoint>
  252. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  253. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/equipment/EquipmentRecyclerViewAdapter.java</url>
  254. <line>54</line>
  255. <option name="timeStamp" value="13" />
  256. </line-breakpoint>
  257. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  258. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/RiserConfigurationActivity.java</url>
  259. <line>98</line>
  260. <option name="timeStamp" value="37" />
  261. </line-breakpoint>
  262. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  263. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/RiserConfigurationActivity.java</url>
  264. <line>172</line>
  265. <option name="timeStamp" value="40" />
  266. </line-breakpoint>
  267. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  268. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/RiserConfigurationActivity.java</url>
  269. <line>128</line>
  270. <option name="timeStamp" value="42" />
  271. </line-breakpoint>
  272. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  273. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/SightConfigurationActivity.java</url>
  274. <line>73</line>
  275. <option name="timeStamp" value="43" />
  276. </line-breakpoint>
  277. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  278. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationViewModel.java</url>
  279. <line>108</line>
  280. <option name="timeStamp" value="46" />
  281. </line-breakpoint>
  282. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  283. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationActivity.java</url>
  284. <line>94</line>
  285. <option name="timeStamp" value="48" />
  286. </line-breakpoint>
  287. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  288. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationActivity.java</url>
  289. <line>88</line>
  290. <option name="timeStamp" value="50" />
  291. </line-breakpoint>
  292. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  293. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationViewModel.java</url>
  294. <line>115</line>
  295. <option name="timeStamp" value="52" />
  296. </line-breakpoint>
  297. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  298. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationActivity.java</url>
  299. <line>149</line>
  300. <option name="timeStamp" value="53" />
  301. </line-breakpoint>
  302. <line-breakpoint enabled="true" suspend="THREAD" type="java-line">
  303. <url>file://$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/ui/configuration/ArcherySetupConfigurationActivity.java</url>
  304. <line>156</line>
  305. <option name="timeStamp" value="54" />
  306. </line-breakpoint>
  307. </breakpoints>
  308. </breakpoint-manager>
  309. <watches-manager>
  310. <configuration name="app">
  311. <watch expression="this.binding.asRiserSelectionTxt.getAdapter().getCount()" language="JAVA" />
  312. <watch expression="this.binding.asSightSelectionTxt.getAdapter().getCount()" language="JAVA" />
  313. <watch expression="this" />
  314. <watch expression="aArcherySetup.getRiser()" language="JAVA" />
  315. <watch expression="this.mArcherySetup.getValue().getRiserName()" language="JAVA" />
  316. </configuration>
  317. </watches-manager>
  318. </component>
  319. </project>