1
edit
(Fixing link to contributor quick start guide) |
(https://bugzilla.mozilla.org/show_bug.cgi?id=1508976 introduced a single multi-architecture AAR for GeckoView, but our Quick Start guide still refers to setting up multiple architectures. This needs to be updated to reflect the existing requirements.) |
||
Line 27: | Line 27: | ||
=== Configure Gradle === | === Configure Gradle === | ||
'''1. Set the GeckoView version''' | '''1. Set the GeckoView version''' | ||
Line 36: | Line 34: | ||
ext { | ext { | ||
geckoviewChannel = "nightly" | geckoviewChannel = "nightly" | ||
geckoviewVersion = " | geckoviewVersion = "70.0.20190712095934" | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 49: | Line 47: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
'''3. Configure | '''3. Configure Java 8 support''' | ||
<syntaxhighlight lang="Groovy"> | <syntaxhighlight lang="Groovy"> | ||
Line 61: | Line 57: | ||
sourceCompatibility JavaVersion.VERSION_1_8 | sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | targetCompatibility JavaVersion.VERSION_1_8 | ||
} | } | ||
} | } | ||
Line 78: | Line 65: | ||
dependencies { | dependencies { | ||
// ... | // ... | ||
implementation "org.mozilla.geckoview:geckoview-${geckoviewChannel}:${geckoviewVersion}" | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 141: | Line 124: | ||
'''Products / Examples''' | '''Products / Examples''' | ||
* [https://blog.mozilla.org/futurereleases/2019/06/27/reinventing-firefox-for-android-a-preview/ Firefox Preview] ([https://github.com/mozilla-mobile/fenix GitHub]) | |||
* [https://blog.mozilla.org/blog/2018/09/18/firefox-reality-now-available/ Firefox Reality] ([https://github.com/mozillareality/firefoxreality GitHub]) | * [https://blog.mozilla.org/blog/2018/09/18/firefox-reality-now-available/ Firefox Reality] ([https://github.com/mozillareality/firefoxreality GitHub]) | ||
* [https://www.mozilla.org/firefox/mobile/#focus Firefox Focus] ([https://github.com/mozilla-mobile/focus-android/ GitHub]) | * [https://www.mozilla.org/firefox/mobile/#focus Firefox Focus] ([https://github.com/mozilla-mobile/focus-android/ GitHub]) |
edit