android-env 1.2.2__py3-none-any.whl → 1.2.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. android_env/__init__.py +1 -1
  2. android_env/components/__init__.py +1 -1
  3. android_env/components/a11y/__init__.py +15 -0
  4. android_env/components/a11y/a11y_events.py +118 -0
  5. android_env/components/a11y/a11y_events_test.py +173 -0
  6. android_env/components/a11y/a11y_forests.py +128 -0
  7. android_env/components/a11y/a11y_forests_test.py +237 -0
  8. android_env/components/a11y/a11y_servicer.py +199 -0
  9. android_env/components/a11y/a11y_servicer_test.py +224 -0
  10. android_env/components/action_fns.py +132 -0
  11. android_env/components/action_fns_test.py +227 -0
  12. android_env/components/action_type.py +26 -3
  13. android_env/components/adb_call_parser.py +233 -185
  14. android_env/components/adb_call_parser_test.py +165 -163
  15. android_env/components/adb_controller.py +19 -28
  16. android_env/components/adb_controller_test.py +100 -9
  17. android_env/components/adb_log_stream.py +3 -3
  18. android_env/components/adb_log_stream_test.py +1 -1
  19. android_env/components/app_screen_checker.py +15 -13
  20. android_env/components/app_screen_checker_test.py +1 -1
  21. android_env/components/config_classes.py +203 -0
  22. android_env/components/coordinator.py +53 -338
  23. android_env/components/coordinator_test.py +26 -283
  24. android_env/components/device_settings.py +174 -0
  25. android_env/components/device_settings_test.py +228 -0
  26. android_env/components/dumpsys_thread.py +3 -4
  27. android_env/components/dumpsys_thread_test.py +1 -1
  28. android_env/components/errors.py +2 -5
  29. android_env/components/errors_test.py +1 -1
  30. android_env/components/log_stream.py +2 -2
  31. android_env/components/log_stream_test.py +1 -1
  32. android_env/components/logcat_thread.py +9 -8
  33. android_env/components/logcat_thread_test.py +2 -3
  34. android_env/components/{utils.py → pixel_fns.py} +19 -20
  35. android_env/components/{utils_test.py → pixel_fns_test.py} +20 -15
  36. android_env/components/setup_step_interpreter.py +45 -37
  37. android_env/components/setup_step_interpreter_test.py +1 -1
  38. android_env/components/simulators/__init__.py +1 -1
  39. android_env/components/simulators/base_simulator.py +79 -23
  40. android_env/components/simulators/base_simulator_test.py +131 -9
  41. android_env/components/simulators/emulator/__init__.py +1 -1
  42. android_env/components/simulators/emulator/emulator_launcher.py +62 -81
  43. android_env/components/simulators/emulator/emulator_launcher_test.py +120 -43
  44. android_env/components/simulators/emulator/emulator_simulator.py +111 -98
  45. android_env/components/simulators/emulator/emulator_simulator_test.py +174 -138
  46. android_env/components/simulators/fake/__init__.py +1 -1
  47. android_env/components/simulators/fake/fake_simulator.py +9 -17
  48. android_env/components/simulators/fake/fake_simulator_test.py +23 -8
  49. android_env/components/specs.py +1 -1
  50. android_env/components/specs_test.py +1 -1
  51. android_env/components/task_manager.py +26 -31
  52. android_env/components/task_manager_test.py +1 -18
  53. android_env/env_interface.py +1 -17
  54. android_env/environment.py +27 -17
  55. android_env/environment_test.py +51 -25
  56. android_env/loader.py +57 -43
  57. android_env/loader_test.py +115 -35
  58. android_env/proto/__init__.py +1 -1
  59. android_env/proto/a11y/__init__.py +15 -0
  60. android_env/proto/a11y/a11y.proto +75 -0
  61. android_env/proto/a11y/a11y_pb2.py +54 -0
  62. android_env/proto/a11y/a11y_pb2.pyi +49 -0
  63. android_env/proto/a11y/a11y_pb2_grpc.py +202 -0
  64. android_env/proto/a11y/android_accessibility_action.proto +32 -0
  65. android_env/proto/a11y/android_accessibility_action_pb2.py +37 -0
  66. android_env/proto/a11y/android_accessibility_action_pb2.pyi +13 -0
  67. android_env/proto/a11y/android_accessibility_action_pb2_grpc.py +24 -0
  68. android_env/proto/a11y/android_accessibility_forest.proto +29 -0
  69. android_env/proto/a11y/android_accessibility_forest_pb2.py +38 -0
  70. android_env/proto/a11y/android_accessibility_forest_pb2.pyi +13 -0
  71. android_env/proto/a11y/android_accessibility_forest_pb2_grpc.py +24 -0
  72. android_env/proto/a11y/android_accessibility_node_info.proto +122 -0
  73. android_env/proto/a11y/android_accessibility_node_info_clickable_span.proto +49 -0
  74. android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2.py +39 -0
  75. android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2.pyi +28 -0
  76. android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2_grpc.py +24 -0
  77. android_env/proto/a11y/android_accessibility_node_info_pb2.py +42 -0
  78. android_env/proto/a11y/android_accessibility_node_info_pb2.pyi +75 -0
  79. android_env/proto/a11y/android_accessibility_node_info_pb2_grpc.py +24 -0
  80. android_env/proto/a11y/android_accessibility_tree.proto +29 -0
  81. android_env/proto/a11y/android_accessibility_tree_pb2.py +38 -0
  82. android_env/proto/a11y/android_accessibility_tree_pb2.pyi +13 -0
  83. android_env/proto/a11y/android_accessibility_tree_pb2_grpc.py +24 -0
  84. android_env/proto/a11y/android_accessibility_window_info.proto +84 -0
  85. android_env/proto/a11y/android_accessibility_window_info_pb2.py +41 -0
  86. android_env/proto/a11y/android_accessibility_window_info_pb2.pyi +48 -0
  87. android_env/proto/a11y/android_accessibility_window_info_pb2_grpc.py +24 -0
  88. android_env/proto/a11y/rect.proto +30 -0
  89. android_env/proto/a11y/rect_pb2.py +37 -0
  90. android_env/proto/a11y/rect_pb2.pyi +17 -0
  91. android_env/proto/a11y/rect_pb2_grpc.py +24 -0
  92. android_env/proto/adb.proto +13 -1
  93. android_env/proto/adb_pb2.py +120 -107
  94. android_env/proto/adb_pb2.pyi +396 -0
  95. android_env/proto/adb_pb2_grpc.py +20 -0
  96. android_env/proto/emulator_controller.proto +1 -1
  97. android_env/proto/emulator_controller_pb2.py +142 -131
  98. android_env/proto/emulator_controller_pb2.pyi +672 -0
  99. android_env/proto/emulator_controller_pb2_grpc.py +497 -136
  100. android_env/proto/snapshot.proto +1 -1
  101. android_env/proto/snapshot_pb2.py +30 -19
  102. android_env/proto/snapshot_pb2.pyi +117 -0
  103. android_env/proto/snapshot_pb2_grpc.py +20 -0
  104. android_env/proto/snapshot_service.proto +1 -1
  105. android_env/proto/snapshot_service_pb2.py +36 -25
  106. android_env/proto/snapshot_service_pb2.pyi +86 -0
  107. android_env/proto/snapshot_service_pb2_grpc.py +119 -28
  108. android_env/proto/state.proto +1 -1
  109. android_env/proto/state_pb2.py +46 -35
  110. android_env/proto/state_pb2.pyi +85 -0
  111. android_env/proto/state_pb2_grpc.py +20 -0
  112. android_env/proto/task.proto +4 -1
  113. android_env/proto/task_pb2.py +41 -30
  114. android_env/proto/task_pb2.pyi +160 -0
  115. android_env/proto/task_pb2_grpc.py +20 -0
  116. android_env/wrappers/__init__.py +1 -1
  117. android_env/wrappers/a11y_grpc_wrapper.py +500 -0
  118. android_env/wrappers/a11y_grpc_wrapper_test.py +849 -0
  119. android_env/wrappers/base_wrapper.py +1 -5
  120. android_env/wrappers/base_wrapper_test.py +1 -7
  121. android_env/wrappers/discrete_action_wrapper.py +15 -14
  122. android_env/wrappers/discrete_action_wrapper_test.py +1 -1
  123. android_env/wrappers/flat_interface_wrapper.py +5 -5
  124. android_env/wrappers/flat_interface_wrapper_test.py +1 -1
  125. android_env/wrappers/float_pixels_wrapper.py +5 -4
  126. android_env/wrappers/float_pixels_wrapper_test.py +1 -1
  127. android_env/wrappers/gym_wrapper.py +1 -1
  128. android_env/wrappers/gym_wrapper_test.py +1 -1
  129. android_env/wrappers/image_rescale_wrapper.py +13 -10
  130. android_env/wrappers/image_rescale_wrapper_test.py +1 -1
  131. android_env/wrappers/last_action_wrapper.py +5 -4
  132. android_env/wrappers/last_action_wrapper_test.py +1 -1
  133. android_env/wrappers/rate_limit_wrapper.py +1 -1
  134. android_env/wrappers/rate_limit_wrapper_test.py +1 -1
  135. android_env/wrappers/tap_action_wrapper.py +12 -12
  136. android_env/wrappers/tap_action_wrapper_test.py +49 -14
  137. {android_env-1.2.2.dist-info → android_env-1.2.3.dist-info}/METADATA +14 -16
  138. android_env-1.2.3.dist-info/RECORD +141 -0
  139. {android_env-1.2.2.dist-info → android_env-1.2.3.dist-info}/WHEEL +1 -1
  140. android_env-1.2.2.dist-info/RECORD +0 -88
  141. {android_env-1.2.2.dist-info → android_env-1.2.3.dist-info/licenses}/LICENSE +0 -0
  142. {android_env-1.2.2.dist-info → android_env-1.2.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,141 @@
1
+ android_env/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
2
+ android_env/env_interface.py,sha256=sf1QrhVp9RF2oh5_yp3d1yAqUUzUJWgpmTRzMFRgC9c,3281
3
+ android_env/environment.py,sha256=GAVlbFeRjkgnqg-f5OIocxgAFWCwCiGTX0VbP_WFxd0,6173
4
+ android_env/environment_test.py,sha256=UShR-3E2-PVvUA9SkrBGLB6HQaUlWzA_cp3Aqs196uQ,10865
5
+ android_env/loader.py,sha256=KsgWqXGjM8CHpnnkp0OY_MufYuRZoi3z2wBTEkKIHWE,3203
6
+ android_env/loader_test.py,sha256=MQ4VUJpsFdhHT78wfx14fvQcmhugHp-8S49b3cyxAik,6389
7
+ android_env/components/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
8
+ android_env/components/action_fns.py,sha256=b63Me3iHTOsuzRAqDFezBQz-hxwamk65yv9UUc5H0lc,4937
9
+ android_env/components/action_fns_test.py,sha256=G3puMCFvd5MjFekuAJkVl1bJEmjyvpwJ1sLj1Q5MYW8,6383
10
+ android_env/components/action_type.py,sha256=c8xUijaFXr-2w0ySTxUKfgRGfig-Pla_FHq-gQFHIBg,1699
11
+ android_env/components/adb_call_parser.py,sha256=E51uUwivcRLrtX9tWZSUrTwq2h6YV1i9CArQa_x3cjA,31567
12
+ android_env/components/adb_call_parser_test.py,sha256=TNhV7iqMBcymWsp5VIskb0BiiZTJEoniX_BTzyeEqHc,53188
13
+ android_env/components/adb_controller.py,sha256=x-4Pllec_YfVYKCJIy89qc5-74Jss5ruEVexAh-VKYY,5448
14
+ android_env/components/adb_controller_test.py,sha256=DSDQD56dQKZyh71PiErwFsQJJZgt201z0JyqWub07M0,7619
15
+ android_env/components/adb_log_stream.py,sha256=Q3k2GvUNRo1U5ZNpZIsUw7rhuap0UTJDD0wnV5GHC4U,2071
16
+ android_env/components/adb_log_stream_test.py,sha256=r5UAxFIQtBFGN8ZnMUxcx_ggYwFmANt_SxhmfXTauxU,2028
17
+ android_env/components/app_screen_checker.py,sha256=cK1t3CIP78WReUgVmvzkhMKyucUXxn7r7uodftJlN0Q,9629
18
+ android_env/components/app_screen_checker_test.py,sha256=DTQ8zDTr4XAz5U2mkZtovXflmuomR9piK1zPAiTcSIc,7608
19
+ android_env/components/config_classes.py,sha256=KkhpcFewaXuEgRVn8yYvH6MZDQYeCeTLFUgtJ63ZmFM,7108
20
+ android_env/components/coordinator.py,sha256=2xkv_ORC4cE5s-JKuG6JVmAZpuDpIb-KZzIFN-IUwdk,9604
21
+ android_env/components/coordinator_test.py,sha256=6FFKK4QOfgjZfifcUQEbyNc4wpxKtUV0l6VPZASJJXk,11302
22
+ android_env/components/device_settings.py,sha256=ER3ujCFkDErI5hV2iuAgxbI254JlI8VDXfDZrDgC6j4,6341
23
+ android_env/components/device_settings_test.py,sha256=nYjWSvv6dAP_sb6bXXrqPFm7o9aHFrIVzhHP5z5P5tk,7452
24
+ android_env/components/dumpsys_thread.py,sha256=8YtWBKhQuiWjiEfLvRexOgaNdkGOqiY8R_zvek_0-Bc,4696
25
+ android_env/components/dumpsys_thread_test.py,sha256=JcXSzUbdB62vMXzjuyut-hd87j8Dal0gcL9k8Rwv8eM,3866
26
+ android_env/components/errors.py,sha256=KX8JMZ2Y7X6OwRjt3AoQVlKb22Lrj2VJGIIunP8YYPc,2509
27
+ android_env/components/errors_test.py,sha256=LAalczNguB9oMcwh3ygFtZUc18PpXw6kjBOWfBwSH5g,3952
28
+ android_env/components/log_stream.py,sha256=jqL8MEPK6gQbD_VWebtptBH2tQP51iCp8WuZFhynAyQ,2096
29
+ android_env/components/log_stream_test.py,sha256=WG8krCYVqZfPrvOt4ExWe_zspOBe8FR-RF0Z9HTbAgs,3494
30
+ android_env/components/logcat_thread.py,sha256=6Ai1PvGwHYGrcxcYyzBAgiu1leu5-MkDYNlab3NosKg,4610
31
+ android_env/components/logcat_thread_test.py,sha256=lvrDmYaclIy8tCcSqSbOVYLYXsuFpZpkm6ghWy-OmCc,4261
32
+ android_env/components/pixel_fns.py,sha256=-JT25nVIKA9C73DGA7Gp8Dk0J7gDANKTIN_WFCdpU1E,2417
33
+ android_env/components/pixel_fns_test.py,sha256=pBVn6BjPwIoQ604e4WnrTtBmiZ_WwnuGS9jHs0OUwI4,3924
34
+ android_env/components/setup_step_interpreter.py,sha256=caiLotXKGskOI7c1TNE4QvAHlbHYM3SDLAWmnUe-Itg,6601
35
+ android_env/components/setup_step_interpreter_test.py,sha256=V-5pvWf8GQPf1wJyEg35Zb-ptGfZr0x7zWyOxofOK0g,11746
36
+ android_env/components/specs.py,sha256=wZHl0mnbKZuvF7CbsIzXVm5U6X4shEsaZVOTZOHmWgA,4965
37
+ android_env/components/specs_test.py,sha256=rlfGnBFKd1GrtHV2sUw5AdLje7JT3kEmgOviH-DW1n8,3721
38
+ android_env/components/task_manager.py,sha256=kC6Rgvw11wEbNta-zLFBYymvhbWibP5KSaUKtwEgXiM,13034
39
+ android_env/components/task_manager_test.py,sha256=2irqfi4lWeYNr5k1gjjEBRprsLOONWc_LvVr9ELsKmA,17040
40
+ android_env/components/a11y/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
41
+ android_env/components/a11y/a11y_events.py,sha256=89RzbGxxEAFzKC4dMyXtnoXJ_InO0nf4QjlXRR9Ul50,3614
42
+ android_env/components/a11y/a11y_events_test.py,sha256=2rAXWIQTSvJp-SnJHyVKm0njEj6xoStu7yUSRnrRu8U,5773
43
+ android_env/components/a11y/a11y_forests.py,sha256=13yY3UqaP_Hp3juweRZJbYpwrpnX8EDtkTISJKNeDiQ,3938
44
+ android_env/components/a11y/a11y_forests_test.py,sha256=vAN35Z0OJDhpGPZV1aoFuQLOZqHXSEBB4nv6jpaI0-4,7440
45
+ android_env/components/a11y/a11y_servicer.py,sha256=3ieN92t2H7NWpBM8IJzznlXMnaqvY6bDhM88bdZNewM,6658
46
+ android_env/components/a11y/a11y_servicer_test.py,sha256=Di7mq595G1OfBrWEzLK4NzNhX5pWaWHFWGDLlfON6Lo,7548
47
+ android_env/components/simulators/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
48
+ android_env/components/simulators/base_simulator.py,sha256=PDn-MhvA8qupVT-zEMOgsUtCpTXUvwHGnkFZevzJze0,6900
49
+ android_env/components/simulators/base_simulator_test.py,sha256=Vr72YAG9HvD2LuIrfU0EAZnwOMK_QkxKvDh_4i1-OvI,5805
50
+ android_env/components/simulators/emulator/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
51
+ android_env/components/simulators/emulator/emulator_launcher.py,sha256=7ifM-y11nbKS5UI1_etmHFfU8MuCvqLe2ZmV9UeBYDo,5460
52
+ android_env/components/simulators/emulator/emulator_launcher_test.py,sha256=iC3OZQGfzmsyngj2TPsYG5q1geCslyVNRvLOSkrf2nk,9595
53
+ android_env/components/simulators/emulator/emulator_simulator.py,sha256=Z4RJqzjEno3_uG_v9BysHGY3YCmXylAWTLaarOgoT7Q,17923
54
+ android_env/components/simulators/emulator/emulator_simulator_test.py,sha256=k5pLaPP6iqa5lvroNeaaxEmwLocA6v1XfIk2xJwCh6c,19908
55
+ android_env/components/simulators/fake/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
56
+ android_env/components/simulators/fake/fake_simulator.py,sha256=SFw3zqg1Oz93IslPmRX9zZt2ft5UG5YT2c5orrmvl_4,4054
57
+ android_env/components/simulators/fake/fake_simulator_test.py,sha256=9MgyHY3UR2nvMHbYDq7RHhshNAwxFQOPORjJzNVWmSM,4233
58
+ android_env/proto/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
59
+ android_env/proto/adb.proto,sha256=X_bolmXFijvIUg35PZ9bRFO3uQcMSYmpSRZLOcbchME,12454
60
+ android_env/proto/adb_pb2.py,sha256=V6OeeFev80FhYa5mORXUqPhP-dlRsbSGnT49BhqUCBg,16377
61
+ android_env/proto/adb_pb2.pyi,sha256=xUfwBUMqCgflI9CSMRNLNLipuVMPfY0sFxFtmnF6Z6Q,23055
62
+ android_env/proto/adb_pb2_grpc.py,sha256=vNVM-8YU-feIb30l4zK-PaX6TJxrRp3YmoXzjVbPQ6Y,902
63
+ android_env/proto/emulator_controller.proto,sha256=QoeqjpDXDzle60xJMd_fjJ7_Dcrd1Uh8GYflv1VgshY,41030
64
+ android_env/proto/emulator_controller_pb2.py,sha256=MN5I__xYyt2PkTJt0Y4SmC7WZPnWwdnHCep0fsH1rPI,24048
65
+ android_env/proto/emulator_controller_pb2.pyi,sha256=vTj4iPcHqd_mmjyP0Wq4UVC5sK-qNLmLOWaB9cE1APM,31365
66
+ android_env/proto/emulator_controller_pb2_grpc.py,sha256=N5dN7MyuPb1KrSUOD2OXW8nYR7Zj-BxppBDmSAcfZs8,73650
67
+ android_env/proto/snapshot.proto,sha256=Dp8XpxB4awCp7HKYTt3oxmDE7JQXo8dZf8Ajiev-xSw,5616
68
+ android_env/proto/snapshot_pb2.py,sha256=nnAYeB8hooQ1wCDS7gnclwpUxbBh6tvP_AuwLjrPNxo,4009
69
+ android_env/proto/snapshot_pb2.pyi,sha256=PKJfFw-T1oqlbOa9BkOyhQROJKpyQBdeI2WduqN7i1c,6107
70
+ android_env/proto/snapshot_pb2_grpc.py,sha256=77YRyiSHafu3fZOve3TTMrFOPFs9U3RkWKDuML-zq9g,907
71
+ android_env/proto/snapshot_service.proto,sha256=3rYywqKmqeRHb05GKloExKmMtRoHj6CPKuvmBKIt1xo,11893
72
+ android_env/proto/snapshot_service_pb2.py,sha256=vVAlMl_koqX3NL0nOWRTsEWzizWhDMGMCXte-iq0ICo,4850
73
+ android_env/proto/snapshot_service_pb2.pyi,sha256=bVvTjdZ23z3hgTKzWEDpRGfLrUOY1BJt9bP23GBFQq4,4136
74
+ android_env/proto/snapshot_service_pb2_grpc.py,sha256=YtSqIlH2MQjfK5GC_AVs-SLYgCPud8k8KWl9HNmWp_s,21907
75
+ android_env/proto/state.proto,sha256=Gt2005Tjjwh85CSEev4PuCk-aLkSeNs45EqU26_ocXY,1835
76
+ android_env/proto/state_pb2.py,sha256=HvD1GwE8gSqCw6VDeDMs2LOZzqvbhn2ho1thPqYHaVo,4487
77
+ android_env/proto/state_pb2.pyi,sha256=hYPYNpE4buR3rseWE-hV64uxPaQv4AUn-SmB1ZqrCRI,3927
78
+ android_env/proto/state_pb2_grpc.py,sha256=Pk53-e6OuAxN91WhKy-79wqAulyvqL2O4e6oAdfmlX4,904
79
+ android_env/proto/task.proto,sha256=I2VJHDURrzJda2BxUd6uk2RZCi91Hgmlwlud_B0uUng,6712
80
+ android_env/proto/task_pb2.py,sha256=-Iddr4eCppqNdqnXZFL8LdzaG14jc5JQkmMuwheJe_A,5376
81
+ android_env/proto/task_pb2.pyi,sha256=YZU0Lfn1xYLFqw7jB0TIvIAy055WwrJQ1gIQZm4O6k4,8345
82
+ android_env/proto/task_pb2_grpc.py,sha256=4EEVufu48sWUcYW64keFRioRzy6RUTNQmghX-mDm1fg,903
83
+ android_env/proto/a11y/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
84
+ android_env/proto/a11y/a11y.proto,sha256=2uzZorYfySBnjFbV6tzFLLgPvUPHv5ooQzo6_ydrRTo,2333
85
+ android_env/proto/a11y/a11y_pb2.py,sha256=FfBb2UCdf4Ns-nyrASdsQHeFSOuntmw2cWIkYUN00tA,3611
86
+ android_env/proto/a11y/a11y_pb2.pyi,sha256=pNKW7nlq7xrbQvM1l1R449Z6OoAh7vX5DfBtsaJjdjM,2137
87
+ android_env/proto/a11y/a11y_pb2_grpc.py,sha256=Iob7YQkSFhiNR4Jil_yBKmV5XfppmiffULJN3R0OoU4,8276
88
+ android_env/proto/a11y/android_accessibility_action.proto,sha256=x9R6NPuzmFsBNsGuwEGamIZoCelz2tUq39ARo-JxvZk,1190
89
+ android_env/proto/a11y/android_accessibility_action_pb2.py,sha256=aQnLzQbTdvwjlpomtlyVqyFmYQBd9G-vzgJrIZ-dHUc,1695
90
+ android_env/proto/a11y/android_accessibility_action_pb2.pyi,sha256=eCqPILKFXbQuc5-XN4rZHn6fT96uTqqSiJGLncrJMqQ,484
91
+ android_env/proto/a11y/android_accessibility_action_pb2_grpc.py,sha256=jsm3D_Q-1tkCbzNSOmabw6dxLYhgFzBiM57ULqG5MI0,932
92
+ android_env/proto/a11y/android_accessibility_forest.proto,sha256=ndfo6LXDujTpg5_-fGfjH4Fo0FxuCkWNak9-LOFxGJ4,1066
93
+ android_env/proto/a11y/android_accessibility_forest_pb2.py,sha256=3_8bMxHV9m8myMzYFly8Uh-cjd5GZqFBYw2j5GYQ__M,1936
94
+ android_env/proto/a11y/android_accessibility_forest_pb2.pyi,sha256=INgwTrlo5K9qjZL2sPm4UhQZRxIZG58YwDYy80GqE7M,858
95
+ android_env/proto/a11y/android_accessibility_forest_pb2_grpc.py,sha256=Vo1oBvCj5tAQdyjAwvPEVB0SA4P9N09Q-3R07WDWXDE,932
96
+ android_env/proto/a11y/android_accessibility_node_info.proto,sha256=7hdrPIJBp6WvYulP319hwR00gAYVVwMvxjBEjNuXvwQ,3618
97
+ android_env/proto/a11y/android_accessibility_node_info_clickable_span.proto,sha256=ICeo96jzLDNxeHu09zY7jOqGl1BBkJjSdmsH1hBX6w0,1722
98
+ android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2.py,sha256=8DwC8Y4mVSJlqbtl8Zbx7N72TvgKsTYPvupqvLAzQi4,2302
99
+ android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2.pyi,sha256=Eol3Jq_R0G1J5eY1fyCow3hpv1ACHFN7W2CHH-XyObk,1557
100
+ android_env/proto/a11y/android_accessibility_node_info_clickable_span_pb2_grpc.py,sha256=KwVLwbIm5h7eGr3UCKcpHv7MB6E18ZXRZtwe86MTP30,950
101
+ android_env/proto/a11y/android_accessibility_node_info_pb2.py,sha256=84kBRrPAM_rAcBDO7I_miVBnQ8npKzVa5YeFDOg_kME,3961
102
+ android_env/proto/a11y/android_accessibility_node_info_pb2.pyi,sha256=jATqnzb0aTVWMZ0ceKsvUtepbeXJyTP6RsXAZhvtYz4,4930
103
+ android_env/proto/a11y/android_accessibility_node_info_pb2_grpc.py,sha256=OPo7LYv2LLp-7OQgfRlF9qWDG9DqG0Pxz891GWcftds,935
104
+ android_env/proto/a11y/android_accessibility_tree.proto,sha256=YNys9Lftm3_ZX8UBX85plkUrBX0yZF4aUG8Z4AxMsME,1071
105
+ android_env/proto/a11y/android_accessibility_tree_pb2.py,sha256=Y_vvNXzgeJVS5XYO2sDFXvuqMyhr6kvobupsonZuiEc,1915
106
+ android_env/proto/a11y/android_accessibility_tree_pb2.pyi,sha256=7ZhU0BPVuNDwA64UUqWiiPdCZna9-I-YtW5hDDpscNA,836
107
+ android_env/proto/a11y/android_accessibility_tree_pb2_grpc.py,sha256=ovpm72_3bzQElmlScPRhJbyWGxD9tZAxXCHqENxkkYA,930
108
+ android_env/proto/a11y/android_accessibility_window_info.proto,sha256=Y-_FwKQka-bqZaO0nN-4oJb36LMeekusgszTrprcFTE,2477
109
+ android_env/proto/a11y/android_accessibility_window_info_pb2.py,sha256=UPc74LsheQLpdwMaUa4aaKu9FK4S-rlsA9Pw0bbTbjc,3018
110
+ android_env/proto/a11y/android_accessibility_window_info_pb2.pyi,sha256=vMpxVDxPXR6KGfUuSkaCnd75j-7j2bQ0XjO19s8WFyM,3084
111
+ android_env/proto/a11y/android_accessibility_window_info_pb2_grpc.py,sha256=bMBhD2lRfQgmfTLBMGLeUdGgnGNdDWWRvLAzj9nGEFk,937
112
+ android_env/proto/a11y/rect.proto,sha256=0mFNLBVLRqTNMAhrOBYxkkfkjzPpjK8esSub6_tEXYo,975
113
+ android_env/proto/a11y/rect_pb2.py,sha256=k-8jdpIqIhr9ngTuH-oMMIT-Ga_r6i8I-9Xl_iAVv4o,1631
114
+ android_env/proto/a11y/rect_pb2.pyi,sha256=xWZM1AkZDX06weCFHnx518IDRdOvFPzYNKdFfXRsi7s,655
115
+ android_env/proto/a11y/rect_pb2_grpc.py,sha256=qrUg3Vf4_8SWt4jfQCBnsH-_rEc-ocm1Si9XoR_vFXI,908
116
+ android_env/wrappers/__init__.py,sha256=STSmCEY-QvdoAUc5koA0DGqLp_yEpeC6dTVP6HcivFM,610
117
+ android_env/wrappers/a11y_grpc_wrapper.py,sha256=L-xi9zSh4ZA3bFctuZVR-EnV1dQ2butO3K2DQM1e_II,18756
118
+ android_env/wrappers/a11y_grpc_wrapper_test.py,sha256=esVoEi2xF0VyJ5hHTpgE4AEHxfphieHSfiKM39vqBKE,31569
119
+ android_env/wrappers/base_wrapper.py,sha256=dk8BXr2j-zCMKzEbTH1jAp0OAbbRClmjWX2ITJCyjwk,3555
120
+ android_env/wrappers/base_wrapper_test.py,sha256=N7zlHzs_taSLcfsH3baAUyzijjtY3ISY1PbZXddkCWA,5517
121
+ android_env/wrappers/discrete_action_wrapper.py,sha256=PbkxWAAcyGhmwtfeXI4TCjvJdsuNxONYgqeKYRfP364,5832
122
+ android_env/wrappers/discrete_action_wrapper_test.py,sha256=vpMdLN1RbG28-m7u88X4KNV2suvXofmk6WpdMheGyGQ,14387
123
+ android_env/wrappers/flat_interface_wrapper.py,sha256=vovk3b58e9tefxyNCyQCoHPNeoCIonpr_fGnfEzHrNc,4296
124
+ android_env/wrappers/flat_interface_wrapper_test.py,sha256=8x1PEY7oRc2OejgbhjpnZTDC5LcR6ruVgMYZSpv__e8,6126
125
+ android_env/wrappers/float_pixels_wrapper.py,sha256=1qEZjlmwNRTmyjQlWaUv2CGKYNqyhZLA5zVKYgyEmBk,2538
126
+ android_env/wrappers/float_pixels_wrapper_test.py,sha256=svGGOJxN-eTYHcxcBQCIEr7jkFgt-8Va2bIBLRFUg6Q,5312
127
+ android_env/wrappers/gym_wrapper.py,sha256=rfA3xPcaqT4gkz4nlOlGMUR1Vp__VJksF1cQTTgS5u4,3077
128
+ android_env/wrappers/gym_wrapper_test.py,sha256=vmOeQWuRy9cRnN73c7Nfix2UOlp-Pzge4GX6NKjzqVU,3949
129
+ android_env/wrappers/image_rescale_wrapper.py,sha256=qu7mS_VQDiRme5YQrM2V9sPdOCgS-Py-SZaH_EJznpE,4118
130
+ android_env/wrappers/image_rescale_wrapper_test.py,sha256=5vMtQlWMhp-48DVR-m_H-6oSjttxN1q5bzD_hOsT7wA,3931
131
+ android_env/wrappers/last_action_wrapper.py,sha256=s2Vc3x3jZFkF4VSl6b-Q2AdDywUWNo2afBvb9oVhp2o,4528
132
+ android_env/wrappers/last_action_wrapper_test.py,sha256=Tp6ZBwFo8anASs8PsDMyRcQGa1q7x9E4ajHpdkFVL5U,6346
133
+ android_env/wrappers/rate_limit_wrapper.py,sha256=B6zt04ZGhwn8mLFDRSApUB9uyxuQ_9LzzIOCdCXMuzQ,4197
134
+ android_env/wrappers/rate_limit_wrapper_test.py,sha256=aL49NZhes18I1oFlwaFxK3aalmA7zKaAhh7vwzdWcSs,8940
135
+ android_env/wrappers/tap_action_wrapper.py,sha256=WewkSiy-vSItJiDWIA3OpPi9cBmOWL9jeUQ61eDe01Y,3539
136
+ android_env/wrappers/tap_action_wrapper_test.py,sha256=vzBlifHHqE2dc58Wf-UjZaWW5mlsqxIrstL8UPqMCy4,5721
137
+ android_env-1.2.3.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
138
+ android_env-1.2.3.dist-info/METADATA,sha256=xxLbZp1C7OLKDKmoBPvOalgP4Q79dac5x04tx_svBFc,14014
139
+ android_env-1.2.3.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
140
+ android_env-1.2.3.dist-info/top_level.txt,sha256=Sbph_-u1WEUaKYO2iaD4Rh-9OtWJUl1mSJPhcSeJJp8,12
141
+ android_env-1.2.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: setuptools (78.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,88 +0,0 @@
1
- android_env/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
2
- android_env/env_interface.py,sha256=5GW1dnktuHUOcWoys5E1TQYrVrEv9WD3FS1MaH87HtI,3662
3
- android_env/environment.py,sha256=F7ULogovNOAdifQgvpR7CKm-RPv9jo3iSOtFOFKzMLY,5746
4
- android_env/environment_test.py,sha256=DC5ImseA2o3E3FrTKUOZ8dT3DLOubt6PX-6chpnrTbA,9504
5
- android_env/loader.py,sha256=p_WnbXe-pCzcScg_R0DmJDUezVZEYJFFlNCbBMliRdQ,2682
6
- android_env/loader_test.py,sha256=I-cP1RMGtiEdWENR2fxlfQE3l7ROZF75Y3FnYWOh_ik,3565
7
- android_env/components/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
8
- android_env/components/action_type.py,sha256=JqfkEmlm2-M14hcCiRd2OY2y5Esv-ifqMXisgO9wZZ4,882
9
- android_env/components/adb_call_parser.py,sha256=rlfh_9i__xM6YvXoQS0U1zfmmuwClqichPY6_tlmvhw,30990
10
- android_env/components/adb_call_parser_test.py,sha256=i9Yzv1hRxOFCFlVJHAN6Kt9mHvGxk8ZaAZrYegmge4w,53789
11
- android_env/components/adb_controller.py,sha256=kMLm0V1Ot9Um5f0wFEhIEvpQq4XaoUpMUxt1O1eY514,5809
12
- android_env/components/adb_controller_test.py,sha256=v3v8u2Z7d_QODJ43O-oTVRSjaHKtpjrL0oIriZ9tCuY,4906
13
- android_env/components/adb_log_stream.py,sha256=aQuv1JppPQyBxZ2dGQB00YLEzX6d_daZCAAkC1YDpyg,2065
14
- android_env/components/adb_log_stream_test.py,sha256=iL8bsoINW535pREJAwY0dIqc23J6mEvGGUZbK2ypshU,2028
15
- android_env/components/app_screen_checker.py,sha256=0-TnC-3ZgYml7UM7WnQJ9CW-LqTiQEWVGnpfoR1Tv8U,9704
16
- android_env/components/app_screen_checker_test.py,sha256=7S-lnu2Q9KwAk3v9VVcFR7tzsQZzkQA4oNRUgEcGB3M,7608
17
- android_env/components/coordinator.py,sha256=-yrFF7-u0cM19XBMmZUi2ALIpfjuqfwV6O44odcG8Js,21083
18
- android_env/components/coordinator_test.py,sha256=HfoG8i4Bu4gWyL7b9w5MtPbeuTOPO4vG85c3kk8INfs,21882
19
- android_env/components/dumpsys_thread.py,sha256=Khc8k_4IbRzsmD6i4gNzCWl9M_3_VBYljwwMZc2y9EA,4730
20
- android_env/components/dumpsys_thread_test.py,sha256=Qffb6v1Gk5FLHTCQKO3DihA9WjNWCXjeK-hBjWmUea0,3866
21
- android_env/components/errors.py,sha256=G_HoputMhgfxTj4xOeRoBoBLkKqmZW5TIG6nvjC_nBA,2542
22
- android_env/components/errors_test.py,sha256=uYzSwpNR0v69kEjmIQBYvEZSqEDGFV47tzBiMmNEFPU,3952
23
- android_env/components/log_stream.py,sha256=JBH9jV0Lj0Jj-Hzct4Hsbbx92g-p7DplcnYOhqIeXaU,2087
24
- android_env/components/log_stream_test.py,sha256=JIrfEYh1WIxQK7Krlw0HePqhWEU058eN7gd7trhOuhA,3494
25
- android_env/components/logcat_thread.py,sha256=h12KDd6tXEtiUe68RHzQ8rjBYR05NDAIrAUrIai29O8,4728
26
- android_env/components/logcat_thread_test.py,sha256=I3zppSNoqkYwEI_SV6kZRScCVVluru51iifB-Rl5wqc,4289
27
- android_env/components/setup_step_interpreter.py,sha256=xZ_5F6Fv7bDBpYunwonngFnT20Q-3inmGbJ3WiMUxxI,6528
28
- android_env/components/setup_step_interpreter_test.py,sha256=lWVzMc5d4ioAkHSMKDk6Czlz84wfvQOAzojSaEz08_c,11746
29
- android_env/components/specs.py,sha256=_qXY8HBWvnbwweergcttzNVVJI7pk9y8vy5GVob70EM,4965
30
- android_env/components/specs_test.py,sha256=yOMdgwwWKRaEZRM9jQRccVJTPAZA_5SiAMuNlBk91GE,3721
31
- android_env/components/task_manager.py,sha256=m4eHeowGe_btwNWRb8C8YnsYBbL4QqUjDTE2ird2ry4,13541
32
- android_env/components/task_manager_test.py,sha256=q5Yadgh0_n5O5XilNZzhTpJ_bXlpU3SK1rWC8x0Viqg,17751
33
- android_env/components/utils.py,sha256=Sbhfz1qSnzXHS2Gmihzlt2nJrzJE2cpq53Cpzy4GwT8,2656
34
- android_env/components/utils_test.py,sha256=NGwwpxVzX3LTuxlSMIdF0gqwJIA9WU6LTJXmLZs_SY0,3889
35
- android_env/components/simulators/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
36
- android_env/components/simulators/base_simulator.py,sha256=rYKpwfSP0wdnpk0bPsyg5YuG7Gw_Jlw3f_Pp3DaU048,5177
37
- android_env/components/simulators/base_simulator_test.py,sha256=yr0GW9ojUr5XwOrFbccSyHgXo5Svmsg7oqau25tt4Gk,2122
38
- android_env/components/simulators/emulator/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
39
- android_env/components/simulators/emulator/emulator_launcher.py,sha256=lY5syvvoCYb17YQNDKZhmZqPrqD6qXn7rfS7Cnm4OI4,6885
40
- android_env/components/simulators/emulator/emulator_launcher_test.py,sha256=wKuL_BwJIEs5wkp9E_CPdhUpKZvqchGfc65iIws-UNc,7112
41
- android_env/components/simulators/emulator/emulator_simulator.py,sha256=ga_7ZKyaE9YTcNif8sbfHltaf6sCLYvLWvFUs21vwek,18609
42
- android_env/components/simulators/emulator/emulator_simulator_test.py,sha256=h2bB70lWsPhjwua75PTbWeNCU7aaf66x_C5w5Q8l52w,18245
43
- android_env/components/simulators/fake/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
44
- android_env/components/simulators/fake/fake_simulator.py,sha256=S0b9uYhpdsBifbSv-q6kipD0B_o0PhjU3B2ARgvGbyc,4254
45
- android_env/components/simulators/fake/fake_simulator_test.py,sha256=JVJ3E3jKgA3Klft8iJFkTJ-xboKGBpwkU-3q4i-VRWU,3833
46
- android_env/proto/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
47
- android_env/proto/adb.proto,sha256=br9dMO8dX_dHx140FkPH79NC7u2ERCn2ywnotvCSA_g,12048
48
- android_env/proto/adb_pb2.py,sha256=1fR8L0rZnZT_fwCS01nBMgfWZKMZ68nr-UgNMHXsdxI,14540
49
- android_env/proto/adb_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
50
- android_env/proto/emulator_controller.proto,sha256=9Yi06JaYfyF-Ry0tCm74V_vZ65vZGqYLa-MQ23gguiY,41030
51
- android_env/proto/emulator_controller_pb2.py,sha256=ngjr8-UI5dbLhOyIhTGM2e0I8YUko0GSNHtmLountyA,22197
52
- android_env/proto/emulator_controller_pb2_grpc.py,sha256=MpbKT2C3QmCcc9NCfqqHPEZmnnzRKzCLfMrraCjRC6Q,67034
53
- android_env/proto/snapshot.proto,sha256=a31nBfRGJXaaBIdvYw6wAlmme9XYP7k76rh8PUQS0X8,5616
54
- android_env/proto/snapshot_pb2.py,sha256=16ujHTuZRDCWZ8FdUu2us5Z6ZppOiIRvUGvGbqhSoFs,3534
55
- android_env/proto/snapshot_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
56
- android_env/proto/snapshot_service.proto,sha256=QNM81V1dMg8Yzy9WLhJjPMa_zJh9N7J-pl8z49v4udg,11893
57
- android_env/proto/snapshot_service_pb2.py,sha256=CpTHsecH1qUlA13gRsmwvhJZ_sXd99qFlhxy32NazYo,4295
58
- android_env/proto/snapshot_service_pb2_grpc.py,sha256=O-LnvegtHks1-0EWRN2rlHeP8Qltn4ofwLZrKQvlvEw,19860
59
- android_env/proto/state.proto,sha256=XoOovB_3kpN4F78Hezmli0_2yeo-E4ZwND0r0-Io9R4,1835
60
- android_env/proto/state_pb2.py,sha256=xolhHYTDFRMqHTMZEf5ktc9R7qEXBMSkRBEzqghQoxA,3795
61
- android_env/proto/state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
62
- android_env/proto/task.proto,sha256=xZP0RQYcZLOipORzGdagMacqcP_74nmd8xrnGBy_Ph8,6614
63
- android_env/proto/task_pb2.py,sha256=cCDIVKve2UECro4NwDihncuEQDLZIf0Q3c5ubDqSqzI,4785
64
- android_env/proto/task_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
65
- android_env/wrappers/__init__.py,sha256=xJkp7cT8LWF_075fm8gEknRj_87cNrM6p7u1gEdXCxA,610
66
- android_env/wrappers/base_wrapper.py,sha256=vJLtFVNRmYueo3z54tl1LAOdrS0wpTs_x26J2dzKlME,3688
67
- android_env/wrappers/base_wrapper_test.py,sha256=eoA4IU0hNQ-i-hh4kMdjMs7bQKNRPnFKVsRJgmY9vwc,5749
68
- android_env/wrappers/discrete_action_wrapper.py,sha256=AzVsQx5A5Ge3I4T-vUfcqcx69Huz-B59AEjpV_P7Bas,5895
69
- android_env/wrappers/discrete_action_wrapper_test.py,sha256=nRb_A_JG46gX3BYJpNmu_0x_GOx59yGHULLAiZGoGjI,14387
70
- android_env/wrappers/flat_interface_wrapper.py,sha256=h7WfRepLbud-onZDwz0ubZ7ubaVufiHgRFwP6mw3CLo,4320
71
- android_env/wrappers/flat_interface_wrapper_test.py,sha256=NsBFu-8JFdCUGcLF06n0lHPt7Q8VDhqEY2DiveP6DRA,6126
72
- android_env/wrappers/float_pixels_wrapper.py,sha256=xNFauDKKsDnTugFp2GS42DuQ0mHVJMJCkrtYHRNfimI,2572
73
- android_env/wrappers/float_pixels_wrapper_test.py,sha256=fKNcRMg4EeNB6wCR7mah2M1_aPcxkO3Z7Qao017CLMw,5312
74
- android_env/wrappers/gym_wrapper.py,sha256=qG3E__BJUazTQx_detyzRQiw9LLsI6WHBHW9j8Jc9xI,3077
75
- android_env/wrappers/gym_wrapper_test.py,sha256=RlMyl8o3Jwh8VaOPea_Tk4DkukdZW-zEsWZZJwqofKE,3949
76
- android_env/wrappers/image_rescale_wrapper.py,sha256=nbABvFo_WZRFXasmXnqCkwwzkTqKSRCamM7o8BhTaaw,4106
77
- android_env/wrappers/image_rescale_wrapper_test.py,sha256=KkeI5D1kV2UB9R4oJYJSYu0wOpeBSmdkTEuWhtpRNXM,3931
78
- android_env/wrappers/last_action_wrapper.py,sha256=oYo7qbkalL2S_4HNOKe1imvyOwDC246TqaEeUA-82jI,4513
79
- android_env/wrappers/last_action_wrapper_test.py,sha256=SycT1SAv0LaHt_I4hjb7xHyAdi2GQdbO4nofi8PMB-w,6346
80
- android_env/wrappers/rate_limit_wrapper.py,sha256=2FEvVxKLY8mP_AoWymKVLl1Wk6cotIbgmN97pUkbppM,4197
81
- android_env/wrappers/rate_limit_wrapper_test.py,sha256=xetut5xAYcn4L0WIa7xCCU6oCbqjhttpipsxzq3GxGU,8940
82
- android_env/wrappers/tap_action_wrapper.py,sha256=00ATy15EJWh-pNqN-LSkNtIGZbnLQISumu85fw70T1s,3497
83
- android_env/wrappers/tap_action_wrapper_test.py,sha256=907BxAg8ea4TKdPvZKz7IRMou4XbF-I4FCC3SXhWjrM,4730
84
- android_env-1.2.2.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
85
- android_env-1.2.2.dist-info/METADATA,sha256=Bf3AjcFV5kGin3QpVdNbs9WqsnAjnXGMC70Mk4ros6k,14162
86
- android_env-1.2.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
87
- android_env-1.2.2.dist-info/top_level.txt,sha256=Sbph_-u1WEUaKYO2iaD4Rh-9OtWJUl1mSJPhcSeJJp8,12
88
- android_env-1.2.2.dist-info/RECORD,,