google-chrome-arc

Can you launch an android app as an ARC app through Android studio?

夙愿已清 提交于 2019-12-09 05:37:44
问题 I would like to know if there is a way to launch and/or build an ARC app from Android Studio without having to manually use ARC welder every time. It can be pretty cumbersome to do this manually during development, and especially during a release when you have to do the same operation to ~15 different flavors of the same app. Is there anything in to works that solves this issue like a gradle extension or something. 回答1: As of the time of this writing, no official automated ARC building

ARC apps crash with google chrome 45

最后都变了- 提交于 2019-12-08 22:15:01
问题 today when testing android apps with the arc runtime, which for some reason updated without me noticing. and all I get is that it immediately crashes. I have tried repacking using the arc welder which is somehow also updated with no results. UPDATE: since i did not see any progress on the stable channel i tried this on canary channel to see what might be causing the crash and found the errors "plugin not ready" and "plugin crashed: captured minidump" is there a way to solve these errors? 来源:

Now, the Arc Welder is not starting test application on Windows

强颜欢笑 提交于 2019-12-06 06:36:33
问题 Yesterday (10/19/2015 06:00 PM), the ARC Welder app begin to not start apps. For some reason, now, when I click "TEST", nothing happens on Windows 10, I tested on MAC/Windows 7 also, and works fine. Chrome Versão 46.0.2490.71 (64-bit) ARC Welder 46.5021.478.14 Update This is the error shown on console. Uncaught (in promise) TypeError: Cannot read property 'angle' of undefined at $jscomp.scope.Plugin.computeLayout_ (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules

ARC apps crash with google chrome 45

我的梦境 提交于 2019-12-05 08:20:16
today when testing android apps with the arc runtime, which for some reason updated without me noticing. and all I get is that it immediately crashes. I have tried repacking using the arc welder which is somehow also updated with no results. UPDATE: since i did not see any progress on the stable channel i tried this on canary channel to see what might be causing the crash and found the errors "plugin not ready" and "plugin crashed: captured minidump" is there a way to solve these errors? 来源: https://stackoverflow.com/questions/32408792/arc-apps-crash-with-google-chrome-45

local file access on Google-Chrome-ARC?

杀马特。学长 韩版系。学妹 提交于 2019-12-04 19:39:39
Is there any way to implement local file access on ARC? As i understand Chrome is sandboxed, so access would be hard, but it seems that the defined android data directory could have a specific folder used for file access? Yes, application on ARC is sandboxed and unable to access to local file system. However, you can access to the file on your local file system by starting Activity with specific Intent: ACTION_GET_CONTENT for reading file and ACTION_SEND for saving file. e.g. If you would like to open image file from your local file system, private static int REQUEST_CODE = 5; private void

How to get logcat output on PC from Google Arc Welder/Cordova app?

风流意气都作罢 提交于 2019-12-04 14:29:23
问题 I am attempting to get logcat logs from a Cordova app running on Google Arc Welder. I have tried the following sequence of steps: Started the app from google arc welder Start adb logcat with the command adb logcat -d Enable output from chrome by typing plugin.shell("logcat") into the javascript console for my app. After I type plugin.shell("logcat") the adb logcat window stops saying that it is waiting for devices and exits instead of printing logs. I have also tried the plugin.shell("logcat"

Now, the Arc Welder is not starting test application on Windows

本秂侑毒 提交于 2019-12-04 12:40:33
Yesterday (10/19/2015 06:00 PM), the ARC Welder app begin to not start apps. For some reason, now, when I click "TEST", nothing happens on Windows 10, I tested on MAC/Windows 7 also, and works fine. Chrome Versão 46.0.2490.71 (64-bit) ARC Welder 46.5021.478.14 Update This is the error shown on console. Uncaught (in promise) TypeError: Cannot read property 'angle' of undefined at $jscomp.scope.Plugin.computeLayout_ (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:125:302) at $jscomp.scope.Plugin.doLayout_ (chrome-extension:/

How to get logcat output on PC from Google Arc Welder/Cordova app?

若如初见. 提交于 2019-12-03 09:02:06
I am attempting to get logcat logs from a Cordova app running on Google Arc Welder. I have tried the following sequence of steps: Started the app from google arc welder Start adb logcat with the command adb logcat -d Enable output from chrome by typing plugin.shell("logcat") into the javascript console for my app. After I type plugin.shell("logcat") the adb logcat window stops saying that it is waiting for devices and exits instead of printing logs. I have also tried the plugin.shell("logcat") command ib the JS console window but don't get any android-specific logs there either. What should I

Accessing ExternalStoragePublicDirectory in Google Chrome ARC app

為{幸葍}努か 提交于 2019-12-03 07:52:33
问题 We have a feature in our app which can save file to ExternalStoragePublicDirectory. Below is the directory path we are using. Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); It looks like file is getting saved in the directory. But I cant locate the saved file in Desktop or Chromebook. Can anybody please point me to right direction? 回答1: Under ARC, your external storage files are being read and written to the HTML5 filesystem. Under Chrome app (yours included)

Google Maps in Chrome ARC

大兔子大兔子 提交于 2019-12-02 09:17:34
问题 I recently saw that ARC is now supporting a few Google Play Services including Google Maps. When using the ARC Welder, I specify the following metadata: {"usePlayServices":["maps"]} According to the documentation here, I must also include the crx_key value in the metadata. When doing so, the additional metadata appears as such: { "usePlayServices":["maps"], "crx_key":"<KEY FROM WEBSTORE>" } Attempting to Launch the App causes an "Error Loading Extension" message: Any ideas as to why I'm