androidappsonchromeos

Install unknown source apk on ChromeOs

我怕爱的太早我们不能终老 提交于 2019-12-22 08:22:31
问题 I updated my Chromebook Asus Flip this morning to get the Play Store. My Chromebook has the M53dev channel version installed. It is working well. I can install and run Android apps downloaded from the Play Store. I would like to test my app but in the Security settings, I do not have the option to allow Unknown Source. I tried anyway to install my apk (that I downloaded using the Android Google Drive app) but the installation is blocked. Does anyone know how to do this? 来源: https:/

Install unknown source apk on ChromeOs

僤鯓⒐⒋嵵緔 提交于 2019-12-05 14:34:55
I updated my Chromebook Asus Flip this morning to get the Play Store. My Chromebook has the M53dev channel version installed. It is working well. I can install and run Android apps downloaded from the Play Store. I would like to test my app but in the Security settings, I do not have the option to allow Unknown Source. I tried anyway to install my apk (that I downloaded using the Android Google Drive app) but the installation is blocked. Does anyone know how to do this? 来源: https://stackoverflow.com/questions/37877608/install-unknown-source-apk-on-chromeos

Android app which interacts with BLE devices not working on Chromebook

老子叫甜甜 提交于 2019-12-05 02:48:31
问题 I have an Android app which interacts with custom BLE devices. This app works as expected on devices which have android version 4.4 to 6.0. Now I want to make this available on Chromebooks through the Google Playstore on Chromebooks(App Runtime for Chrome). I installed this app on my Google Asus Flip Chromebook(Chrome OS version 55, ARC version 3617689) by sideloading the APK onto it. But it is not working as expected. These are the steps I took: Call a startLeScan() which gives the

Android app which interacts with BLE devices not working on Chromebook

三世轮回 提交于 2019-12-03 21:02:33
I have an Android app which interacts with custom BLE devices. This app works as expected on devices which have android version 4.4 to 6.0. Now I want to make this available on Chromebooks through the Google Playstore on Chromebooks(App Runtime for Chrome). I installed this app on my Google Asus Flip Chromebook(Chrome OS version 55, ARC version 3617689) by sideloading the APK onto it. But it is not working as expected. These are the steps I took: Call a startLeScan() which gives the BluetoothDevice as a scanResult. Call the connectGatt() method, and the device is connected and in the

What will be the side-loading and debugging mechanism for Android apps on ChromeOS?

做~自己de王妃 提交于 2019-12-03 11:21:40
问题 I've gone through everything on http://www.chromium.org/chromium-os/android-apps and also watched the IO video and there doesn't seem to be any mention of what the side-loading (and debugging) mechanism available for developing/testing Android apps on ChromeOS will be? I know that ARC used adb on desktops but not Chromebooks Given that the new implementation is different and its a full Android framework in a Linux container and has access to USB, will ADB be available for this prupose? Using

What will be the side-loading and debugging mechanism for Android apps on ChromeOS?

孤人 提交于 2019-12-03 01:45:20
I've gone through everything on http://www.chromium.org/chromium-os/android-apps and also watched the IO video and there doesn't seem to be any mention of what the side-loading (and debugging) mechanism available for developing/testing Android apps on ChromeOS will be? I know that ARC used adb on desktops but not Chromebooks Given that the new implementation is different and its a full Android framework in a Linux container and has access to USB, will ADB be available for this prupose? Using ADB could also be useful for remote debugging since Devtools already runs an adb client EDIT: As of 9

How to detect programmatically if “Android App” is running in chrome book or in Android phone

元气小坏坏 提交于 2019-11-28 10:56:06
Since Google has announced that chromebook also support "Android Application" so I also wanted to support my app on chromebook although it is running fine with few exception which I need to fix. I want to write code in such a way that that is will execute only for chromebook and will not execute for android phones and tablet. I have check with Chromebook documentation in android developer site, I didn't get any such API which tell that your app is running in chrome book environment. Suggestion from ARC Beta documentation did not work: If you need to check if your app is running on Chrome OS,

How to detect programmatically if “Android App” is running in chrome book or in Android phone

折月煮酒 提交于 2019-11-27 03:55:15
问题 Since Google has announced that chromebook also support "Android Application" so I also wanted to support my app on chromebook although it is running fine with few exception which I need to fix. I want to write code in such a way that that is will execute only for chromebook and will not execute for android phones and tablet. I have check with Chromebook documentation in android developer site, I didn't get any such API which tell that your app is running in chrome book environment.