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.
icon.png
(96x96 px edition of your launcher icon), the APK itself invendor/chromium/crx/
, and thearc_metadata
portion of themanifest.json
file. The latter is where your ARC Welder settings go, like the form factor and orientation. Cooking up a Gradle task that builds a ZIP file as part of the overall build seems doable. It would be unofficial, and you would need to track changes to the ZIP contents as ARC Welder evolves. – Rambunctious