Continuant de progresser dans son initiative, en avril de l’année dernière, Google a annoncé la disponibilité d'une version bêta de son outil baptisé ARC Welder qui ambitionnait de convertir n'importe quelle application Android en une application Chrome ARC compatible. À ce moment, Google a précisé que les applications se servant des Google Play Services devraient poser des problèmes dans la mesure où il n’y avait que certaines API qui étaient supportées, notamment Auth (OAuth2), GCM, Google+ sign-in, Maps, Location et Ads.
Cette barrière pourrait bientôt être franchie. En effet, certains utilisateurs du forum spécialisé Reddit parmi lesquels un utilisateur répondant au pseudonyme TheWiseYoda ont observé un comportement plutôt intéressant dans le comportement de leurs Chromebook : ils ont vu que lorsque les paramètres se chargeaient, une option est apparue sur l’écran qui indiquait « permettre aux applications Android de s’exécuter sur votre Chromebook ». L’option a immédiatement disparu, impossible donc de cliquer sur le bouton de confirmation. Après avoir fait quelques recherches sur le code source de Chrome OS, TheWiseYoda est tombé sur ces lignes de code (à partir de la ligne 6522)
Code : | Sélectionner tout |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | <!-- Android Apps --> <message name="IDS_OPTIONS_ARC_TITLE" desc="The title of Android Apps section."> Android Apps </message> <message name="IDS_OPTIONS_ARC_ENABLE" desc="Label for the checkbox that enables Android apps."> Enable Android Apps to run on your Chromebook. </message> <message name="IDS_ARC_NOTIFICATION_TITLE" desc="Title of the first-run notification that enables Android apps."> Google Play Store </message> <message name="IDS_ARC_NOTIFICATION_MESSAGE" desc="Description message of the first-run notification that enables Android apps."> Over a million apps and games now available on your <ph name="DEVICE_TYPE">$1<ex>Chromebook</ex></ph>. </message> <message name="IDS_ARC_OPEN_PLAY_STORE_NOTIFICATION_BUTTON" desc="Label for the button in the first-run notification that enables Android apps."> Open Play Store </message> <message name="IDS_ARC_CANCEL_NOTIFICATION_BUTTON" desc="Label for the button in the first-run notification that cancel running Android apps."> Cancel </message> <message name="IDS_ARC_OPT_IN_DIALOG_HEADER" desc="Title of the opt-in dialog for Android apps."> Google Play store now on your <ph name="DEVICE_TYPE">$1<ex>Chromebook</ex></ph> </message> <message name="IDS_ARC_OPT_IN_DIALOG_DESCRIPTION" desc="Description of the opt-in dialog for Android apps."> Choose from over a million apps and games on Google Play to install and use on your <ph name="DEVICE_TYPE">$1<ex>Chromebook</ex></ph>. </message> <message name="IDS_ARC_OPT_IN_DIALOG_LEGACY" desc="Legacy text of the opt-in dialog for Android apps."> By proceeding, you're agreeing to the <ph name="BEGIN_LINK"><a class="link" href="https://www.google.com/policies/terms/" target="_blank"></ph>Google Terms of Service<ph name="END_LINK"></a></ph> and <ph name="BEGIN_LINK"><a class="link" href="https://www.google.com/policies/privacy/" target="_blank"></ph>Privacy Policy<ph name="END_LINK"></a></ph>. </message> <message name="IDS_ARC_OPT_IN_DIALOG_BUTTON_GET_STARTED" desc="Get started button of the opt-in dialog for Android apps."> Get Started </message> <message name="IDS_ARC_OPT_IN_DIALOG_BUTTON_RETRY" desc="Retry button of the opt-in dialog for Android apps."> Retry </message> <message name="IDS_ARC_OPT_IN_DIALOG_PROGRESS_LSO" desc="Name of LSO loading progress of the opt-in dialog for Android apps."> Just a sec... </message> <message name="IDS_ARC_OPT_IN_DIALOG_PROGRESS_ANDROID" desc="Name of Android loading progress of the opt-in dialog for Android apps."> This may take up to a minute or so </message> <message name="IDS_ARC_OPT_IN_DIALOG_AUTHORIZATION_FAILED" desc="Error message shown in case when auth code is not returned by server."> Athorization failed </message> <message name="IDS_ARC_SIGN_IN_NETWORK_ERROR" desc="Android sign-in error because of network error"> Network error </message> <message name="IDS_ARC_SIGN_IN_SERVICE_UNAVAILABLE_ERROR" desc="Android sign-in error because of service is unavailable"> Service unavailable </message> <message name="IDS_ARC_SIGN_IN_BAD_AUTHENTICATION_ERROR" desc="Android sign-in error because of bad authentification"> Bad authentication </message> <message name="IDS_ARC_SIGN_IN_GMS_NOT_AVAILABLE_ERROR" desc="Android sign-in error because of GMS services are unavailable"> GMS services are unavailable </message> <message name="IDS_ARC_SIGN_IN_CLOUD_PROVISION_FLOW_FAIL_ERROR" desc="Android sign-in error because of cloud provision flow failed"> Cloud provision flow failed </message> <message name="IDS_ARC_SIGN_IN_UNKNOWN_ERROR" desc="Android sign-in error because of unknown error"> Unknown error </message> <message name="IDS_ARC_SERVER_COMMUNICATION_ERROR" desc="Android sign-in error because of server communication error"> Server communication error </message> <message name="IDS_FLAGS_ENABLE_IME_MENU_NAME" desc="Name of the about: flag for enabling opt-in IME menu."> Enable opt-in IME menu </message> <message name="IDS_FLAGS_ENABLE_IME_MENU_DESCRIPTION" desc="Description of the about: flag for enabling opt-in IME menu."> Enable access to the new IME menu in the Language Settings page. </message> |
Dans la balise message avec le nom ARC OPT IN indique « choisissez parmi plus d’un million d’applications et de jeux sur Google Play à installer et utiliser sur votre Chromebook » (ligne 6533).
Google n’a fait aucune annonce officielle relative à la venue des applications et jeux Android sur Chrome OS. Peut-être une annonce officielle durant l’édition 2016 de la Google I/O ?
Source : code source Chromium, remarque de TheWiseYoda
Et vous ?
À la lecture du code source, qu'en pensez-vous ?
Voir aussi :
Google dévoile ARC Welder bêta un outil pour faire tourner des applications Android sur Chrome OS, Windows, Linux et OS X