google-chrome-arc

Are ARC Welder packaged Android apps only available on Chrome OS?

旧城冷巷雨未停 提交于 2020-01-28 09:53:46
问题 If I package an Android app with Google ARC Welder and distribute it through the Chrome Web Store, will it be available for Windows, Mac, Linux, or only for Chrome OS? If so, are there any news if that will change in future? 回答1: It's ChromeOS only, as clearly stated at https://developer.chrome.com/apps/getstarted_arc : The App Runtime for Chrome (Beta), or ARC, lets you run your favorite Android apps on Chrome OS There is no information about support for other platforms other than for

Are ARC Welder packaged Android apps only available on Chrome OS?

▼魔方 西西 提交于 2020-01-28 09:53:31
问题 If I package an Android app with Google ARC Welder and distribute it through the Chrome Web Store, will it be available for Windows, Mac, Linux, or only for Chrome OS? If so, are there any news if that will change in future? 回答1: It's ChromeOS only, as clearly stated at https://developer.chrome.com/apps/getstarted_arc : The App Runtime for Chrome (Beta), or ARC, lets you run your favorite Android apps on Chrome OS There is no information about support for other platforms other than for

Chrome ARC Welder Logcat

ε祈祈猫儿з 提交于 2020-01-23 17:35:23
问题 I am trying to get logcat working for Chrome ARC Welder. I run the command plugin.shell('adbd') and it starts successfully. My question is when I run the 'adb logcat' command. I am supposed to run that in the JavaScript console or adb when working with any android application. When I run it in the JavaScript Console I get: Uncaught SyntaxError: Unexpected identifierVM268:847 InjectedScript._evaluateOnVM268:780 InjectedScript._evaluateAndWrapVM268:646 InjectedScript.evaluate And when from adb

How does ANDROID_ID on ARC (Chrome) differ from Android?

情到浓时终转凉″ 提交于 2020-01-21 12:07:15
问题 On Android, the ANDROID_ID is constant for a user profile on a device (see discussion here). This does not appear to be the case on ARC, but ARC is very new and hopefully this will change. It is also worth noting - in regards to device identification with ARC - that the Android serial # is not available on ARC, that WiFi MAC address is not currently available (yes, I've seen people talk about using this for device id), and product model information is not available. Motivation: I know it is

Where to ARC Welder extrude “minidump file(.dmp)”?

…衆ロ難τιáo~ 提交于 2020-01-07 01:52:12
问题 Im debugging Android app(emulating by ARC welder) on Chromebook, and often get "plugin crashed: captured minidump" message. But I dont know where to extrude the "minidump". https://www.chromium.org/chromium-os/packages/crash-reporting/debugging-a-minidump I saw this link, however cant find "minidumpfile(foo.dmp)". In my Chromebook, only those binary files in directory(/usr/bin/). core2md, minidump-2-core, minidump_upload, minidump_dump, minidump_stackwalk Because I cant find dumpfile, cant

How to customize the screen size of ARC-Welder?

倾然丶 夕夏残阳落幕 提交于 2020-01-02 08:38:07
问题 I would like to change the screen size of the ARC-Welder chrome-extention to a 7inch screen - displayed on my pc - to test an app on different screen sizes. Can this be done using for example the meta-data input? 回答1: Similar to a question that I asked recently but I think shares the same answer. It seems that there are few choices when it comes to form factor, and based on the answer to my question I think that you can only use the three form factor presets for now. (from @Elijah Taylor) The

ARC Welder: “Device does not have package com.google.android.gsf” despite “usePlayServices”: [“gcm”]

倾然丶 夕夏残阳落幕 提交于 2019-12-31 05:21:07
问题 In my apk running in ARC welder I get: java.lang.UnsupportedOperationException: Device does not have package com.google.android.gsf at com.google.android.gcm.GCMRegistrar.checkDevice(GCMRegistrar.java:98) I get this despite having the following in Additional Metadata: { "usePlayServices": ["gcm"], "crx_key": ... } . What do I need to do to get this working? 回答1: Assuming you are not using the deprecated C2DM (which ARC doesn't support), a possible reason is that you are not using the right

Chrome app store porting from Android app using arc welder

巧了我就是萌 提交于 2019-12-30 14:48:30
问题 This question is relevant to app developers only! I am trying to convert and publish my android apps to chrome web store. I used the arc welder chrome app suggested in Google's getting started guide. I've downloaded zip from ARC welder app. When I launch the app from welder app, It's working as expected. The issue 1 (solved): After publishing the zip file on Chrome app store and trying to install on Chrome running on OSX platform the app appear "Unsupported platform" and does not allow to

Chrome app store porting from Android app using arc welder

馋奶兔 提交于 2019-12-30 14:48:12
问题 This question is relevant to app developers only! I am trying to convert and publish my android apps to chrome web store. I used the arc welder chrome app suggested in Google's getting started guide. I've downloaded zip from ARC welder app. When I launch the app from welder app, It's working as expected. The issue 1 (solved): After publishing the zip file on Chrome app store and trying to install on Chrome running on OSX platform the app appear "Unsupported platform" and does not allow to

Can Android apps on Chrome access USB storage using the new ARC? (based on containers, limited device beta)

人盡茶涼 提交于 2019-12-25 08:28:08
问题 I recently found out that Google introduced a new runtime in May 2016 to run Android apps on Chromebooks. I'm already using the original ARC which was introduced a couple years ago. Unfortunately, the only way to access storage outside of the private runtime is by enabling { "enableExternalDirectory": true } , which prompts the end-user to mount a directory at startup, and then they can manually re-mount + restart as needed. This is not user-friendly. The new Android Runtime is only supported