Un tweet de Hiroshi Lockheimer, président de la division Android et Chrome OS chez Google, a contribué à titiller les esprits : « nous avons annoncé la première version d'Android il y a 8 ans aujourd'hui. J'ai le sentiment que dans 8 ans, nous allons encore parler du 4 octobre 2016. »
En octobre dernier, évoquant des sources anonymes et fiables, le Wall Street Journal a avancé que Google prévoit d’annoncer l’intégration de Chrome OS au sein d’Android. Pour être plus précis, le quotidien a avancé que Google va fusionner des parties majeures de Chrome OS dans Android dont la résultante serait poussée dans un secteur où Android n’est pas présent : les ordinateurs portables. Le Wall Street Journal a également indiqué que Google a l’intention de lancer ce système d’exploitation unifié, compatible avec les différents terminaux, dès 2017, bien qu’il ne serait dévoilé qu’à partir de 2016. Le quotidien a précisé que Chrome OS sera toujours disponible pour les entreprises mais que Google va concentrer ses efforts à l’avenir sur l’adaptation d’Android pour les ordinateurs portables.
Si Google avait démenti en partie ces informations, expliquant notamment être très engagé dans le développement de Chrome OS, quelques éléments sont venus accréditer l’affirmation du quotidien comme le fait qu’en avril dernier, 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 ». Même si l’option a immédiatement disparu, TheWiseYoda a fait quelques recherches sur le code source de Chrome OS et est tombé sur une portion de code intéressante :
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> |
En attendant, le système hybride serait en test sur la tablette Nexus 9, proposée par le constructeur HTC. C’est ce que suggère un fichier AOSP d’Android 7.0 Nougat intitulé SurfaceCompositionTest.java et qui a trait à un test de performances graphiques. La tablette a pu être choisie pour son processeur puissant Tegra K1.
Source : Android Authority