forked from mirrors/gecko-dev
Backed out 20 changesets (bug 1411654) for incorrect android:debuggable. r=nalexander, a=RyanVM
Backed out changeset cfad693be918 (bug 1411654) Backed out changeset 55776829a744 (bug 1411654) Backed out changeset c5bf85d56fed (bug 1411654) Backed out changeset c270f97bb0da (bug 1411654) Backed out changeset fde9bf9c14c3 (bug 1411654) Backed out changeset 01836fd98c63 (bug 1411654) Backed out changeset 730a70767743 (bug 1411654) Backed out changeset 690e265c684c (bug 1411654) Backed out changeset f918500d9cf5 (bug 1411654) Backed out changeset cec2b8828cc8 (bug 1411654) Backed out changeset 76085ddd5ac7 (bug 1411654) Backed out changeset 2b37201606f5 (bug 1411654) Backed out changeset d0d513d1c379 (bug 1411654) Backed out changeset e7b0cc801cf1 (bug 1411654) Backed out changeset 901b304603d9 (bug 1411654) Backed out changeset 373c9a71d945 (bug 1411654) Backed out changeset 3dc3beab95f8 (bug 1411654) Backed out changeset 22a861db1573 (bug 1411654) Backed out changeset 0850b319efd4 (bug 1411654) Backed out changeset d276d3deba05 (bug 1411654) --HG-- rename : mobile/android/app/src/main/res/values-v17/themes.xml => mobile/android/base/resources/values-v17/themes.xml
This commit is contained in:
parent
f40d9dac13
commit
ac18fd5152
64 changed files with 756 additions and 664 deletions
|
|
@ -16,6 +16,7 @@ allprojects {
|
||||||
topobjdir = gradle.mozconfig.topobjdir
|
topobjdir = gradle.mozconfig.topobjdir
|
||||||
|
|
||||||
compileSdkVersion = tryInt(mozconfig.substs.ANDROID_COMPILE_SDK_VERSION)
|
compileSdkVersion = tryInt(mozconfig.substs.ANDROID_COMPILE_SDK_VERSION)
|
||||||
|
buildToolsVersion = tryInt(mozconfig.substs.ANDROID_BUILD_TOOLS_VERSION)
|
||||||
targetSdkVersion = tryInt(mozconfig.substs.ANDROID_TARGET_SDK)
|
targetSdkVersion = tryInt(mozconfig.substs.ANDROID_TARGET_SDK)
|
||||||
minSdkVersion = tryInt(mozconfig.substs.MOZ_ANDROID_MIN_SDK_VERSION)
|
minSdkVersion = tryInt(mozconfig.substs.MOZ_ANDROID_MIN_SDK_VERSION)
|
||||||
manifestPlaceholders = [
|
manifestPlaceholders = [
|
||||||
|
|
@ -51,7 +52,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.0.0'
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
||||||
// Provided in tree.
|
// Provided in tree.
|
||||||
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.3'
|
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.3'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -70,18 +70,28 @@ redistributed publicly.)
|
||||||
|
|
||||||
Archiving the Gradle executable is straight-forward, but archiving a
|
Archiving the Gradle executable is straight-forward, but archiving a
|
||||||
local Maven repository is not. Therefore a special Task Cluster
|
local Maven repository is not. Therefore a special Task Cluster
|
||||||
Docker image and toolchain job exist for producing the required
|
Docker image and job exist for producing the required archives. The
|
||||||
archives. The Docker image definition is rooted in
|
Docker image definition is rooted in
|
||||||
``taskcluster/docker/android-build``. The Task Cluster toolchain job
|
``taskcluster/docker/android-build``. The Task Cluster job
|
||||||
is named `android-gradle-dependencies`. The job runs in a container
|
definition is in
|
||||||
based on the custom Docker image and spawns a Sonatype Nexus proxying
|
``testing/taskcluster/tasks/builds/android_api_16_gradle_dependencies.yml``.
|
||||||
Maven repository process in the background. The job builds Firefox
|
The job runs in a container based on the custom Docker image and
|
||||||
for Android using Gradle and the in-tree Gradle configuration rooted
|
spawns a Sonatype Nexus proxying Maven repository process in the
|
||||||
at ``build.gradle``. The spawned proxying Maven repository downloads
|
background. The job builds Firefox for Android using Gradle and the
|
||||||
external dependencies and collects them. After the Gradle build
|
in-tree Gradle configuration rooted at ``build.gradle``. The spawned
|
||||||
completes, the job archives the Gradle version used to build, and the
|
proxying Maven repository downloads external dependencies and collects
|
||||||
downloaded Maven repository, and exposes them as Task Cluster
|
them. After the Gradle build completes, the job archives the Gradle
|
||||||
artifacts.
|
version used to build, and the downloaded Maven repository, and
|
||||||
|
exposes them as Task Cluster artifacts.
|
||||||
|
|
||||||
|
Here is `an example try job fetching these dependencies
|
||||||
|
<https://treeherder.mozilla.org/#/jobs?repo=try&revision=75bc98935147&selectedJob=17793653>`_.
|
||||||
|
The resulting task produced a `Gradle archive
|
||||||
|
<https://queue.taskcluster.net/v1/task/CeYMgAP3Q-KF8h37nMhJjg/runs/0/artifacts/public%2Fbuild%2Fgradle.tar.xz>`_
|
||||||
|
and a `Maven repository archive
|
||||||
|
<https://queue.taskcluster.net/v1/task/CeYMgAP3Q-KF8h37nMhJjg/runs/0/artifacts/public%2Fbuild%2Fjcentral.tar.xz>`_.
|
||||||
|
These archives were then uploaded (manually) to Mozilla automation
|
||||||
|
using tooltool for consumption in Gradle builds.
|
||||||
|
|
||||||
To update the version of Gradle in the archive produced, update
|
To update the version of Gradle in the archive produced, update
|
||||||
``gradle/wrapper/gradle-wrapper.properties``. Be sure to also update
|
``gradle/wrapper/gradle-wrapper.properties``. Be sure to also update
|
||||||
|
|
@ -90,18 +100,12 @@ the SHA256 checksum to prevent poisoning the build machines!
|
||||||
To update the versions of Gradle dependencies used, update
|
To update the versions of Gradle dependencies used, update
|
||||||
``dependencies`` sections in the in-tree Gradle configuration rooted
|
``dependencies`` sections in the in-tree Gradle configuration rooted
|
||||||
at ``build.gradle``. Once you are confident your changes build
|
at ``build.gradle``. Once you are confident your changes build
|
||||||
locally, push a fresh build to try. The `android-gradle-dependencies`
|
locally, push a fresh try build with an invocation like::
|
||||||
toolchain should run automatically, fetching your new dependencies and
|
|
||||||
wiring them into the appropriate try build jobs.
|
|
||||||
|
|
||||||
To update the version of Sonatype Nexus, update `NEXUS_VERSION` in the
|
$ hg push-to-try -m "try: -b o -p android-api-16-gradle-dependencies"
|
||||||
`android-build` Docker image.
|
|
||||||
|
|
||||||
To modify the Sonatype Nexus configuration, typically to proxy a new
|
Then `upload your archives to tooltool
|
||||||
remote Maven repository, modify
|
<https://wiki.mozilla.org/ReleaseEngineering/Applications/Tooltool#How_To_Upload_To_Tooltool>`_,
|
||||||
`taskcluster/scripts/misc/android-gradle-dependencies/nexus.xml`.
|
update the in-tree manifests in
|
||||||
|
``mobile/android/config/tooltool-manifests``, and push a fresh try
|
||||||
There is also a toolchain job that fetches the Android SDK and related
|
build.
|
||||||
packages. To update the versions of packaged fetched, modify
|
|
||||||
`python/mozboot/mozboot/android-packages.txt` and update the various
|
|
||||||
in-tree versions accordingly.
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xmx2560M
|
org.gradle.jvmargs=-Xmx2560M
|
||||||
android.enableAapt2=false
|
|
||||||
|
|
|
||||||
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
|
@ -3,5 +3,5 @@ distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip
|
||||||
distributionSha256Sum=5c07b3bac2209fbc98fb1fdf6fd831f72429cdf8c503807404eae03d8c8099e5
|
distributionSha256Sum=ed7e9c8bb41bd10d4c9339c95b2f8b122f5bf13188bd90504a26e0f00b123b0d
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,13 @@ apply plugin: 'checkstyle'
|
||||||
apply plugin: 'com.getkeepsafe.dexcount'
|
apply plugin: 'com.getkeepsafe.dexcount'
|
||||||
apply plugin: 'findbugs'
|
apply plugin: 'findbugs'
|
||||||
|
|
||||||
apply from: "${topsrcdir}/mobile/android/gradle/product_flavors.gradle"
|
|
||||||
|
|
||||||
dexcount {
|
dexcount {
|
||||||
format = "tree"
|
format = "tree"
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion project.ext.compileSdkVersion
|
compileSdkVersion project.ext.compileSdkVersion
|
||||||
|
buildToolsVersion project.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
targetSdkVersion project.ext.targetSdkVersion
|
targetSdkVersion project.ext.targetSdkVersion
|
||||||
|
|
@ -85,13 +84,35 @@ android {
|
||||||
// want to develop significant new user interface pieces in-tree that don't ship (even in the
|
// want to develop significant new user interface pieces in-tree that don't ship (even in the
|
||||||
// Nightly channel) while under development. A new "skin" flavour allows us to develop such
|
// Nightly channel) while under development. A new "skin" flavour allows us to develop such
|
||||||
// pieces in Gradle without changing the mainline configuration.
|
// pieces in Gradle without changing the mainline configuration.
|
||||||
|
flavorDimensions "audience", "skin"
|
||||||
project.configureProductFlavors.delegate = it
|
|
||||||
project.configureProductFlavors()
|
|
||||||
|
|
||||||
flavorDimensions "audience", "geckoBinaries", "minApi", "skin"
|
|
||||||
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
|
// For API 21+ - with pre-dexing, this will be faster for local development.
|
||||||
|
local {
|
||||||
|
dimension "audience"
|
||||||
|
|
||||||
|
// For pre-dexing, setting `minSdkVersion 21` allows the Android gradle plugin to
|
||||||
|
// pre-DEX each module and produce an APK that can be tested on
|
||||||
|
// Android Lollipop without time consuming DEX merging processes.
|
||||||
|
minSdkVersion 21
|
||||||
|
dexOptions {
|
||||||
|
preDexLibraries true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// For API < 21 - does not support pre-dexing because local development
|
||||||
|
// is slow in that case.
|
||||||
|
localOld {
|
||||||
|
dimension "audience"
|
||||||
|
}
|
||||||
|
|
||||||
|
// Automation builds. We use "official" rather than "automation" to drive these builds down
|
||||||
|
// the list of configurations that Android Studio offers, thereby making it _not_ the
|
||||||
|
// default. This avoids a common issue with "omni.ja" not being packed into the default APK
|
||||||
|
// built and deployed by Android Studio.
|
||||||
|
official {
|
||||||
|
dimension "audience"
|
||||||
|
}
|
||||||
|
|
||||||
// Since Firefox 57, the mobile user interface has followed the Photon design.
|
// Since Firefox 57, the mobile user interface has followed the Photon design.
|
||||||
// Before Firefox 57, the user interface followed the Australis design.
|
// Before Firefox 57, the user interface followed the Australis design.
|
||||||
photon {
|
photon {
|
||||||
|
|
@ -141,10 +162,13 @@ android {
|
||||||
exclude 'org/mozilla/gecko/gcm/**/*.java'
|
exclude 'org/mozilla/gecko/gcm/**/*.java'
|
||||||
exclude 'org/mozilla/gecko/push/**/*.java'
|
exclude 'org/mozilla/gecko/push/**/*.java'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
srcDir "${project.buildDir}/generated/source/preprocessed_code" // See syncPreprocessedCode.
|
||||||
}
|
}
|
||||||
|
|
||||||
res {
|
res {
|
||||||
srcDir "${topsrcdir}/${mozconfig.substs.MOZ_BRANDING_DIRECTORY}/res"
|
srcDir "${topsrcdir}/${mozconfig.substs.MOZ_BRANDING_DIRECTORY}/res"
|
||||||
|
srcDir "${project.buildDir}/generated/source/preprocessed_resources" // See syncPreprocessedResources.
|
||||||
srcDir "${topsrcdir}/mobile/android/services/src/main/res"
|
srcDir "${topsrcdir}/mobile/android/services/src/main/res"
|
||||||
if (mozconfig.substs.MOZ_CRASHREPORTER) {
|
if (mozconfig.substs.MOZ_CRASHREPORTER) {
|
||||||
srcDir "${topsrcdir}/mobile/android/base/crashreporter/res"
|
srcDir "${topsrcdir}/mobile/android/base/crashreporter/res"
|
||||||
|
|
@ -158,6 +182,18 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Every configuration needs the stub manifest at
|
||||||
|
// src/main/AndroidManifest.xml and the generated manifest. We can't
|
||||||
|
// use the main sourceSet without losing the stub, so we cover all the
|
||||||
|
// configurations by enumerating the buildTypes here.
|
||||||
|
debug {
|
||||||
|
manifest.srcFile "${project.buildDir}/generated/source/preprocessed_manifest/AndroidManifest.xml"
|
||||||
|
}
|
||||||
|
|
||||||
|
release {
|
||||||
|
manifest.srcFile "${project.buildDir}/generated/source/preprocessed_manifest/AndroidManifest.xml"
|
||||||
|
}
|
||||||
|
|
||||||
test {
|
test {
|
||||||
java {
|
java {
|
||||||
// Bug 1229149 tracks pushing this into a :services Gradle project.
|
// Bug 1229149 tracks pushing this into a :services Gradle project.
|
||||||
|
|
@ -191,9 +227,6 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
testOptions {
|
testOptions {
|
||||||
// For Robolectric: see https://github.com/robolectric/robolectric/issues/3333#issuecomment-324300418.
|
|
||||||
unitTests.includeAndroidResources true
|
|
||||||
|
|
||||||
unitTests.all {
|
unitTests.all {
|
||||||
// We'd like to use (Runtime.runtime.availableProcessors()/2), but
|
// We'd like to use (Runtime.runtime.availableProcessors()/2), but
|
||||||
// we have tests that start test servers and the bound ports
|
// we have tests that start test servers and the bound ports
|
||||||
|
|
@ -204,50 +237,72 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:appcompat-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:appcompat-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:cardview-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:cardview-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:recyclerview-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:recyclerview-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:design:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:design:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:customtabs:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:customtabs:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:palette-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
|
||||||
|
|
||||||
if (mozconfig.substs.MOZ_NATIVE_DEVICES) {
|
if (mozconfig.substs.MOZ_NATIVE_DEVICES) {
|
||||||
implementation "com.android.support:mediarouter-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:mediarouter-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-base:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-base:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-cast:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-cast:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mozconfig.substs.MOZ_INSTALL_TRACKING) {
|
if (mozconfig.substs.MOZ_INSTALL_TRACKING) {
|
||||||
implementation "com.google.android.gms:play-services-analytics:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-analytics:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mozconfig.substs.MOZ_ANDROID_GCM) {
|
if (mozconfig.substs.MOZ_ANDROID_GCM) {
|
||||||
implementation "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-basement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-base:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-base:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-gcm:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-gcm:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-measurement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-measurement:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Include LeakCanary in most gradle based builds. Gradle based tests
|
// Include LeakCanary in most gradle based builds. LeakCanary adds about 5k methods, so we disable
|
||||||
// include the no-op version. Mach based builds only include the no-op
|
// it for the (non-proguarded, non-predex) localOld builds to allow space for other libraries.
|
||||||
// version of this library.
|
// Gradle based tests include the no-op version. Mach based builds only include the no-op version
|
||||||
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.4-beta1'
|
// of this library.
|
||||||
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
// It doesn't seem like there is a non-trivial way to be conditional on 'localOld', so instead we explicitly
|
||||||
testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
// define a version of leakcanary for every flavor:
|
||||||
|
localCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta1'
|
||||||
|
localOldCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
||||||
|
officialCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
||||||
|
officialCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
||||||
|
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
|
||||||
|
|
||||||
implementation project(path: ':geckoview')
|
// With a simple "compile", Gradle will always build these libraries in their default configuration
|
||||||
implementation project(path: ':thirdparty')
|
// (i.e. release), so we need to explicitly forward our own build configuration here (bug 1385695).
|
||||||
|
//
|
||||||
|
// Official builds compile a hacked up app:Official..Debug, but need the
|
||||||
|
// release versions of the dependencies, in order to not have debugging
|
||||||
|
// information. It's not yet possible to specify just officialDebug, so we
|
||||||
|
// hack around it here.
|
||||||
|
if (mozconfig.substs.MOZILLA_OFFICIAL) {
|
||||||
|
debugCompile project(path: ':geckoview', configuration: "release")
|
||||||
|
} else {
|
||||||
|
debugCompile project(path: ':geckoview', configuration: "debug")
|
||||||
|
}
|
||||||
|
releaseCompile project(path: ':geckoview', configuration: "release")
|
||||||
|
|
||||||
testImplementation 'junit:junit:4.12'
|
if (mozconfig.substs.MOZILLA_OFFICIAL) {
|
||||||
testImplementation 'org.robolectric:robolectric:3.5.1'
|
debugCompile project(path: ':thirdparty', configuration: "release")
|
||||||
testImplementation 'org.simpleframework:simple-http:6.0.1'
|
} else {
|
||||||
testImplementation 'org.mockito:mockito-core:1.10.19'
|
debugCompile project(path: ':thirdparty', configuration: "debug")
|
||||||
|
}
|
||||||
|
releaseCompile project(path: ':thirdparty', configuration: "release")
|
||||||
|
|
||||||
|
testCompile 'junit:junit:4.12'
|
||||||
|
testCompile 'org.robolectric:robolectric:3.1.2'
|
||||||
|
testCompile 'org.simpleframework:simple-http:6.0.1'
|
||||||
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
||||||
|
|
||||||
// Including the Robotium JAR directly can cause issues with dexing.
|
// Including the Robotium JAR directly can cause issues with dexing.
|
||||||
androidTestImplementation 'com.jayway.android.robotium:robotium-solo:5.5.4'
|
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.5.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: (bug 1261486): This impl is not robust -
|
// TODO: (bug 1261486): This impl is not robust -
|
||||||
|
|
@ -262,6 +317,11 @@ task checkstyle(type: Checkstyle) {
|
||||||
classpath = files()
|
classpath = files()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task syncPreprocessedCode(type: Sync, dependsOn: rootProject.generateCodeAndResources) {
|
||||||
|
into("${project.buildDir}/generated/source/preprocessed_code")
|
||||||
|
from("${topobjdir}/mobile/android/base/generated/preprocessed")
|
||||||
|
}
|
||||||
|
|
||||||
// The localization system uses the moz.build preprocessor to interpolate a .dtd
|
// The localization system uses the moz.build preprocessor to interpolate a .dtd
|
||||||
// file of XML entity definitions into an XML file of elements referencing those
|
// file of XML entity definitions into an XML file of elements referencing those
|
||||||
// entities. (Each locale produces its own .dtd file, backstopped by the en-US
|
// entities. (Each locale produces its own .dtd file, backstopped by the en-US
|
||||||
|
|
@ -277,80 +337,49 @@ class ExpandXMLEntitiesFilter extends FilterReader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task syncPreprocessedResources(type: Sync, dependsOn: rootProject.generateCodeAndResources) {
|
||||||
|
into("${project.buildDir}/generated/source/preprocessed_resources")
|
||||||
|
from("${topobjdir}/mobile/android/base/res")
|
||||||
|
filesMatching('**/strings.xml') {
|
||||||
|
filter(ExpandXMLEntitiesFilter)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// It's not easy -- see the backout in Bug 1242213 -- to change the <manifest>
|
||||||
|
// package for Fennec. Gradle has grown a mechanism to achieve what we want for
|
||||||
|
// Fennec, however, with applicationId. To use the same manifest as moz.build,
|
||||||
|
// we replace the package with org.mozilla.gecko (the eventual package) here.
|
||||||
|
task rewriteManifestPackage(type: Copy, dependsOn: rootProject.generateCodeAndResources) {
|
||||||
|
into("${project.buildDir}/generated/source/preprocessed_manifest")
|
||||||
|
from("${topobjdir}/mobile/android/base/AndroidManifest.xml")
|
||||||
|
filter { it.replaceFirst(/package=".*?"/, 'package="org.mozilla.gecko"') }
|
||||||
|
}
|
||||||
|
|
||||||
apply from: "${topsrcdir}/mobile/android/gradle/with_gecko_binaries.gradle"
|
apply from: "${topsrcdir}/mobile/android/gradle/with_gecko_binaries.gradle"
|
||||||
|
|
||||||
android.applicationVariants.all { variant ->
|
android.applicationVariants.all { variant ->
|
||||||
def syncPreprocessedJava = task("syncPreprocessedJavaFor${variant.name.capitalize()}", type: Sync) {
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}/java")
|
|
||||||
from("${topobjdir}/mobile/android/base/generated/preprocessed")
|
|
||||||
exclude('**/*.mkdir.done')
|
|
||||||
}
|
|
||||||
// This is an Android-Gradle plugin 3+-ism. Culted from reading the source,
|
|
||||||
// searching for "registerJavaGeneratingTask", and finding
|
|
||||||
// https://github.com/GoogleCloudPlatform/endpoints-framework-gradle-plugin/commit/2f2b91476fb1c6647791e2c6fe531a47615a1e85.
|
|
||||||
// The added directory doesn't appear in the paths listed by the
|
|
||||||
// `sourceSets` task, for reasons unknown.
|
|
||||||
variant.registerJavaGeneratingTask(syncPreprocessedJava, syncPreprocessedJava.destinationDir)
|
|
||||||
|
|
||||||
def syncPreprocessedRes = task("syncPreprocessedResFor${variant.name.capitalize()}", type: Sync) {
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}/res")
|
|
||||||
from("${topobjdir}/mobile/android/base/res")
|
|
||||||
filesMatching('**/strings.xml') {
|
|
||||||
filter(ExpandXMLEntitiesFilter)
|
|
||||||
}
|
|
||||||
exclude('**/*.mkdir.done')
|
|
||||||
}
|
|
||||||
// This is an Android-Gradle plugin 3+-ism. Determined by reading the
|
|
||||||
// source. The added directory doesn't appear in the paths listed by the
|
|
||||||
// `sourceSets` task, for reasons unknown.
|
|
||||||
variant.registerGeneratedResFolders(project.files(syncPreprocessedRes.destinationDir).builtBy(syncPreprocessedRes))
|
|
||||||
|
|
||||||
// It's not easy -- see the backout in Bug 1242213 -- to change the
|
|
||||||
// <manifest> package for Fennec. Gradle has grown a mechanism to achieve
|
|
||||||
// what we want for Fennec, however, with applicationId. To use the same
|
|
||||||
// manifest as moz.build, we replace the package with org.mozilla.gecko (the
|
|
||||||
// eventual package) here.
|
|
||||||
def rewriteManifestPackage = task("rewriteManifestPackageFor${variant.name.capitalize()}", type: Copy, dependsOn: rootProject.generateCodeAndResources) {
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}")
|
|
||||||
from("${topobjdir}/mobile/android/base/AndroidManifest.xml")
|
|
||||||
filter { it.replaceFirst(/package=".*?"/, 'package="org.mozilla.gecko"') }
|
|
||||||
exclude('**/*.mkdir.done')
|
|
||||||
}
|
|
||||||
|
|
||||||
// Every configuration needs the stub manifest at
|
|
||||||
// src/main/AndroidManifest.xml and the generated manifest. We can't use
|
|
||||||
// the main sourceSet without losing the stub, so we cover all the
|
|
||||||
// configurations here.
|
|
||||||
android.sourceSets."${variant.name}".manifest.srcFile "${rewriteManifestPackage.destinationDir}/AndroidManifest.xml"
|
|
||||||
variant.preBuild.dependsOn rewriteManifestPackage
|
variant.preBuild.dependsOn rewriteManifestPackage
|
||||||
|
variant.preBuild.dependsOn syncPreprocessedCode
|
||||||
|
variant.preBuild.dependsOn syncPreprocessedResources
|
||||||
|
|
||||||
|
// Official automation builds don't include Gecko binaries, since those binaries are not
|
||||||
|
// produced until after build time (at package time). official Therefore, automation builds
|
||||||
|
// include the Gecko binaries into the APK at package time. The "withGeckoBinaries" variant of
|
||||||
|
// the :geckoview project also does this. (It does what it says on the tin!) For notes on this
|
||||||
|
// approach, see mobile/android/gradle/with_gecko_binaries.gradle.
|
||||||
|
|
||||||
// Local (read, not 'official') builds want to reflect developer changes to
|
// Like 'local' or 'localOld'.
|
||||||
// AndroidManifest.xml.in, strings.xml, and preprocessed Java code. To do
|
def audienceDimension = variant.productFlavors[0].name
|
||||||
// this, the Gradle build calls out to the moz.build system, which can be
|
|
||||||
// re-entrant. Official builds are driven by the moz.build system and
|
|
||||||
// should never be re-entrant in this way.
|
|
||||||
if (!((variant.productFlavors*.name).contains('official'))) {
|
|
||||||
syncPreprocessedJava.dependsOn rootProject.generateCodeAndResources
|
|
||||||
syncPreprocessedRes.dependsOn rootProject.generateCodeAndResources
|
|
||||||
rewriteManifestPackage.dependsOn rootProject.generateCodeAndResources
|
|
||||||
}
|
|
||||||
|
|
||||||
// When driven from moz.build via |mach build|, Gradle does not require or
|
// :app uses :geckoview:release and handles it's own Gecko binary inclusion,
|
||||||
// use Gecko binaries. It's only |mach package| that packs the Gecko
|
// even though this would be most naturally done in the :geckoview project.
|
||||||
// binaries into the resulting APK. The "withoutGeckoBinaries" variants
|
if (!audienceDimension.equals('official')) {
|
||||||
// handle this. When driven from Android Studio or Gradle, the
|
|
||||||
// "withGeckoBinaries" variants handle packing the Gecko binaries into the
|
|
||||||
// resulting APK (for on-device deployment). They also update the Omnijars
|
|
||||||
// as necessary, smoothing out the edit-compile-test development cycle.
|
|
||||||
// They do what they say on the tin!
|
|
||||||
if ((variant.productFlavors*.name).contains('withGeckoBinaries')) {
|
|
||||||
configureVariantWithGeckoBinaries(variant)
|
configureVariantWithGeckoBinaries(variant)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
android.applicationVariants.all { variant ->
|
android.applicationVariants.all { variant ->
|
||||||
configureApplicationVariantWithJNIWrappers(variant, "Fennec")
|
configureVariantWithJNIWrappers(variant, "Fennec")
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gradle.startParameter.taskNames.any { it.endsWith('UnitTest') }) {
|
if (gradle.startParameter.taskNames.any { it.endsWith('UnitTest') }) {
|
||||||
|
|
@ -387,7 +416,7 @@ android.applicationVariants.all { variant ->
|
||||||
|
|
||||||
reports {
|
reports {
|
||||||
html.enabled = true // HTML reports for humans.
|
html.enabled = true // HTML reports for humans.
|
||||||
html.destination = file("$project.buildDir/reports/findbugs/findbugs-${variant.name}-output.html")
|
html.destination = "$project.buildDir/reports/findbugs/findbugs-${variant.name}-output.html"
|
||||||
xml.enabled = false
|
xml.enabled = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -411,7 +440,7 @@ android.applicationVariants.all { variant ->
|
||||||
|
|
||||||
reports {
|
reports {
|
||||||
xml.enabled = true // XML reports for machines.
|
xml.enabled = true // XML reports for machines.
|
||||||
xml.destination = file("$project.buildDir/reports/findbugs/findbugs-${variant.name}-output.xml")
|
xml.destination = "$project.buildDir/reports/findbugs/findbugs-${variant.name}-output.xml"
|
||||||
html.enabled = false
|
html.enabled = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -437,7 +466,8 @@ android.applicationVariants.all { variant ->
|
||||||
|
|
||||||
variant.outputs.each { output ->
|
variant.outputs.each { output ->
|
||||||
output.processManifest.doLast {
|
output.processManifest.doLast {
|
||||||
[file("${manifestOutputDirectory}/AndroidManifest.xml"),
|
[output.processManifest.manifestOutputFile,
|
||||||
|
output.processManifest.instantRunManifestOutputFile,
|
||||||
].each({ File manifestOutFile ->
|
].each({ File manifestOutFile ->
|
||||||
if (manifestOutFile.exists()) {
|
if (manifestOutFile.exists()) {
|
||||||
def contents = manifestOutFile.getText('UTF-8')
|
def contents = manifestOutFile.getText('UTF-8')
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@
|
||||||
<issue id="ResourceAsColor" severity="warning" />
|
<issue id="ResourceAsColor" severity="warning" />
|
||||||
<issue id="ResourceType" severity="warning" />
|
<issue id="ResourceType" severity="warning" />
|
||||||
<issue id="ValidFragment" severity="warning" />
|
<issue id="ValidFragment" severity="warning" />
|
||||||
|
<issue id="WrongConstant" severity="warning" />
|
||||||
|
|
||||||
<!-- New Android-Gradle lint integration regressed this check. -->
|
<!-- New Android-Gradle lint integration regressed this check. -->
|
||||||
<issue id="MissingRegistered" severity="warning" />
|
<issue id="MissingRegistered" severity="warning" />
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/dlc/DownloadContentTelemetry.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/dlc/DownloadContentTelemetry.java"/>
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/preferences/LocaleListPreference.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/preferences/LocaleListPreference.java"/>
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/media/MediaControlService.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/media/MediaControlService.java"/>
|
||||||
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/db/PerProfileDatabaseProvider.java"/>
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/PrintHelper.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/PrintHelper.java"/>
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/animation/PropertyAnimator.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/animation/PropertyAnimator.java"/>
|
||||||
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/RemotePresentationService.java"/>
|
<ignore path="**/mobile/android/base/java/org/mozilla/gecko/RemotePresentationService.java"/>
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,5 @@
|
||||||
android:viewportHeight="12.0">
|
android:viewportHeight="12.0">
|
||||||
<path
|
<path
|
||||||
android:fillColor="@color/activity_stream_icon"
|
android:fillColor="@color/activity_stream_icon"
|
||||||
android:pathData="M4.97,0.151l-2.819,6.5A0.25,0.25,0,0,0,2.381,7H4.029a0.25,0.25,0,0,1,0.225,0.359L2,12,9.4,5.437A0.25,0.25,0,0,0,9.234,5H6.791a0.25,0.25,0,0,1,-0.19,-0.412L10.15,0.412A0.25,0.25,0,0,0,9.959,0H5.2A0.25,0.25,0,0,0,4.97,0.151Z"/>
|
android:pathData="M4.97.151l-2.819,6.5A.25.25,0,0,0,2.381,7H4.029a.25.25,0,0,1,.225.359L2,12,9.4,5.437A.25.25,0,0,0,9.234,5H6.791a.25.25,0,0,1-.19-.412L10.15.412A.25.25,0,0,0,9.959,0H5.2A.25.25,0,0,0,4.97.151Z"/>
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
android:id="@+id/custom_tabs_action_bar_title"
|
android:id="@+id/custom_tabs_action_bar_title"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:singleLine="true"
|
android:lines="1"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
tools:text="Mozilla.org"/>
|
tools:text="Mozilla.org"/>
|
||||||
|
|
@ -49,6 +49,7 @@
|
||||||
android:id="@+id/custom_tabs_action_bar_url"
|
android:id="@+id/custom_tabs_action_bar_url"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:lines="1"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
android:textSize="10sp"
|
android:textSize="10sp"
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,15 @@
|
||||||
<item name="windowNoTitle">true</item>
|
<item name="windowNoTitle">true</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="GeckoDialogBase" parent="@android:style/Theme.Holo.Light.Dialog">
|
||||||
|
<item name="android:windowContentOverlay">@null</item>
|
||||||
|
<item name="android:windowActionBar">false</item>
|
||||||
|
<item name="android:windowNoTitle">true</item>
|
||||||
|
<item name="android:windowBackground">@android:color/transparent</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="GeckoTitleDialogBase" parent="@android:style/Theme.Holo.Light.Dialog" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Activity based themes for API 11+. This theme completely replaces
|
Activity based themes for API 11+. This theme completely replaces
|
||||||
GeckoAppBase from res/values/themes.xml on API 11+ devices.
|
GeckoAppBase from res/values/themes.xml on API 11+ devices.
|
||||||
|
|
|
||||||
15
mobile/android/app/src/main/res/values-v13/search_styles.xml
Normal file
15
mobile/android/app/src/main/res/values-v13/search_styles.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||||||
|
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- Base application theme. -->
|
||||||
|
<style name="AppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
|
||||||
|
<item name="android:windowBackground">@color/toolbar_grey</item>
|
||||||
|
<item name="android:colorBackground">@color/toolbar_grey</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="SettingsTheme" parent="@android:style/Theme.Holo.Light"/>
|
||||||
|
|
||||||
|
</resources>
|
||||||
19
mobile/android/app/src/main/res/values-v16/search_styles.xml
Normal file
19
mobile/android/app/src/main/res/values-v16/search_styles.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||||||
|
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<style name="TextAppearance.EmptyView.Title" parent="@android:style/TextAppearance.Small">
|
||||||
|
<item name="android:textColor">@color/text_and_tabs_tray_grey</item>
|
||||||
|
<item name="android:textSize">20sp</item>
|
||||||
|
<item name="android:fontFamily">sans-serif-light</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="TextAppearance.EmptyView.Message" parent="@android:style/TextAppearance.Small">
|
||||||
|
<item name="android:textColor">@color/placeholder_grey</item>
|
||||||
|
<item name="android:textSize">16sp</item>
|
||||||
|
<item name="android:lineSpacingExtra">4sp</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</resources>
|
||||||
|
|
@ -3,8 +3,7 @@
|
||||||
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||||||
|
|
||||||
<resources
|
<resources>
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Base application theme. This could be overridden by GeckoBaseTheme
|
Base application theme. This could be overridden by GeckoBaseTheme
|
||||||
|
|
@ -16,6 +15,13 @@
|
||||||
<item name="android:windowContentOverlay">@null</item>
|
<item name="android:windowContentOverlay">@null</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="GeckoDialogBase" parent="@android:style/Theme.Dialog">
|
||||||
|
<item name="android:windowNoTitle">true</item>
|
||||||
|
<item name="android:windowContentOverlay">@null</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="GeckoTitleDialogBase" parent="@android:style/Theme.Dialog" />
|
||||||
|
|
||||||
<style name="Gecko.Preferences">
|
<style name="Gecko.Preferences">
|
||||||
<item name="windowActionBar">true</item>
|
<item name="windowActionBar">true</item>
|
||||||
<item name="windowNoTitle">false</item>
|
<item name="windowNoTitle">false</item>
|
||||||
|
|
@ -67,6 +73,10 @@
|
||||||
<item name="actionBarTheme">@style/GeckoActionBar</item>
|
<item name="actionBarTheme">@style/GeckoActionBar</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Gecko.Dialog" parent="GeckoDialogBase"/>
|
||||||
|
|
||||||
|
<style name="Gecko.TitleDialog" parent="GeckoTitleDialogBase"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Activity based themes, dependent on API level. This theme is replaced
|
Activity based themes, dependent on API level. This theme is replaced
|
||||||
by GeckoAppBase from res/values-vXX/themes.xml on newer devices.
|
by GeckoAppBase from res/values-vXX/themes.xml on newer devices.
|
||||||
|
|
@ -116,8 +126,7 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- Bookmark full-page dialog theme -->
|
<!-- Bookmark full-page dialog theme -->
|
||||||
<style name="Bookmark" parent="Theme.AppCompat.Light.DialogWhenLarge"
|
<style name="Bookmark" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
|
||||||
tools:ignore="UnusedResources" />
|
|
||||||
<style name="Bookmark.Gecko" parent="Gecko">
|
<style name="Bookmark.Gecko" parent="Gecko">
|
||||||
<item name="toolbarStyle">@style/BookmarkToolbarStyle</item>
|
<item name="toolbarStyle">@style/BookmarkToolbarStyle</item>
|
||||||
<item name="colorAccent">@color/fennec_ui_accent</item>
|
<item name="colorAccent">@color/fennec_ui_accent</item>
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,7 @@
|
||||||
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||||||
|
|
||||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Only overriden styles for Honeycomb/Ice cream sandwich are specified here.
|
Only overriden styles for Honeycomb/Ice cream sandwich are specified here.
|
||||||
|
|
@ -27,6 +26,9 @@
|
||||||
|
|
||||||
<style name="Widget.BaseTextView" parent="android:style/Widget.Holo.Light.TextView" />
|
<style name="Widget.BaseTextView" parent="android:style/Widget.Holo.Light.TextView" />
|
||||||
|
|
||||||
|
<style name="Widget.ProgressBar.Horizontal" parent="android:style/Widget.Holo.ProgressBar.Horizontal" />
|
||||||
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Application styles. All customizations that are not specific
|
Application styles. All customizations that are not specific
|
||||||
to a particular API level can go here.
|
to a particular API level can go here.
|
||||||
|
|
@ -45,6 +47,18 @@
|
||||||
<!-- ActionBar -->
|
<!-- ActionBar -->
|
||||||
<style name="ActionBar" parent="android:style/Widget.Holo.ActionBar" />
|
<style name="ActionBar" parent="android:style/Widget.Holo.ActionBar" />
|
||||||
|
|
||||||
|
<!-- TabsLayout ActionBar -->
|
||||||
|
<style name="ActionBar.TabsLayout">
|
||||||
|
<item name="android:visibility">gone</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- DropDown List View -->
|
||||||
|
<style name="DropDownListView" parent="@android:style/Widget.Holo.ListView.DropDown">
|
||||||
|
<item name="android:listSelector">@drawable/action_bar_button</item>
|
||||||
|
<item name="android:divider">@color/toolbar_divider_grey</item>
|
||||||
|
<item name="android:dividerHeight">@dimen/page_row_divider_height</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<!-- Spinner DropDown Item -->
|
<!-- Spinner DropDown Item -->
|
||||||
<style name="Widget.DropDownItem.Spinner" parent="@android:style/Widget.Holo.Light.DropDownItem.Spinner">
|
<style name="Widget.DropDownItem.Spinner" parent="@android:style/Widget.Holo.Light.DropDownItem.Spinner">
|
||||||
<item name="android:textColor">#FF000000</item>
|
<item name="android:textColor">#FF000000</item>
|
||||||
|
|
@ -94,8 +108,7 @@
|
||||||
|
|
||||||
<style name="TabInput.TabWidget" parent="android:style/Widget.Holo.Light.TabWidget" />
|
<style name="TabInput.TabWidget" parent="android:style/Widget.Holo.Light.TabWidget" />
|
||||||
|
|
||||||
<style name="TabInput.Tab" parent="android:style/Widget.Holo.Light.Tab"
|
<style name="TabInput.Tab" parent="android:style/Widget.Holo.Light.Tab">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:minHeight">@dimen/menu_item_row_height</item>
|
<item name="android:minHeight">@dimen/menu_item_row_height</item>
|
||||||
<item name="android:textAllCaps">true</item>
|
<item name="android:textAllCaps">true</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,14 @@
|
||||||
<item name="android:fontFamily">sans-serif-light</item>
|
<item name="android:fontFamily">sans-serif-light</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="TextAppearance.FirstrunTextLight">
|
||||||
|
<item name="android:fontFamily">sans-serif-light</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="TextAppearance.FirstrunTextRegular">
|
||||||
|
<item name="android:fontFamily">sans-serif</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="TextAppearance.UrlBar.Title" parent="TextAppearance.Small">
|
<style name="TextAppearance.UrlBar.Title" parent="TextAppearance.Small">
|
||||||
<item name="android:textSize">16sp</item>
|
<item name="android:textSize">16sp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,8 @@
|
||||||
|
|
||||||
<style name="Widget.BaseTextView" parent="android:style/Widget.TextView"/>
|
<style name="Widget.BaseTextView" parent="android:style/Widget.TextView"/>
|
||||||
|
|
||||||
|
<style name="Widget.ProgressBar.Horizontal" parent="android:style/Widget.ProgressBar.Horizontal"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Application styles. All customizations that are not specific
|
Application styles. All customizations that are not specific
|
||||||
to a particular API level can go here.
|
to a particular API level can go here.
|
||||||
|
|
@ -63,6 +65,10 @@
|
||||||
<item name="android:listSelector">@drawable/action_bar_button</item>
|
<item name="android:listSelector">@drawable/action_bar_button</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Widget.Home.HomeList">
|
||||||
|
<item name="android:scrollbarStyle">outsideOverlay</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="Widget.ListItem">
|
<style name="Widget.ListItem">
|
||||||
<item name="android:minHeight">?android:attr/listPreferredItemHeight</item>
|
<item name="android:minHeight">?android:attr/listPreferredItemHeight</item>
|
||||||
<item name="android:textAppearance">?android:attr/textAppearanceLargeInverse</item>
|
<item name="android:textAppearance">?android:attr/textAppearanceLargeInverse</item>
|
||||||
|
|
@ -210,6 +216,12 @@
|
||||||
<item name="android:scaleType">centerCrop</item>
|
<item name="android:scaleType">centerCrop</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Widget.TopSitesGridItemPin">
|
||||||
|
<item name="android:minWidth">30dip</item>
|
||||||
|
<item name="android:minHeight">30dip</item>
|
||||||
|
<item name="android:padding">0dip</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="Widget.TopSitesGridItemTitle">
|
<style name="Widget.TopSitesGridItemTitle">
|
||||||
<item name="android:textColor">@color/top_sites_grid_item_title</item>
|
<item name="android:textColor">@color/top_sites_grid_item_title</item>
|
||||||
<item name="android:textSize">12sp</item>
|
<item name="android:textSize">12sp</item>
|
||||||
|
|
@ -283,8 +295,7 @@
|
||||||
<!--
|
<!--
|
||||||
We are overriding the snackbar message style to guarantee a consistent style across Android versions (bug 1217416).
|
We are overriding the snackbar message style to guarantee a consistent style across Android versions (bug 1217416).
|
||||||
-->
|
-->
|
||||||
<style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance" tools:override="true"
|
<style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance" tools:override="true">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:textSize">@dimen/design_snackbar_text_size</item>
|
<item name="android:textSize">@dimen/design_snackbar_text_size</item>
|
||||||
<item name="android:textColor">@android:color/white</item>
|
<item name="android:textColor">@android:color/white</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -359,8 +370,7 @@
|
||||||
<item name="android:textColor">?android:attr/textColorTertiary</item>
|
<item name="android:textColor">?android:attr/textColorTertiary</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="TextAppearance.Micro.Inverse"
|
<style name="TextAppearance.Micro.Inverse">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
|
<item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
|
||||||
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
|
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
|
||||||
<item name="android:textColorHighlight">@color/text_color_highlight_inverse</item>
|
<item name="android:textColorHighlight">@color/text_color_highlight_inverse</item>
|
||||||
|
|
@ -390,8 +400,7 @@
|
||||||
<item name="android:textSize">14sp</item>
|
<item name="android:textSize">14sp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="TextAppearance.Widget.Home"
|
<style name="TextAppearance.Widget.Home" />
|
||||||
tools:ignore="UnusedResources" />
|
|
||||||
|
|
||||||
<style name="TextAppearance.Widget.Home.Header" parent="TextAppearance.Small">
|
<style name="TextAppearance.Widget.Home.Header" parent="TextAppearance.Small">
|
||||||
<item name="android:textColor">@color/disabled_grey</item>
|
<item name="android:textColor">@color/disabled_grey</item>
|
||||||
|
|
@ -427,8 +436,7 @@
|
||||||
<item name="android:fontFamily">sans-serif-light</item>
|
<item name="android:fontFamily">sans-serif-light</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="TextAppearance.DoorHanger.Small"
|
<style name="TextAppearance.DoorHanger.Small">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:textSize">14sp</item>
|
<item name="android:textSize">14sp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
@ -519,21 +527,30 @@
|
||||||
<item name="android:layout_marginRight">6dp</item>
|
<item name="android:layout_marginRight">6dp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Widget.RemoteTabsItemView" parent="Widget.TwoLinePageRow"/>
|
||||||
|
|
||||||
<style name="Widget.RemoteTabsClientView" parent="Widget.TwoLinePageRow">
|
<style name="Widget.RemoteTabsClientView" parent="Widget.TwoLinePageRow">
|
||||||
<item name="android:background">@color/about_page_header_grey</item>
|
<item name="android:background">@color/about_page_header_grey</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="Widget.RemoteTabsListView" parent="Widget.HomeListView">
|
||||||
|
<item name="android:childDivider">@color/toolbar_divider_grey</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="Widget.HistoryListView" parent="Widget.HomeListView">
|
||||||
|
<item name="android:childDivider">@color/toolbar_divider_grey</item>
|
||||||
|
<item name="android:drawSelectorOnTop">true</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<!-- TabsLayout Row -->
|
<!-- TabsLayout Row -->
|
||||||
<style name="TabLayoutItemTextAppearance"
|
<style name="TabLayoutItemTextAppearance">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:textColor">#FFFFFFFF</item>
|
<item name="android:textColor">#FFFFFFFF</item>
|
||||||
<item name="android:singleLine">true</item>
|
<item name="android:singleLine">true</item>
|
||||||
<item name="android:ellipsize">middle</item>
|
<item name="android:ellipsize">middle</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- TabsLayout RemoteTabs Row Url -->
|
<!-- TabsLayout RemoteTabs Row Url -->
|
||||||
<style name="TabLayoutItemTextAppearance.Url"
|
<style name="TabLayoutItemTextAppearance.Url">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:textColor">#FFA4A7A9</item>
|
<item name="android:textColor">#FFA4A7A9</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
@ -562,8 +579,8 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="PopupAnimation">
|
<style name="PopupAnimation">
|
||||||
<item name="android:windowEnterAnimation">@anim/popup_show</item>
|
<item name="@android:windowEnterAnimation">@anim/popup_show</item>
|
||||||
<item name="android:windowExitAnimation">@anim/popup_hide</item>
|
<item name="@android:windowExitAnimation">@anim/popup_hide</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="ToastBase">
|
<style name="ToastBase">
|
||||||
|
|
@ -720,8 +737,7 @@
|
||||||
<item name="android:background">@drawable/tab_indicator_background</item>
|
<item name="android:background">@drawable/tab_indicator_background</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="TabInput.Tab"
|
<style name="TabInput.Tab">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:background">@drawable/tabs_strip_indicator</item>
|
<item name="android:background">@drawable/tabs_strip_indicator</item>
|
||||||
<item name="android:gravity">center</item>
|
<item name="android:gravity">center</item>
|
||||||
<item name="android:minHeight">@dimen/menu_item_row_height</item>
|
<item name="android:minHeight">@dimen/menu_item_row_height</item>
|
||||||
|
|
@ -782,8 +798,7 @@
|
||||||
<item name="android:layout_marginBottom">8dp</item>
|
<item name="android:layout_marginBottom">8dp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="RemoteTabsPanelItem.TextAppearance.Linkified"
|
<style name="RemoteTabsPanelItem.TextAppearance.Linkified">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="android:clickable">true</item>
|
<item name="android:clickable">true</item>
|
||||||
<item name="android:focusable">true</item>
|
<item name="android:focusable">true</item>
|
||||||
<item name="android:textColor">#0092DB</item>
|
<item name="android:textColor">#0092DB</item>
|
||||||
|
|
@ -805,6 +820,8 @@
|
||||||
<item name="textAllCaps">false</item>
|
<item name="textAllCaps">false</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="TabQueueActivity" parent="android:style/Theme.NoDisplay" />
|
||||||
|
|
||||||
<style name="ActivityStreamContextMenuText">
|
<style name="ActivityStreamContextMenuText">
|
||||||
<item name="android:textSize">16sp</item>
|
<item name="android:textSize">16sp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -814,8 +831,7 @@
|
||||||
<item name="android:listDivider">@drawable/as_contextmenu_divider</item>
|
<item name="android:listDivider">@drawable/as_contextmenu_divider</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="ActivityStreamButton" parent="Widget.AppCompat.Button.Colored"
|
<style name="ActivityStreamButton" parent="Widget.AppCompat.Button.Colored">
|
||||||
tools:ignore="UnusedResources">
|
|
||||||
<item name="colorButtonNormal">@color/link_blue</item>
|
<item name="colorButtonNormal">@color/link_blue</item>
|
||||||
<item name="android:textColor">@android:color/white</item>
|
<item name="android:textColor">@android:color/white</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko;
|
package org.mozilla.gecko;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
|
|
@ -16,6 +15,7 @@ import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.db.BrowserContract;
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
import org.mozilla.gecko.db.BrowserContract.PageMetadata;
|
import org.mozilla.gecko.db.BrowserContract.PageMetadata;
|
||||||
import org.mozilla.gecko.db.BrowserDB;
|
import org.mozilla.gecko.db.BrowserDB;
|
||||||
|
import org.mozilla.gecko.db.BrowserProvider;
|
||||||
import org.mozilla.gecko.db.LocalBrowserDB;
|
import org.mozilla.gecko.db.LocalBrowserDB;
|
||||||
import org.robolectric.shadows.ShadowContentResolver;
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
||||||
|
|
@ -27,8 +27,11 @@ public class GlobalPageMetadataTest {
|
||||||
public void testQueueing() throws Exception {
|
public void testQueueing() throws Exception {
|
||||||
BrowserDB db = new LocalBrowserDB("default");
|
BrowserDB db = new LocalBrowserDB("default");
|
||||||
|
|
||||||
final ContentProvider provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
BrowserProvider provider = new BrowserProvider();
|
||||||
try {
|
try {
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
ShadowContentResolver cr = new ShadowContentResolver();
|
ShadowContentResolver cr = new ShadowContentResolver();
|
||||||
ContentProviderClient pageMetadataClient = cr.acquireContentProviderClient(PageMetadata.CONTENT_URI);
|
ContentProviderClient pageMetadataClient = cr.acquireContentProviderClient(PageMetadata.CONTENT_URI);
|
||||||
|
|
||||||
|
|
@ -61,8 +64,11 @@ public class GlobalPageMetadataTest {
|
||||||
// Start listening for events.
|
// Start listening for events.
|
||||||
GlobalPageMetadata.getInstance().init();
|
GlobalPageMetadata.getInstance().init();
|
||||||
|
|
||||||
final ContentProvider provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
BrowserProvider provider = new BrowserProvider();
|
||||||
try {
|
try {
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
ShadowContentResolver cr = new ShadowContentResolver();
|
ShadowContentResolver cr = new ShadowContentResolver();
|
||||||
ContentProviderClient historyClient = cr.acquireContentProviderClient(BrowserContract.History.CONTENT_URI);
|
ContentProviderClient historyClient = cr.acquireContentProviderClient(BrowserContract.History.CONTENT_URI);
|
||||||
ContentProviderClient pageMetadataClient = cr.acquireContentProviderClient(PageMetadata.CONTENT_URI);
|
ContentProviderClient pageMetadataClient = cr.acquireContentProviderClient(PageMetadata.CONTENT_URI);
|
||||||
|
|
@ -165,4 +171,4 @@ public class GlobalPageMetadataTest {
|
||||||
cursor.close();
|
cursor.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -3,21 +3,29 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.icons.loader;
|
package org.mozilla.gecko.icons.loader;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mozilla.gecko.GeckoProfile;
|
||||||
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
|
import org.mozilla.gecko.db.BrowserDB;
|
||||||
|
import org.mozilla.gecko.db.BrowserProvider;
|
||||||
import org.mozilla.gecko.icons.IconDescriptor;
|
import org.mozilla.gecko.icons.IconDescriptor;
|
||||||
import org.mozilla.gecko.icons.IconRequest;
|
import org.mozilla.gecko.icons.IconRequest;
|
||||||
import org.mozilla.gecko.icons.IconResponse;
|
import org.mozilla.gecko.icons.IconResponse;
|
||||||
import org.mozilla.gecko.icons.Icons;
|
import org.mozilla.gecko.icons.Icons;
|
||||||
import org.robolectric.RuntimeEnvironment;
|
import org.robolectric.RuntimeEnvironment;
|
||||||
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.lang.reflect.Modifier;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
import static org.mockito.Mockito.doReturn;
|
import static org.mockito.Mockito.doReturn;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
|
|
@ -38,7 +46,9 @@ public class TestLegacyLoader {
|
||||||
// We need to ensure we close our db connection properly.
|
// We need to ensure we close our db connection properly.
|
||||||
// This is the only test in this class that actually accesses a database. If that changes,
|
// This is the only test in this class that actually accesses a database. If that changes,
|
||||||
// move BrowserProvider registration into a @Before method, and provider.shutdown into @After.
|
// move BrowserProvider registration into a @Before method, and provider.shutdown into @After.
|
||||||
final ContentProvider provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
final BrowserProvider provider = new BrowserProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
try {
|
try {
|
||||||
final IconRequest request = Icons.with(RuntimeEnvironment.application)
|
final IconRequest request = Icons.with(RuntimeEnvironment.application)
|
||||||
.pageUrl(TEST_PAGE_URL)
|
.pageUrl(TEST_PAGE_URL)
|
||||||
|
|
@ -51,8 +61,8 @@ public class TestLegacyLoader {
|
||||||
|
|
||||||
verify(loader).loadBitmapFromDatabase(request);
|
verify(loader).loadBitmapFromDatabase(request);
|
||||||
Assert.assertNull(response);
|
Assert.assertNull(response);
|
||||||
|
// Close any open db connections.
|
||||||
} finally {
|
} finally {
|
||||||
// Close any open db connections.
|
|
||||||
provider.shutdown();
|
provider.shutdown();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@ public class TestLookupIconUrl {
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
MemoryStorage.get().evictAll();
|
MemoryStorage.get().evictAll();
|
||||||
DiskStorage.get(RuntimeEnvironment.application).evictAll();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
|
|
@ -12,17 +12,13 @@ import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.util.NetworkUtils.ConnectionSubType;
|
import org.mozilla.gecko.util.NetworkUtils.*;
|
||||||
import org.mozilla.gecko.util.NetworkUtils.ConnectionType;
|
|
||||||
import org.mozilla.gecko.util.NetworkUtils.NetworkStatus;
|
|
||||||
import org.robolectric.RuntimeEnvironment;
|
import org.robolectric.RuntimeEnvironment;
|
||||||
import org.robolectric.shadow.api.Shadow;
|
import org.robolectric.internal.ShadowExtractor;
|
||||||
import org.robolectric.shadows.ShadowConnectivityManager;
|
import org.robolectric.shadows.ShadowConnectivityManager;
|
||||||
import org.robolectric.shadows.ShadowNetworkInfo;
|
import org.robolectric.shadows.ShadowNetworkInfo;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.*;
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
|
|
||||||
@RunWith(TestRunner.class)
|
@RunWith(TestRunner.class)
|
||||||
public class NetworkUtilsTest {
|
public class NetworkUtilsTest {
|
||||||
|
|
@ -35,7 +31,7 @@ public class NetworkUtilsTest {
|
||||||
|
|
||||||
// Not using Shadows.shadowOf(connectivityManager) because of Robolectric bug when using API23+
|
// Not using Shadows.shadowOf(connectivityManager) because of Robolectric bug when using API23+
|
||||||
// See: https://github.com/robolectric/robolectric/issues/1862
|
// See: https://github.com/robolectric/robolectric/issues/1862
|
||||||
shadowConnectivityManager = (ShadowConnectivityManager) Shadow.extract(connectivityManager);
|
shadowConnectivityManager = (ShadowConnectivityManager) ShadowExtractor.extract(connectivityManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -186,4 +182,4 @@ public class NetworkUtilsTest {
|
||||||
);
|
);
|
||||||
assertEquals(NetworkStatus.UP, NetworkUtils.getNetworkStatus(connectivityManager));
|
assertEquals(NetworkStatus.UP, NetworkUtils.getNetworkStatus(connectivityManager));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
sdk=23
|
sdk=21
|
||||||
constants=org.mozilla.gecko.BuildConfig
|
constants=org.mozilla.gecko.BuildConfig
|
||||||
packageName=org.mozilla.gecko
|
packageName=org.mozilla.gecko
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
#filter substitution
|
#filter substitution
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
package="@ANDROID_PACKAGE_NAME@"
|
package="@ANDROID_PACKAGE_NAME@"
|
||||||
android:installLocation="internalOnly"
|
android:installLocation="internalOnly"
|
||||||
android:versionCode="@ANDROID_VERSION_CODE@"
|
android:versionCode="@ANDROID_VERSION_CODE@"
|
||||||
|
|
@ -134,7 +133,7 @@
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
<intent-filter tools:ignore="AppLinkUrlError">
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.WEB_SEARCH" />
|
<action android:name="android.intent.action.WEB_SEARCH" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
|
@ -160,7 +159,7 @@
|
||||||
android:resource="@integer/assist_launch_icon_res"/>
|
android:resource="@integer/assist_launch_icon_res"/>
|
||||||
|
|
||||||
<!-- For XPI installs from websites and the download manager. -->
|
<!-- For XPI installs from websites and the download manager. -->
|
||||||
<intent-filter tools:ignore="AppLinkUrlError">
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<data android:scheme="file" />
|
<data android:scheme="file" />
|
||||||
|
|
@ -170,7 +169,7 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
<!-- For XPI installs from file: URLs. -->
|
<!-- For XPI installs from file: URLs. -->
|
||||||
<intent-filter tools:ignore="AppLinkUrlError">
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<data android:host="" />
|
<data android:host="" />
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,6 @@ GARBAGE_DIRS += classes db jars res sync services generated
|
||||||
|
|
||||||
gradle_dir := $(topobjdir)/gradle/build/mobile/android
|
gradle_dir := $(topobjdir)/gradle/build/mobile/android
|
||||||
|
|
||||||
ifndef MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
|
||||||
|
|
||||||
# The bootclasspath is functionally identical to the classpath, but allows the
|
# The bootclasspath is functionally identical to the classpath, but allows the
|
||||||
# classes given to redefine classes in core packages, such as java.lang.
|
# classes given to redefine classes in core packages, such as java.lang.
|
||||||
# android.jar is here as it provides Android's definition of the Java Standard
|
# android.jar is here as it provides Android's definition of the Java Standard
|
||||||
|
|
@ -145,6 +143,7 @@ uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
|
||||||
java_bundled_libs := $(call uniq,$(java_bundled_libs))
|
java_bundled_libs := $(call uniq,$(java_bundled_libs))
|
||||||
java_bundled_libs := $(subst $(NULL) ,:,$(strip $(java_bundled_libs)))
|
java_bundled_libs := $(subst $(NULL) ,:,$(strip $(java_bundled_libs)))
|
||||||
|
|
||||||
|
ifndef MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
||||||
GECKOVIEW_JARS = \
|
GECKOVIEW_JARS = \
|
||||||
constants.jar \
|
constants.jar \
|
||||||
gecko-R.jar \
|
gecko-R.jar \
|
||||||
|
|
@ -176,6 +175,16 @@ ifdef MOZ_ANDROID_MLS_STUMBLER
|
||||||
FENNEC_JARS += ../stumbler/stumbler.jar
|
FENNEC_JARS += ../stumbler/stumbler.jar
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
else # MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
||||||
|
|
||||||
|
GECKOVIEW_JARS := $(gradle_dir)/geckoview/intermediates/bundles/debug/classes.jar
|
||||||
|
FENNEC_JARS := $(gradle_dir)/app/intermediates/packaged/officialPhoton/debug/classes.jar
|
||||||
|
|
||||||
|
$(GECKOVIEW_JARS): .gradle.deps
|
||||||
|
$(FENNEC_JARS): .gradle.deps
|
||||||
|
|
||||||
|
endif # MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
||||||
|
|
||||||
geckoview_jars_classpath := $(subst $(NULL) ,:,$(strip $(GECKOVIEW_JARS)))
|
geckoview_jars_classpath := $(subst $(NULL) ,:,$(strip $(GECKOVIEW_JARS)))
|
||||||
|
|
||||||
# All the jars we're compiling from source. (not to be confused with
|
# All the jars we're compiling from source. (not to be confused with
|
||||||
|
|
@ -223,8 +232,6 @@ endif # MOZ_INSTALL_TRACKING
|
||||||
|
|
||||||
library_jars := $(subst $(NULL) ,:,$(strip $(library_jars)))
|
library_jars := $(subst $(NULL) ,:,$(strip $(library_jars)))
|
||||||
|
|
||||||
endif # MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
|
||||||
|
|
||||||
ifdef MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
ifdef MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
||||||
define gradle_command
|
define gradle_command
|
||||||
$(1): $(2)
|
$(1): $(2)
|
||||||
|
|
@ -237,7 +244,7 @@ $(eval $(call gradle_command,.gradle.deps,.aapt.deps FORCE))
|
||||||
|
|
||||||
classes.dex: .gradle.deps
|
classes.dex: .gradle.deps
|
||||||
$(REPORT_BUILD)
|
$(REPORT_BUILD)
|
||||||
cp $(gradle_dir)/app/intermediates/transforms/dexMerger/officialWithoutGeckoBinariesNoMinApiPhoton/debug/0/classes.dex classes.dex
|
cp $(gradle_dir)/app/intermediates/transforms/dex/officialPhoton/debug/folders/1000/1f/main/classes.dex $@
|
||||||
|
|
||||||
GeneratedJNIWrappers.cpp GeneratedJNIWrappers.h GeneratedJNINatives.h : .gradle.deps
|
GeneratedJNIWrappers.cpp GeneratedJNIWrappers.h GeneratedJNINatives.h : .gradle.deps
|
||||||
$(REPORT_BUILD)
|
$(REPORT_BUILD)
|
||||||
|
|
@ -245,7 +252,7 @@ GeneratedJNIWrappers.cpp GeneratedJNIWrappers.h GeneratedJNINatives.h : .gradle.
|
||||||
FennecJNIWrappers.cpp FennecJNIWrappers.h FennecJNINatives.h: .gradle.deps
|
FennecJNIWrappers.cpp FennecJNIWrappers.h FennecJNINatives.h: .gradle.deps
|
||||||
$(REPORT_BUILD)
|
$(REPORT_BUILD)
|
||||||
|
|
||||||
else # MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
|
else
|
||||||
classes.dex: .proguard.deps
|
classes.dex: .proguard.deps
|
||||||
$(REPORT_BUILD)
|
$(REPORT_BUILD)
|
||||||
$(DX) --dex --output=classes.dex --force-jumbo jars-proguarded
|
$(DX) --dex --output=classes.dex --force-jumbo jars-proguarded
|
||||||
|
|
@ -484,7 +491,7 @@ $(eval $(call gradle_command,.gradle.nodeps,AndroidManifest.xml $(constants_PP_J
|
||||||
.aapt.nodeps: .gradle.nodeps FORCE
|
.aapt.nodeps: .gradle.nodeps FORCE
|
||||||
@$(TOUCH) $@
|
@$(TOUCH) $@
|
||||||
cp $(GRADLE_ANDROID_APP_APK) gecko-nodeps.ap_
|
cp $(GRADLE_ANDROID_APP_APK) gecko-nodeps.ap_
|
||||||
cp $(gradle_dir)/app/intermediates/transforms/dexMerger/officialWithoutGeckoBinariesNoMinApiPhoton/debug/0/classes.dex classes.dex
|
cp $(gradle_dir)/app/intermediates/transforms/dex/officialPhoton/debug/folders/1000/1f/main/classes.dex classes.dex
|
||||||
else
|
else
|
||||||
# .aapt.nodeps: AndroidManifest.xml FORCE
|
# .aapt.nodeps: AndroidManifest.xml FORCE
|
||||||
$(eval $(call aapt_command,.aapt.nodeps,AndroidManifest.xml FORCE,gecko-nodeps.ap_,gecko-nodeps/,gecko-nodeps/))
|
$(eval $(call aapt_command,.aapt.nodeps,AndroidManifest.xml FORCE,gecko-nodeps.ap_,gecko-nodeps/,gecko-nodeps/))
|
||||||
|
|
|
||||||
|
|
@ -46,9 +46,7 @@ import android.widget.CheckBox;
|
||||||
import android.widget.CompoundButton;
|
import android.widget.CompoundButton;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
|
|
||||||
// Registered: This activity is only registered in the manifest if MOZ_CRASHREPORTER is set.
|
@SuppressLint("Registered") // This activity is only registered in the manifest if MOZ_CRASHREPORTER is set
|
||||||
// CutPasteId: This lint is not worth fixing. To fix it, cache all the findViewById results.
|
|
||||||
@SuppressLint("Registered,CutPasteId")
|
|
||||||
public class CrashReporter extends AppCompatActivity
|
public class CrashReporter extends AppCompatActivity
|
||||||
{
|
{
|
||||||
private static final String LOGTAG = "GeckoCrashReporter";
|
private static final String LOGTAG = "GeckoCrashReporter";
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.activitystream;
|
package org.mozilla.gecko.activitystream;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.res.Resources;
|
import android.content.res.Resources;
|
||||||
|
|
@ -217,7 +216,8 @@ public class ActivityStreamTelemetry {
|
||||||
break;
|
break;
|
||||||
// While we also have a "blank" type, it is not used by Activity Stream.
|
// While we also have a "blank" type, it is not used by Activity Stream.
|
||||||
case BrowserContract.TopSites.TYPE_BLANK:
|
case BrowserContract.TopSites.TYPE_BLANK:
|
||||||
throw new IllegalStateException("Unknown top site type :" + (int) topSite.getType());
|
default:
|
||||||
|
throw new IllegalStateException("Unknown top site type: " + topSite.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
|
|
||||||
|
|
@ -226,5 +226,4 @@ public class Highlight implements WebpageRowModel {
|
||||||
|
|
||||||
// The Highlights cursor automatically notifies of data changes, so nothing needs to be done here.
|
// The Highlights cursor automatically notifies of data changes, so nothing needs to be done here.
|
||||||
@Override
|
@Override
|
||||||
public void onStateCommitted() {}
|
public void onStateCommitted() {}}
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@ import org.mozilla.gecko.R;
|
||||||
import org.mozilla.gecko.SiteIdentity;
|
import org.mozilla.gecko.SiteIdentity;
|
||||||
import org.mozilla.gecko.Tab;
|
import org.mozilla.gecko.Tab;
|
||||||
import org.mozilla.gecko.toolbar.SecurityModeUtil;
|
import org.mozilla.gecko.toolbar.SecurityModeUtil;
|
||||||
|
import org.mozilla.gecko.toolbar.CustomTabsSecurityPopup;
|
||||||
import org.mozilla.gecko.util.ColorUtil;
|
import org.mozilla.gecko.util.ColorUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
package org.mozilla.gecko.customtabs;
|
package org.mozilla.gecko.toolbar;
|
||||||
|
|
||||||
import android.content.ClipData;
|
import android.content.ClipData;
|
||||||
import android.content.ClipboardManager;
|
import android.content.ClipboardManager;
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@ import java.util.Arrays;
|
||||||
*
|
*
|
||||||
* * {@link AbstractPerProfileDatabaseProvider} provides a simple abstraction for
|
* * {@link AbstractPerProfileDatabaseProvider} provides a simple abstraction for
|
||||||
* querying databases that are stored in the user's profile directory.
|
* querying databases that are stored in the user's profile directory.
|
||||||
|
* * {@link PerProfileDatabaseProvider} is a simple version that only allows a
|
||||||
|
* single ContentProvider to access each per-profile database.
|
||||||
* * {@link SharedBrowserDatabaseProvider} is an example of a per-profile provider
|
* * {@link SharedBrowserDatabaseProvider} is an example of a per-profile provider
|
||||||
* that allows for multiple providers to safely work with the same databases.
|
* that allows for multiple providers to safely work with the same databases.
|
||||||
*/
|
*/
|
||||||
|
|
@ -132,7 +134,7 @@ public abstract class AbstractTransactionalProvider extends ContentProvider {
|
||||||
* If we're not in a batch, but we are in a write transaction,
|
* If we're not in a batch, but we are in a write transaction,
|
||||||
* end it.
|
* end it.
|
||||||
*
|
*
|
||||||
* @see AbstractTransactionalProvider#markWriteSuccessful(SQLiteDatabase)
|
* @see PerProfileDatabaseProvider#markWriteSuccessful(SQLiteDatabase)
|
||||||
*/
|
*/
|
||||||
protected void endWrite(final SQLiteDatabase db) {
|
protected void endWrite(final SQLiteDatabase db) {
|
||||||
if (isInBatch()) {
|
if (isInBatch()) {
|
||||||
|
|
|
||||||
|
|
@ -306,11 +306,7 @@ public class LocalBrowserDB extends BrowserDB {
|
||||||
bookmarkValue.put(Bookmarks.FAVICON_ID, faviconID);
|
bookmarkValue.put(Bookmarks.FAVICON_ID, faviconID);
|
||||||
faviconValues.add(iconValue);
|
faviconValues.add(iconValue);
|
||||||
}
|
}
|
||||||
} catch (IllegalAccessException e) {
|
} catch (IllegalAccessException | IllegalArgumentException | NoSuchFieldException e) {
|
||||||
Log.wtf(LOGTAG, "Reflection failure.", e);
|
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
Log.wtf(LOGTAG, "Reflection failure.", e);
|
|
||||||
} catch (NoSuchFieldException e) {
|
|
||||||
Log.wtf(LOGTAG, "Reflection failure.", e);
|
Log.wtf(LOGTAG, "Reflection failure.", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -506,13 +502,7 @@ public class LocalBrowserDB extends BrowserDB {
|
||||||
faviconField.setAccessible(true);
|
faviconField.setAccessible(true);
|
||||||
|
|
||||||
return faviconField.getInt(null);
|
return faviconField.getInt(null);
|
||||||
} catch (IllegalAccessException e) {
|
} catch (IllegalAccessException | NoSuchFieldException e) {
|
||||||
// We'll end up here for any default bookmark that doesn't have a favicon in
|
|
||||||
// resources/raw/ (i.e., about:firefox). When this happens, the Favicons service will
|
|
||||||
// fall back to the default branding icon for about pages. Non-about pages should always
|
|
||||||
// specify an icon; otherwise, the placeholder globe favicon will be used.
|
|
||||||
Log.d(LOGTAG, "No raw favicon resource found for " + name);
|
|
||||||
} catch (NoSuchFieldException e) {
|
|
||||||
// We'll end up here for any default bookmark that doesn't have a favicon in
|
// We'll end up here for any default bookmark that doesn't have a favicon in
|
||||||
// resources/raw/ (i.e., about:firefox). When this happens, the Favicons service will
|
// resources/raw/ (i.e., about:firefox). When this happens, the Favicons service will
|
||||||
// fall back to the default branding icon for about pages. Non-about pages should always
|
// fall back to the default branding icon for about pages. Non-about pages should always
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||||
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package org.mozilla.gecko.db;
|
||||||
|
|
||||||
|
import org.mozilla.gecko.AppConstants.Versions;
|
||||||
|
import org.mozilla.gecko.db.PerProfileDatabases.DatabaseHelperFactory;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.database.sqlite.SQLiteOpenHelper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract class containing methods needed to make a SQLite-based content
|
||||||
|
* provider with a database helper of type T, where one database helper is
|
||||||
|
* held per profile.
|
||||||
|
*/
|
||||||
|
public abstract class PerProfileDatabaseProvider<T extends SQLiteOpenHelper> extends AbstractPerProfileDatabaseProvider {
|
||||||
|
private PerProfileDatabases<T> databases;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected PerProfileDatabases<T> getDatabases() {
|
||||||
|
return databases;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract String getDatabaseName();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates and returns an instance of the appropriate DB helper.
|
||||||
|
*
|
||||||
|
* @param context to use to create the database helper
|
||||||
|
* @param databasePath path to the DB file
|
||||||
|
* @return instance of the database helper
|
||||||
|
*/
|
||||||
|
protected abstract T createDatabaseHelper(Context context, String databasePath);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onCreate() {
|
||||||
|
synchronized (this) {
|
||||||
|
databases = new PerProfileDatabases<T>(
|
||||||
|
getContext(), getDatabaseName(), new DatabaseHelperFactory<T>() {
|
||||||
|
@Override
|
||||||
|
public T makeDatabaseHelper(Context context, String databasePath) {
|
||||||
|
final T helper = createDatabaseHelper(context, databasePath);
|
||||||
|
if (Versions.feature16Plus) {
|
||||||
|
helper.setWriteAheadLoggingEnabled(true);
|
||||||
|
}
|
||||||
|
return helper;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.dlc;
|
package org.mozilla.gecko.dlc;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.support.annotation.IntDef;
|
import android.support.annotation.IntDef;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
@ -101,7 +100,7 @@ public abstract class BaseAction {
|
||||||
} else if (content.isHyphenationDictionary()) {
|
} else if (content.isHyphenationDictionary()) {
|
||||||
destinationDirectory = new File(context.getApplicationInfo().dataDir, "hyphenation");
|
destinationDirectory = new File(context.getApplicationInfo().dataDir, "hyphenation");
|
||||||
} else {
|
} else {
|
||||||
throw new UnrecoverableDownloadContentException("Can't determine destination for kind: " + (String) content.getKind());
|
throw new UnrecoverableDownloadContentException("Can't determine destination for kind: " + content.getKind());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!destinationDirectory.exists() && !destinationDirectory.mkdirs()) {
|
if (!destinationDirectory.exists() && !destinationDirectory.mkdirs()) {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.dlc;
|
package org.mozilla.gecko.dlc;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.net.ConnectivityManager;
|
import android.net.ConnectivityManager;
|
||||||
import android.net.NetworkInfo;
|
import android.net.NetworkInfo;
|
||||||
|
|
@ -107,7 +106,7 @@ public class DownloadAction extends BaseAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!content.isAssetArchive()) {
|
if (!content.isAssetArchive()) {
|
||||||
Log.e(LOGTAG, "Downloaded content is not of type 'asset-archive': " + (String) content.getType());
|
Log.e(LOGTAG, "Downloaded content is not of type 'asset-archive': " + content.getType());
|
||||||
temporaryFile.delete();
|
temporaryFile.delete();
|
||||||
DownloadContentTelemetry.eventDownloadFailure(content, DownloadContentTelemetry.ERROR_LOGIC);
|
DownloadContentTelemetry.eventDownloadFailure(content, DownloadContentTelemetry.ERROR_LOGIC);
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,68 @@
|
||||||
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
||||||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package org.mozilla.gecko.home;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.util.AttributeSet;
|
||||||
|
import android.view.ContextMenu.ContextMenuInfo;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.AdapterView;
|
||||||
|
import android.widget.AdapterView.OnItemLongClickListener;
|
||||||
|
import android.widget.ExpandableListView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>HomeExpandableListView</code> is a custom extension of
|
||||||
|
* <code>ExpandableListView<code>, that packs a <code>HomeContextMenuInfo</code>
|
||||||
|
* when any of its rows is long pressed.
|
||||||
|
* <p>
|
||||||
|
* This is the <code>ExpandableListView</code> equivalent of
|
||||||
|
* <code>HomeListView</code>.
|
||||||
|
*/
|
||||||
|
public class HomeExpandableListView extends ExpandableListView
|
||||||
|
implements OnItemLongClickListener {
|
||||||
|
|
||||||
|
// ContextMenuInfo associated with the currently long pressed list item.
|
||||||
|
private HomeContextMenuInfo mContextMenuInfo;
|
||||||
|
|
||||||
|
// ContextMenuInfo factory.
|
||||||
|
private HomeContextMenuInfo.ExpandableFactory mContextMenuInfoFactory;
|
||||||
|
|
||||||
|
public HomeExpandableListView(Context context) {
|
||||||
|
this(context, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomeExpandableListView(Context context, AttributeSet attrs) {
|
||||||
|
this(context, attrs, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomeExpandableListView(Context context, AttributeSet attrs, int defStyle) {
|
||||||
|
super(context, attrs, defStyle);
|
||||||
|
|
||||||
|
setOnItemLongClickListener(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
|
||||||
|
if (mContextMenuInfoFactory == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// HomeExpandableListView items can correspond to groups and children.
|
||||||
|
// The factory can determine whether to add context menu for either,
|
||||||
|
// both, or none by unpacking the given position.
|
||||||
|
mContextMenuInfo = mContextMenuInfoFactory.makeInfoForAdapter(view, position, id, getExpandableListAdapter());
|
||||||
|
return showContextMenuForChild(HomeExpandableListView.this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ContextMenuInfo getContextMenuInfo() {
|
||||||
|
return mContextMenuInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setContextMenuInfoFactory(final HomeContextMenuInfo.ExpandableFactory factory) {
|
||||||
|
mContextMenuInfoFactory = factory;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -294,14 +294,12 @@ public class UpdateService extends IntentService {
|
||||||
public void run() {
|
public void run() {
|
||||||
showPermissionNotification();
|
showPermissionNotification();
|
||||||
sendCheckUpdateResult(CheckUpdateResult.NOT_AVAILABLE);
|
sendCheckUpdateResult(CheckUpdateResult.NOT_AVAILABLE);
|
||||||
}
|
}})
|
||||||
})
|
|
||||||
.run(new Runnable() {
|
.run(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
startDownload(info, flags);
|
startDownload(info, flags);
|
||||||
}
|
}});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void startDownload(UpdateInfo info, int flags) {
|
private void startDownload(UpdateInfo info, int flags) {
|
||||||
|
|
|
||||||
|
|
@ -101,8 +101,4 @@ final class UnusedResourcesUtil {
|
||||||
public static final int[] USED_IN_PAGE_ACTION = {
|
public static final int[] USED_IN_PAGE_ACTION = {
|
||||||
R.drawable.add_to_homescreen
|
R.drawable.add_to_homescreen
|
||||||
};
|
};
|
||||||
|
|
||||||
public static final int[] USED_IN_LEANPLUM_EXPANDABLE_LIST_ACTIVITY = {
|
|
||||||
R.style.Widget_ExpandableListView,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -565,6 +565,7 @@ gbjar.sources += ['java/org/mozilla/gecko/' + x for x in [
|
||||||
'db/LocalURLMetadata.java',
|
'db/LocalURLMetadata.java',
|
||||||
'db/LoginsProvider.java',
|
'db/LoginsProvider.java',
|
||||||
'db/PasswordsProvider.java',
|
'db/PasswordsProvider.java',
|
||||||
|
'db/PerProfileDatabaseProvider.java',
|
||||||
'db/PerProfileDatabases.java',
|
'db/PerProfileDatabases.java',
|
||||||
'db/RemoteClient.java',
|
'db/RemoteClient.java',
|
||||||
'db/RemoteTab.java',
|
'db/RemoteTab.java',
|
||||||
|
|
@ -662,6 +663,7 @@ gbjar.sources += ['java/org/mozilla/gecko/' + x for x in [
|
||||||
'home/HomeConfigLoader.java',
|
'home/HomeConfigLoader.java',
|
||||||
'home/HomeConfigPrefsBackend.java',
|
'home/HomeConfigPrefsBackend.java',
|
||||||
'home/HomeContextMenuInfo.java',
|
'home/HomeContextMenuInfo.java',
|
||||||
|
'home/HomeExpandableListView.java',
|
||||||
'home/HomeFragment.java',
|
'home/HomeFragment.java',
|
||||||
'home/HomeListView.java',
|
'home/HomeListView.java',
|
||||||
'home/HomePager.java',
|
'home/HomePager.java',
|
||||||
|
|
@ -1160,7 +1162,7 @@ gbjar.extra_jars += [CONFIG['ANDROID_DESIGN_AAR_LIB']]
|
||||||
gbjar.extra_jars += [CONFIG['ANDROID_RECYCLERVIEW_V7_AAR_LIB']]
|
gbjar.extra_jars += [CONFIG['ANDROID_RECYCLERVIEW_V7_AAR_LIB']]
|
||||||
gbjar.extra_jars += [CONFIG['ANDROID_CUSTOMTABS_AAR_LIB']]
|
gbjar.extra_jars += [CONFIG['ANDROID_CUSTOMTABS_AAR_LIB']]
|
||||||
|
|
||||||
gbjar.javac_flags += ['-Xlint:all,-deprecation,-fallthrough,-cast', '-J-Xmx512m', '-J-Xms128m']
|
gbjar.javac_flags += ['-Xlint:all,-deprecation,-fallthrough', '-J-Xmx512m', '-J-Xms128m']
|
||||||
|
|
||||||
# gecko-thirdparty is a good place to put small independent libraries
|
# gecko-thirdparty is a good place to put small independent libraries
|
||||||
gtjar = add_java_jar('gecko-thirdparty')
|
gtjar = add_java_jar('gecko-thirdparty')
|
||||||
|
|
|
||||||
|
|
@ -1,101 +0,0 @@
|
||||||
.. -*- Mode: rst; fill-column: 80; -*-
|
|
||||||
|
|
||||||
=================================
|
|
||||||
The Fennec Gradle configuration
|
|
||||||
=================================
|
|
||||||
|
|
||||||
The Fennec Gradle configuration has three major facets:
|
|
||||||
|
|
||||||
1. separation into Gradle projects;
|
|
||||||
2. Android-Gradle build configurations using `flavorDimensions`;
|
|
||||||
3. integration into the larger `moz.build` build system.
|
|
||||||
|
|
||||||
Separation into Gradle projects
|
|
||||||
===============================
|
|
||||||
|
|
||||||
The Fennec source code is separated into multiple Gradle projects. Right now,
|
|
||||||
there are only a few: `:app`, `:geckoview`, `:thirdparty`, etc. Over time, pieces
|
|
||||||
of the Fennec source code will be extracted into separate, more-or-less
|
|
||||||
stand-alone Gradle projects (e.g., `:services`, `:stumbler`, `:media`) and use
|
|
||||||
modern techniques such as dependency injection to configure themselves at
|
|
||||||
runtime.
|
|
||||||
|
|
||||||
The `:omnijar` project is special and exists only to support integration with
|
|
||||||
Android Studio.
|
|
||||||
|
|
||||||
The details of the Gradle projects are reflected in the root `settings.gradle`
|
|
||||||
and the `**/build.gradle` files throughout the tree.
|
|
||||||
|
|
||||||
Android-Gradle build configurations
|
|
||||||
===================================
|
|
||||||
|
|
||||||
The Fennec `:app` project uses the Android-Gradle build plugin
|
|
||||||
`flavorDimensions` feature set to support many different configurations. The
|
|
||||||
Gradle integration must support many often conflicting requirements; the flavor
|
|
||||||
dimensions chosen support these requirements.
|
|
||||||
|
|
||||||
Version 3.0+ of the Android-Gradle build plugin improves support for "variant
|
|
||||||
dependencies". This makes it easier for a consuming application (for us,
|
|
||||||
`:app`) to use the appropriate configuration of consumed libraries (for us,
|
|
||||||
`:geckoview`). This allows us to simplify the logic around packaging the Gecko
|
|
||||||
libraries and Omnijar.
|
|
||||||
|
|
||||||
The details of the Android-Gradle build configurations are reflected
|
|
||||||
`**/build.gradle` files throughout the tree, in the
|
|
||||||
`mobile/android/gradle/*.gradle` files, and in the configuration baked into
|
|
||||||
`mobile/android/gradle.configure`.
|
|
||||||
|
|
||||||
The notable flavor dimensions are:
|
|
||||||
|
|
||||||
audience
|
|
||||||
--------
|
|
||||||
|
|
||||||
The `audience` flavor dimension determines who the build is for. "local"
|
|
||||||
audiences are developers: they should get extra logging and as much support for
|
|
||||||
building Fennec as possible. In particular, "local" audiences get support for
|
|
||||||
modifying the Android manifest and regenerating the pre-processed `strings.xml`
|
|
||||||
files while building with Gradle from within Android Studio.
|
|
||||||
|
|
||||||
"official" audiences are end users: they should get Mozilla's official branding
|
|
||||||
and have security-sensitive developer features disabled. The "official"
|
|
||||||
audience corresponds roughly to the `MOZILLA_OFFICIAL=1` build setting.
|
|
||||||
|
|
||||||
**Builds shipped to the Google Play Store are always for "official" audiences.**
|
|
||||||
|
|
||||||
geckoBinaries
|
|
||||||
-------------
|
|
||||||
|
|
||||||
For deep historical reasons, Mozilla's build system has multiple stages, the
|
|
||||||
most important of which are the build stage and the package stage. During the
|
|
||||||
build stage, the Gecko compiled libraries (e.g., `libxul.so`) and the Omnijar
|
|
||||||
have not yet been built. These libraries are only available during the package
|
|
||||||
stage. Gradle builds always want to include the Gecko libraries and the
|
|
||||||
Omnijar.
|
|
||||||
|
|
||||||
To accommodate the different stages, the build stage always invokes
|
|
||||||
"withoutGeckoBinaries" Gradle configurations. These configurations don't expect
|
|
||||||
or use the Gecko libraries or Omnijar. At the moment, the package stage also
|
|
||||||
invokes "withoutGeckoBinaries", but in the future, the package stage will invoke
|
|
||||||
"withGeckoBinaries" Gradle configurations to simplify the packaging of libraries
|
|
||||||
and the omnijar.
|
|
||||||
|
|
||||||
**Local developers almost always want to build "withGeckoBinaries", so that the
|
|
||||||
APK files produced can be run on device.**
|
|
||||||
|
|
||||||
minApi
|
|
||||||
------
|
|
||||||
|
|
||||||
At various times in the past, Fennec has supported APK splits, producing APKs
|
|
||||||
that support only specific Android versions. While this is not used at this
|
|
||||||
time, there are certain developer options (i.e., options that should only apply
|
|
||||||
to "local" audiences) that *also* depend on the target Android version. This
|
|
||||||
flavor dimension allows to opt in to those options, improving the speed of
|
|
||||||
development.
|
|
||||||
|
|
||||||
Integration into the larger `moz.build` build system
|
|
||||||
====================================================
|
|
||||||
|
|
||||||
The details of the Gradle integration into the larger `moz.build` system are
|
|
||||||
mostly captured in configuration baked into `mobile/android/gradle.configure`.
|
|
||||||
This configuration is reflected in the Android-specific `mach android *`
|
|
||||||
commands defined in `mobile/android/mach_commands.py`.
|
|
||||||
|
|
@ -20,7 +20,6 @@ Contents:
|
||||||
defaultdomains
|
defaultdomains
|
||||||
shutdown
|
shutdown
|
||||||
push
|
push
|
||||||
gradle
|
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
==================
|
==================
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,6 @@ buildDir "${topobjdir}/gradle/build/mobile/android/geckoview"
|
||||||
|
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
apply from: "${topsrcdir}/mobile/android/gradle/product_flavors.gradle"
|
|
||||||
|
|
||||||
// This converts MOZ_APP_VERSION into an integer
|
// This converts MOZ_APP_VERSION into an integer
|
||||||
// version code.
|
// version code.
|
||||||
//
|
//
|
||||||
|
|
@ -40,8 +38,12 @@ def computeVersionCode() {
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion project.ext.compileSdkVersion
|
compileSdkVersion project.ext.compileSdkVersion
|
||||||
|
buildToolsVersion project.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
|
defaultPublishConfig 'release'
|
||||||
|
publishNonDefault true
|
||||||
|
|
||||||
targetSdkVersion project.ext.targetSdkVersion
|
targetSdkVersion project.ext.targetSdkVersion
|
||||||
minSdkVersion project.ext.minSdkVersion
|
minSdkVersion project.ext.minSdkVersion
|
||||||
manifestPlaceholders = project.ext.manifestPlaceholders
|
manifestPlaceholders = project.ext.manifestPlaceholders
|
||||||
|
|
@ -101,8 +103,14 @@ android {
|
||||||
buildConfigField 'boolean', 'MOZILLA_OFFICIAL', mozconfig.substs.MOZILLA_OFFICIAL ? 'true' : 'false';
|
buildConfigField 'boolean', 'MOZILLA_OFFICIAL', mozconfig.substs.MOZILLA_OFFICIAL ? 'true' : 'false';
|
||||||
}
|
}
|
||||||
|
|
||||||
project.configureProductFlavors.delegate = it
|
buildTypes {
|
||||||
project.configureProductFlavors()
|
withGeckoBinaries {
|
||||||
|
initWith release
|
||||||
|
}
|
||||||
|
withoutGeckoBinaries { // For clarity and consistency throughout the tree.
|
||||||
|
initWith release
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_7
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||||||
|
|
@ -146,16 +154,21 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:palette-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:palette-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "${topsrcdir}/mobile/android/gradle/with_gecko_binaries.gradle"
|
apply from: "${topsrcdir}/mobile/android/gradle/with_gecko_binaries.gradle"
|
||||||
|
|
||||||
android.libraryVariants.all { variant ->
|
android.libraryVariants.all { variant ->
|
||||||
// See the notes in mobile/android/app/build.gradle for details on including
|
// Like 'debug', 'release', or 'withGeckoBinaries'.
|
||||||
// Gecko binaries and the Omnijar.
|
def buildType = variant.buildType.name
|
||||||
if ((variant.productFlavors*.name).contains('withGeckoBinaries')) {
|
|
||||||
|
// It would be most natural for :geckoview to always include the Gecko
|
||||||
|
// binaries, but that's difficult; see the notes in
|
||||||
|
// mobile/android/gradle/with_gecko_binaries.gradle. Instead :app uses
|
||||||
|
// :geckoview:release and handles it's own Gecko binary inclusion.
|
||||||
|
if (buildType.equals('withGeckoBinaries')) {
|
||||||
configureVariantWithGeckoBinaries(variant)
|
configureVariantWithGeckoBinaries(variant)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -189,12 +202,12 @@ android.libraryVariants.all { variant ->
|
||||||
options.addStringOption('noqualifier', 'java.lang');
|
options.addStringOption('noqualifier', 'java.lang');
|
||||||
}
|
}
|
||||||
|
|
||||||
def javadocJar = task("javadocJar${name.capitalize()}", type: Jar, dependsOn: javadoc) {
|
task "javadocJar${name.capitalize()}"(type: Jar, dependsOn: javadoc) {
|
||||||
classifier = 'javadoc'
|
classifier = 'javadoc'
|
||||||
from javadoc.destinationDir
|
from javadoc.destinationDir
|
||||||
}
|
}
|
||||||
|
|
||||||
def sourcesJar = task("sourcesJar${name.capitalize()}", type: Jar) {
|
task "sourcesJar${name.capitalize()}"(type: Jar) {
|
||||||
classifier 'sources'
|
classifier 'sources'
|
||||||
description = "Generate Javadoc for build variant $name"
|
description = "Generate Javadoc for build variant $name"
|
||||||
destinationDir = new File(destinationDir, variant.baseName)
|
destinationDir = new File(destinationDir, variant.baseName)
|
||||||
|
|
@ -203,7 +216,7 @@ android.libraryVariants.all { variant ->
|
||||||
}
|
}
|
||||||
|
|
||||||
android.libraryVariants.all { variant ->
|
android.libraryVariants.all { variant ->
|
||||||
configureLibraryVariantWithJNIWrappers(variant, "Generated")
|
configureVariantWithJNIWrappers(variant, "Generated")
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
|
@ -232,7 +245,7 @@ afterEvaluate {
|
||||||
// The bundle tasks are only present when the particular configuration is
|
// The bundle tasks are only present when the particular configuration is
|
||||||
// being built, so this task might not exist. (This is due to the way the
|
// being built, so this task might not exist. (This is due to the way the
|
||||||
// Android Gradle plugin defines things during configuration.)
|
// Android Gradle plugin defines things during configuration.)
|
||||||
def bundleWithGeckoBinaries = tasks.findByName('bundleOfficialWithGeckoBinariesNoMinApiRelease')
|
def bundleWithGeckoBinaries = tasks.findByName('bundleWithGeckoBinaries')
|
||||||
if (!bundleWithGeckoBinaries) {
|
if (!bundleWithGeckoBinaries) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -246,10 +259,10 @@ afterEvaluate {
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
// Instead of default (release) configuration, publish one with Gecko binaries.
|
// Instead of default (release) configuration, publish one with Gecko binaries.
|
||||||
archives bundleOfficialWithGeckoBinariesNoMinApiRelease
|
archives bundleWithGeckoBinaries
|
||||||
// Javadoc and sources for developer ergononomics.
|
// Javadoc and sources for developer ergononomics.
|
||||||
archives javadocJarOfficialWithGeckoBinariesNoMinApiRelease
|
archives javadocJarWithGeckoBinaries
|
||||||
archives sourcesJarOfficialWithGeckoBinariesNoMinApiRelease
|
archives sourcesJarWithGeckoBinaries
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ public class GeckoHlsPlayer implements BaseHlsPlayer, ExoPlayer.EventListener {
|
||||||
private final int mPlayerId;
|
private final int mPlayerId;
|
||||||
private boolean mExoplayerSuspended = false;
|
private boolean mExoplayerSuspended = false;
|
||||||
|
|
||||||
private enum MediaDecoderPlayState {
|
private enum MediaDecoderPlayState{
|
||||||
PLAY_STATE_PREPARING,
|
PLAY_STATE_PREPARING,
|
||||||
PLAY_STATE_PAUSED,
|
PLAY_STATE_PAUSED,
|
||||||
PLAY_STATE_PLAYING
|
PLAY_STATE_PLAYING
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,9 @@ buildDir "${topobjdir}/gradle/build/mobile/android/geckoview_example"
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
apply from: "${topsrcdir}/mobile/android/gradle/product_flavors.gradle"
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion project.ext.compileSdkVersion
|
compileSdkVersion project.ext.compileSdkVersion
|
||||||
|
buildToolsVersion project.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
targetSdkVersion project.ext.targetSdkVersion
|
targetSdkVersion project.ext.targetSdkVersion
|
||||||
|
|
@ -18,27 +17,52 @@ android {
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is extremely frustrating, but the only way to do it automation for
|
||||||
|
// now. Without this, we only get a "debugAndroidTest" configuration; we
|
||||||
|
// have no "withoutGeckoBinariesAndroidTest" configuration.
|
||||||
|
testBuildType "withoutGeckoBinaries"
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
withGeckoBinaries { // For consistency with :geckoview project in Task Cluster invocations.
|
||||||
|
initWith debug
|
||||||
|
}
|
||||||
|
withoutGeckoBinaries { // Logical negation of withGeckoBinaries.
|
||||||
|
initWith debug
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
project.configureProductFlavors.delegate = it
|
|
||||||
project.configureProductFlavors()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'junit:junit:4.12'
|
testCompile 'junit:junit:4.12'
|
||||||
|
|
||||||
implementation 'com.android.support:support-annotations:23.4.0'
|
compile 'com.android.support:support-annotations:23.4.0'
|
||||||
|
|
||||||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
|
||||||
androidTestImplementation 'com.android.support.test:runner:0.5'
|
androidTestCompile 'com.android.support.test:runner:0.5'
|
||||||
// Not defining this library again results in test-app assuming 23.1.1, and the following errors:
|
// Not defining this library again results in test-app assuming 23.1.1, and the following errors:
|
||||||
// "Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (23.4.0) and test app (23.1.1) differ."
|
// "Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (23.4.0) and test app (23.1.1) differ."
|
||||||
androidTestImplementation 'com.android.support:support-annotations:23.4.0'
|
androidTestCompile 'com.android.support:support-annotations:23.4.0'
|
||||||
|
|
||||||
implementation project(path: ':geckoview')
|
debugCompile project(path: ':geckoview', configuration: "debug")
|
||||||
|
releaseCompile project(path: ':geckoview', configuration: "release")
|
||||||
|
withGeckoBinariesCompile project(path: ':geckoview', configuration: "withGeckoBinaries")
|
||||||
|
withoutGeckoBinariesCompile project(path: ':geckoview', configuration: "withoutGeckoBinaries")
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "${topsrcdir}/mobile/android/gradle/with_gecko_binaries.gradle"
|
||||||
|
|
||||||
|
android.applicationVariants.all { variant ->
|
||||||
|
// Like 'debug', 'release', or 'withoutGeckoBinaries'.
|
||||||
|
def buildType = variant.buildType.name
|
||||||
|
|
||||||
|
// It would be most natural for :geckoview to always include the Gecko
|
||||||
|
// binaries, but that's difficult; see the notes in
|
||||||
|
// mobile/android/gradle/with_gecko_binaries.gradle. Instead we handle our
|
||||||
|
// own Gecko binary inclusion.
|
||||||
|
if (!buildType.equals('withoutGeckoBinaries')) {
|
||||||
|
configureVariantWithGeckoBinaries(variant)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,9 @@ def gradle_android_build_config():
|
||||||
else:
|
else:
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
# It's not really possible to abstract the GeckoView details just yet; post
|
||||||
|
# Android-Gradle plugin 3.0+, the configurations can be more sensible and
|
||||||
|
# we'll do this work.
|
||||||
def variant(productFlavors, buildType):
|
def variant(productFlavors, buildType):
|
||||||
return namespace(
|
return namespace(
|
||||||
productFlavors=productFlavors,
|
productFlavors=productFlavors,
|
||||||
|
|
@ -56,13 +59,7 @@ def gradle_android_build_config():
|
||||||
|
|
||||||
return namespace(
|
return namespace(
|
||||||
app=namespace(
|
app=namespace(
|
||||||
variant=variant(('official', 'withoutGeckoBinaries', 'noMinApi', 'photon'), 'debug'),
|
variant=variant(('official', 'photon'), 'debug'),
|
||||||
),
|
|
||||||
geckoview=namespace(
|
|
||||||
variant=variant(('official', 'withGeckoBinaries', 'noMinApi'), 'release'),
|
|
||||||
),
|
|
||||||
geckoview_example=namespace(
|
|
||||||
variant=variant(('official', 'withGeckoBinaries', 'noMinApi'), 'debug'),
|
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -85,7 +82,7 @@ set_config('GRADLE_ANDROID_APP_VARIANT_NAME', gradle_android_app_variant_name)
|
||||||
def gradle_android_app_tasks(build_config):
|
def gradle_android_app_tasks(build_config):
|
||||||
'''Gradle tasks run by |mach android assemble-app|.'''
|
'''Gradle tasks run by |mach android assemble-app|.'''
|
||||||
return [
|
return [
|
||||||
'geckoview:generateJNIWrappersForGenerated{geckoview.variant.name}'.format(geckoview=build_config.geckoview),
|
'geckoview:generateJNIWrappersForGeneratedRelease',
|
||||||
'app:generateJNIWrappersForFennec{app.variant.name}'.format(app=build_config.app),
|
'app:generateJNIWrappersForFennec{app.variant.name}'.format(app=build_config.app),
|
||||||
'app:assemble{app.variant.name}'.format(app=build_config.app),
|
'app:assemble{app.variant.name}'.format(app=build_config.app),
|
||||||
'app:assemble{app.variant.name}AndroidTest'.format(app=build_config.app),
|
'app:assemble{app.variant.name}AndroidTest'.format(app=build_config.app),
|
||||||
|
|
@ -95,39 +92,14 @@ set_config('GRADLE_ANDROID_APP_TASKS', gradle_android_app_tasks)
|
||||||
|
|
||||||
|
|
||||||
@depends(gradle_android_build_config, check_build_environment)
|
@depends(gradle_android_build_config, check_build_environment)
|
||||||
@imports(_from='itertools', _import='imap')
|
|
||||||
def gradle_android_app_apks(build_config, build_env):
|
def gradle_android_app_apks(build_config, build_env):
|
||||||
'''Paths to APK files produced by |mach android assemble-app|.'''
|
'''Paths to APK files produced by |mach android assemble-app|.'''
|
||||||
def capitalize(s):
|
flavor = '-'.join(build_config.app.variant.productFlavors)
|
||||||
# str.capitalize lower cases trailing letters.
|
buildType = build_config.app.variant.buildType
|
||||||
if s:
|
f = '{}/gradle/build/mobile/android/app/outputs/apk/app-{}-{}.apk'
|
||||||
return s[0].upper() + s[1:]
|
g = '{}/gradle/build/mobile/android/app/outputs/apk/app-{}-{}-androidTest.apk'
|
||||||
else:
|
return namespace(app_apk=f.format(build_env.topobjdir, flavor, buildType),
|
||||||
return s
|
app_androidTest_apk=g.format(build_env.topobjdir, flavor, buildType))
|
||||||
|
|
||||||
def uncapitalize(s):
|
|
||||||
if s:
|
|
||||||
return s[0].lower() + s[1:]
|
|
||||||
else:
|
|
||||||
return s
|
|
||||||
|
|
||||||
# Like 'officialPhoton'.
|
|
||||||
productFlavor = uncapitalize(''.join(imap(capitalize, build_config.app.variant.productFlavors)))
|
|
||||||
# Like 'official-photon'.
|
|
||||||
product_flavor = '-'.join(build_config.app.variant.productFlavors)
|
|
||||||
|
|
||||||
substs = {
|
|
||||||
'topobjdir': build_env.topobjdir,
|
|
||||||
'productFlavor': productFlavor,
|
|
||||||
'product_flavor': product_flavor,
|
|
||||||
'buildType': build_config.app.variant.buildType,
|
|
||||||
}
|
|
||||||
|
|
||||||
f = '{topobjdir}/gradle/build/mobile/android/app/outputs/apk/{productFlavor}/{buildType}/app-{product_flavor}-{buildType}.apk'
|
|
||||||
g = '{topobjdir}/gradle/build/mobile/android/app/outputs/apk/androidTest/{productFlavor}/{buildType}/app-{product_flavor}-{buildType}-androidTest.apk'
|
|
||||||
|
|
||||||
return namespace(app_apk=f.format(**substs),
|
|
||||||
app_androidTest_apk=g.format(**substs))
|
|
||||||
|
|
||||||
set_config('GRADLE_ANDROID_APP_APK', gradle_android_app_apks.app_apk)
|
set_config('GRADLE_ANDROID_APP_APK', gradle_android_app_apks.app_apk)
|
||||||
set_config('GRADLE_ANDROID_APP_ANDROIDTEST_APK', gradle_android_app_apks.app_androidTest_apk)
|
set_config('GRADLE_ANDROID_APP_ANDROIDTEST_APK', gradle_android_app_apks.app_androidTest_apk)
|
||||||
|
|
@ -174,13 +146,13 @@ def gradle_android_findbugs_tasks(build_config):
|
||||||
set_config('GRADLE_ANDROID_FINDBUGS_TASKS', gradle_android_findbugs_tasks)
|
set_config('GRADLE_ANDROID_FINDBUGS_TASKS', gradle_android_findbugs_tasks)
|
||||||
|
|
||||||
|
|
||||||
@depends(gradle_android_build_config)
|
@dependable
|
||||||
def gradle_android_archive_geckoview_tasks(build_config):
|
def gradle_android_archive_geckoview_tasks():
|
||||||
'''Gradle tasks run by |mach android archive-geckoview|.'''
|
'''Gradle tasks run by |mach android archive-geckoview|.'''
|
||||||
return [
|
return [
|
||||||
'geckoview:assemble{geckoview.variant.name}'.format(geckoview=build_config.geckoview),
|
'geckoview:assembleWithGeckoBinaries',
|
||||||
'geckoview_example:assemble{geckoview_example.variant.name}'.format(geckoview_example=build_config.geckoview_example),
|
'geckoview_example:assembleWithGeckoBinaries',
|
||||||
'geckoview_example:assemble{geckoview_example.variant.name}AndroidTest'.format(geckoview_example=build_config.geckoview_example),
|
'geckoview_example:assembleWithGeckoBinariesAndroidTest',
|
||||||
'geckoview:uploadArchives',
|
'geckoview:uploadArchives',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,16 @@
|
||||||
|
|
||||||
// Bug 1353055 - Strip 'vars' debugging information to agree with moz.build.
|
// Bug 1353055 - Strip 'vars' debugging information to agree with moz.build.
|
||||||
ext.configureVariantDebugLevel = { variant ->
|
ext.configureVariantDebugLevel = { variant ->
|
||||||
// Like 'debug' or 'release'.
|
// Like 'debug', 'release', or 'withGeckoBinaries'.
|
||||||
def buildType = variant.buildType.name
|
def buildType = variant.buildType.name
|
||||||
|
|
||||||
|
// For :app, like 'local', 'localOld', or 'official'. For other projects, null.
|
||||||
|
def audienceDimension = variant.productFlavors[0]?.name
|
||||||
|
|
||||||
// The default is 'lines,source,vars', which includes debugging information
|
// The default is 'lines,source,vars', which includes debugging information
|
||||||
// that is quite large: roughly 500kb for Fennec. Therefore we remove
|
// that is quite large: roughly 500kb for Fennec. Therefore we remove
|
||||||
// 'vars' unless we're producing a debug build, where it is useful.
|
// 'vars' unless we're producing a debug build, where it is useful.
|
||||||
if (!'debug'.equals(buildType) || (variant.productFlavors*.name).contains('official')) {
|
if (!'debug'.equals(buildType) || 'official'.equals(audienceDimension)) {
|
||||||
variant.javaCompile.options.debugOptions.debugLevel = 'lines,source'
|
variant.javaCompile.options.debugOptions.debugLevel = 'lines,source'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
/* -*- Mode: Groovy; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
ext.configureProductFlavors = {
|
|
||||||
flavorDimensions "audience", "geckoBinaries", "minApi"
|
|
||||||
productFlavors {
|
|
||||||
local {
|
|
||||||
dimension "audience"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Automation builds. We use "official" rather than "automation" to drive these builds down
|
|
||||||
// the list of configurations that Android Studio offers, thereby making it _not_ the
|
|
||||||
// default. This avoids a common issue with "omni.ja" not being packed into the default APK
|
|
||||||
// built and deployed by Android Studio.
|
|
||||||
official {
|
|
||||||
dimension "audience"
|
|
||||||
}
|
|
||||||
|
|
||||||
withGeckoBinaries {
|
|
||||||
dimension "geckoBinaries"
|
|
||||||
}
|
|
||||||
|
|
||||||
withoutGeckoBinaries {
|
|
||||||
dimension "geckoBinaries"
|
|
||||||
}
|
|
||||||
|
|
||||||
// For API 21+ - with pre-dexing, this will be faster for local development.
|
|
||||||
minApi21 {
|
|
||||||
dimension "minApi"
|
|
||||||
|
|
||||||
// For pre-dexing, setting `minSdkVersion 21` allows the Android gradle plugin to
|
|
||||||
// pre-DEX each module and produce an APK that can be tested on
|
|
||||||
// Android Lollipop without time consuming DEX merging processes.
|
|
||||||
minSdkVersion 21
|
|
||||||
dexOptions {
|
|
||||||
preDexLibraries true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// For API < 21 - does not support pre-dexing because local development
|
|
||||||
// is slow in that case.
|
|
||||||
noMinApi {
|
|
||||||
dimension "minApi"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,22 +1,46 @@
|
||||||
/* -*- Mode: Groovy; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
// We run fairly hard into a fundamental limitation of the Android Gradle
|
||||||
|
// plugin. There are many bugs filed about this, but
|
||||||
|
// https://code.google.com/p/android/issues/detail?id=216978#c6 is a reason one.
|
||||||
|
// The issue is that we need fine-grained control over when to include Gecko's
|
||||||
|
// binary libraries into the GeckoView AAR and the Fennec APK, and that's hard
|
||||||
|
// to achieve. In particular:
|
||||||
|
//
|
||||||
|
// * :app:official* wants :geckoview to not include Gecko binaries (official
|
||||||
|
// * automation build, before package)
|
||||||
|
//
|
||||||
|
// * :geckoview:withLibraries wants :geckoview to include Gecko binaries
|
||||||
|
// * (automation build, after package)
|
||||||
|
//
|
||||||
|
// * non-:app:official* wants :geckoview to include Gecko binaries (local
|
||||||
|
// * build, always after package)
|
||||||
|
//
|
||||||
|
// publishNonDefault (see
|
||||||
|
// http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Library-Publication)
|
||||||
|
// is intended to address this, but doesn't handle our case. That option always
|
||||||
|
// builds *all* configurations, which fails when the required Gecko binaries
|
||||||
|
// don't exist (automation build, before package). So instead, we make both
|
||||||
|
// :app and :geckoview both know how to include the Gecko binaries, and use a
|
||||||
|
// non-default, non-published :geckoview:withGeckoBinaries configuration to
|
||||||
|
// handle automation's needs. Simple, right?
|
||||||
|
|
||||||
// The omnijar inputs are listed as resource directory inputs to a dummy JAR.
|
// The omnijar inputs are listed as resource directory inputs to a dummy JAR.
|
||||||
// That arrangement labels them nicely in IntelliJ. See the comment in the
|
// That arrangement labels them nicely in IntelliJ. See the comment in the
|
||||||
// :omnijar project for more context.
|
// :omnijar project for more context.
|
||||||
evaluationDependsOn(':omnijar')
|
evaluationDependsOn(':omnijar')
|
||||||
|
|
||||||
task buildOmnijars(type:Exec) {
|
task buildOmnijar(type:Exec) {
|
||||||
dependsOn rootProject.generateCodeAndResources
|
dependsOn rootProject.generateCodeAndResources
|
||||||
|
|
||||||
// See comment in :omnijar project regarding interface mismatches here.
|
// See comment in :omnijar project regarding interface mismatches here.
|
||||||
inputs.file(project(':omnijar').sourceSets.main.resources.srcDirs).skipWhenEmpty()
|
inputs.file(project(':omnijar').sourceSets.main.resources.srcDirs).skipWhenEmpty()
|
||||||
|
|
||||||
// Produce both the Fennec and the GeckoView omnijars.
|
// Produce a single output file.
|
||||||
outputs.file "${topobjdir}/dist/fennec/assets/omni.ja"
|
outputs.file "${topobjdir}/dist/fennec/assets/omni.ja"
|
||||||
outputs.file "${topobjdir}/dist/geckoview/assets/omni.ja"
|
|
||||||
|
|
||||||
workingDir "${topobjdir}"
|
workingDir "${topobjdir}"
|
||||||
|
|
||||||
|
|
@ -36,85 +60,97 @@ task buildOmnijars(type:Exec) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.configureVariantWithGeckoBinaries = { variant ->
|
task syncOmnijarFromDistDir(type: Sync) {
|
||||||
// :app needs the full Fennec omni.ja, whereas other projects need the
|
// :app needs the full Fennec omni.ja, whereas other projects need the GeckoView-specific omni.ja.
|
||||||
// GeckoView-specific omni.ja.
|
|
||||||
def omnijar_dir = "app".equals(project.name) ? "fennec" : "geckoview"
|
def omnijar_dir = "app".equals(project.name) ? "fennec" : "geckoview"
|
||||||
def distDir = "${topobjdir}/dist/${omnijar_dir}"
|
into("${project.buildDir}/generated/omnijar")
|
||||||
|
from("${topobjdir}/dist/${omnijar_dir}/omni.ja",
|
||||||
def syncOmnijarFromDistDir = task("syncOmnijarFromDistDirFor${variant.name.capitalize()}", type: Sync) {
|
"${topobjdir}/dist/${omnijar_dir}/assets/omni.ja") {
|
||||||
doFirst {
|
// Throw an exception if we find multiple, potentially conflicting omni.ja files.
|
||||||
if (source.empty) {
|
duplicatesStrategy 'fail'
|
||||||
throw new GradleException("Required omnijar not found in ${source.asPath}. Have you built and packaged?")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}/omnijar")
|
|
||||||
from("${distDir}/omni.ja",
|
|
||||||
"${distDir}/assets/omni.ja") {
|
|
||||||
// Throw an exception if we find multiple, potentially conflicting omni.ja files.
|
|
||||||
duplicatesStrategy 'fail'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def syncLibsFromDistDir = task("syncLibsFromDistDirFor${variant.name.capitalize()}", type: Sync) {
|
|
||||||
doFirst {
|
|
||||||
if (source.empty) {
|
|
||||||
throw new GradleException("Required JNI libraries not found in ${source.asPath}. Have you built and packaged?")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}/jniLibs")
|
|
||||||
from("${distDir}/lib")
|
|
||||||
}
|
|
||||||
|
|
||||||
def syncAssetsFromDistDir = task("syncAssetsFromDistDirFor${variant.name.capitalize()}", type: Sync) {
|
|
||||||
doFirst {
|
|
||||||
if (source.empty) {
|
|
||||||
throw new GradleException("Required assets not found in ${source.asPath}. Have you built and packaged?")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
into("${project.buildDir}/moz.build/src/${variant.name}/assets")
|
|
||||||
from("${distDir}/assets") {
|
|
||||||
exclude 'omni.ja'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Local (read, not 'official') builds want to reflect developer changes to
|
|
||||||
// the Omnijar sources. To do this, the Gradle build calls out to the
|
|
||||||
// moz.build system, which can be re-entrant. Official builds are driven by
|
|
||||||
// the moz.build system and should never be re-entrant in this way.
|
|
||||||
if (!((variant.productFlavors*.name).contains('official'))) {
|
|
||||||
syncOmnijarFromDistDir.dependsOn buildOmnijars
|
|
||||||
}
|
|
||||||
|
|
||||||
def assetGenTask = tasks.findByName("generate${variant.name.capitalize()}Assets")
|
|
||||||
if ((variant.productFlavors*.name).contains('withGeckoBinaries')) {
|
|
||||||
assetGenTask.dependsOn syncOmnijarFromDistDir
|
|
||||||
assetGenTask.dependsOn syncLibsFromDistDir
|
|
||||||
assetGenTask.dependsOn syncAssetsFromDistDir
|
|
||||||
|
|
||||||
android.sourceSets."${variant.name}".assets.srcDir syncOmnijarFromDistDir.destinationDir
|
|
||||||
android.sourceSets."${variant.name}".assets.srcDir syncAssetsFromDistDir.destinationDir
|
|
||||||
android.sourceSets."${variant.name}".jniLibs.srcDir syncLibsFromDistDir.destinationDir
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.configureLibraryVariantWithJNIWrappers = { variant, module ->
|
task checkLibsExistInDistDir {
|
||||||
// Library variants have two essentially independent transform* tasks:
|
doLast {
|
||||||
|
if (syncLibsFromDistDir.source.empty) {
|
||||||
|
throw new GradleException("Required JNI libraries not found in ${topobjdir}/dist/fennec/lib. Have you built and packaged?")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task syncLibsFromDistDir(type: Sync, dependsOn: checkLibsExistInDistDir) {
|
||||||
|
into("${project.buildDir}/generated/jniLibs")
|
||||||
|
from("${topobjdir}/dist/fennec/lib")
|
||||||
|
}
|
||||||
|
|
||||||
|
task checkAssetsExistInDistDir {
|
||||||
|
doLast {
|
||||||
|
if (syncAssetsFromDistDir.source.empty) {
|
||||||
|
throw new GradleException("Required assets not found in ${topobjdir}/dist/fennec/assets. Have you built and packaged?")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task syncAssetsFromDistDir(type: Sync, dependsOn: checkAssetsExistInDistDir) {
|
||||||
|
into("${project.buildDir}/generated/assets")
|
||||||
|
from("${topobjdir}/dist/fennec/assets") {
|
||||||
|
exclude 'omni.ja'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ext.configureVariantWithGeckoBinaries = { variant ->
|
||||||
|
// Like 'localPhoton' or 'localOldPhoton'; may be null.
|
||||||
|
def productFlavor = ""
|
||||||
|
def productFlavorNames = variant.productFlavors.collect { it.name.capitalize() }
|
||||||
|
if (!productFlavorNames.isEmpty()) {
|
||||||
|
productFlavor = productFlavorNames.join()
|
||||||
|
// Groovy's `uncapitilize` is not yet available.
|
||||||
|
def c = productFlavor.toCharArray()
|
||||||
|
c[0] = Character.toLowerCase(c[0])
|
||||||
|
productFlavor = new String(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Like 'debug' or 'release'.
|
||||||
|
def buildType = variant.buildType.name
|
||||||
|
|
||||||
|
syncOmnijarFromDistDir.dependsOn buildOmnijar
|
||||||
|
def generateAssetsTask = tasks.findByName("generate${productFlavor.capitalize()}${buildType.capitalize()}Assets")
|
||||||
|
generateAssetsTask.dependsOn syncOmnijarFromDistDir
|
||||||
|
generateAssetsTask.dependsOn syncLibsFromDistDir
|
||||||
|
generateAssetsTask.dependsOn syncAssetsFromDistDir
|
||||||
|
|
||||||
|
def sourceSet = productFlavor ? "${productFlavor}${buildType.capitalize()}" : buildType
|
||||||
|
android.sourceSets."${sourceSet}".assets.srcDir syncOmnijarFromDistDir.destinationDir
|
||||||
|
android.sourceSets."${sourceSet}".assets.srcDir syncAssetsFromDistDir.destinationDir
|
||||||
|
android.sourceSets."${sourceSet}".jniLibs.srcDir syncLibsFromDistDir.destinationDir
|
||||||
|
}
|
||||||
|
|
||||||
|
ext.configureVariantWithJNIWrappers = { variant, module ->
|
||||||
|
def jarTask
|
||||||
|
if (module == 'Generated') {
|
||||||
|
jarTask = tasks["package${variant.name.capitalize()}JarArtifact"]
|
||||||
|
} else {
|
||||||
|
jarTask = tasks["jar${variant.name.capitalize()}Classes"]
|
||||||
|
}
|
||||||
|
|
||||||
|
if (jarTask.outputs.files.size() != 1) {
|
||||||
|
throw new GradleException("Jar task output multiple files other than one single jar")
|
||||||
|
}
|
||||||
|
|
||||||
|
// At configuration time, the classpath of dependencies with internal_impl
|
||||||
|
// JAR files may not be correct. This manifests in
|
||||||
//
|
//
|
||||||
// - ...WithSyncLibJars... is used by assemble* and bundle*
|
// 'Exception in thread "main" java.lang.NoClassDefFoundError: android/support/v4/app/ActivityCompatApi23$RequestPermissionsRequestCodeValidator'
|
||||||
// - ...WithPrepareIntermediateJars... is used by consuming applications.
|
|
||||||
//
|
//
|
||||||
// It's not really possible to insert something immediately _after_
|
// when running |mach gradle clean app:generateJNI...|. We work around this
|
||||||
// ...WithPrepareIntermediateJars..., so we make the consuming moz.build
|
// by configuring the classpath at evaluation-time, not configuration-time.
|
||||||
// system invoke this target directly, and force the
|
//
|
||||||
// ...WithPrepareIntermediateJars... dependency. The real consumer of the
|
// The specific dependency on the `prepareDependencies` task may not be
|
||||||
// JNI wrappers is the moz.build system, which always builds geckoview to
|
// necessary, but commits like
|
||||||
// consume from Fennec, so that dependency likely adds less to the build time.
|
// https://github.com/evant/gradle-retrolambda/commit/15108c65ee43be499a1359d9d4f88b0851d46769
|
||||||
def jarTask = tasks["transformClassesAndResourcesWithPrepareIntermediateJarsFor${variant.name.capitalize()}"]
|
// suggest that it is. It certainly doesn't hurt.
|
||||||
def output = jarTask.outputs.files.find({ it.absolutePath.contains('/classes.jar') })
|
def prepareDependenciesTask = tasks.getByName("prepare${variant.name.capitalize()}Dependencies")
|
||||||
|
|
||||||
def wrapperTask
|
def wrapperTask
|
||||||
if (System.env.IS_LANGUAGE_REPACK == '1') {
|
if (System.env.IS_LANGUAGE_REPACK == '1') {
|
||||||
|
|
@ -124,7 +160,7 @@ ext.configureLibraryVariantWithJNIWrappers = { variant, module ->
|
||||||
} else {
|
} else {
|
||||||
wrapperTask = task("generateJNIWrappersFor${module}${variant.name.capitalize()}", type: JavaExec) {
|
wrapperTask = task("generateJNIWrappersFor${module}${variant.name.capitalize()}", type: JavaExec) {
|
||||||
classpath "${topobjdir}/build/annotationProcessors/annotationProcessors.jar"
|
classpath "${topobjdir}/build/annotationProcessors/annotationProcessors.jar"
|
||||||
|
|
||||||
// Configure the classpath at evaluation-time, not at
|
// Configure the classpath at evaluation-time, not at
|
||||||
// configuration-time: see above comment.
|
// configuration-time: see above comment.
|
||||||
doFirst {
|
doFirst {
|
||||||
|
|
@ -135,11 +171,12 @@ ext.configureLibraryVariantWithJNIWrappers = { variant, module ->
|
||||||
|
|
||||||
main = 'org.mozilla.gecko.annotationProcessors.AnnotationProcessor'
|
main = 'org.mozilla.gecko.annotationProcessors.AnnotationProcessor'
|
||||||
args module
|
args module
|
||||||
args output
|
args jarTask.outputs.files.iterator().next()
|
||||||
|
|
||||||
workingDir "${topobjdir}/mobile/android/base"
|
workingDir "${topobjdir}/mobile/android/base"
|
||||||
|
|
||||||
dependsOn jarTask
|
dependsOn jarTask
|
||||||
|
dependsOn prepareDependenciesTask
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -149,36 +186,3 @@ ext.configureLibraryVariantWithJNIWrappers = { variant, module ->
|
||||||
tasks["assemble${variant.name.capitalize()}"].dependsOn wrapperTask
|
tasks["assemble${variant.name.capitalize()}"].dependsOn wrapperTask
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.configureApplicationVariantWithJNIWrappers = { variant, module ->
|
|
||||||
def jarTask = tasks["bundleAppClasses${variant.name.capitalize()}"]
|
|
||||||
def output = jarTask.outputs.files.find({ it.absolutePath.contains('/classes.jar') })
|
|
||||||
|
|
||||||
def wrapperTask
|
|
||||||
if (System.env.IS_LANGUAGE_REPACK == '1') {
|
|
||||||
// Single-locale l10n repacks set `IS_LANGUAGE_REPACK=1` and don't
|
|
||||||
// really have a build environment.
|
|
||||||
wrapperTask = task("generateJNIWrappersFor${module}${variant.name.capitalize()}")
|
|
||||||
} else {
|
|
||||||
wrapperTask = task("generateJNIWrappersFor${module}${variant.name.capitalize()}", type: JavaExec) {
|
|
||||||
classpath "${topobjdir}/build/annotationProcessors/annotationProcessors.jar"
|
|
||||||
|
|
||||||
// Configure the classpath at evaluation-time, not at
|
|
||||||
// configuration-time: see above comment.
|
|
||||||
doFirst {
|
|
||||||
classpath variant.javaCompile.classpath
|
|
||||||
// Include android.jar.
|
|
||||||
classpath variant.javaCompile.options.bootClasspath
|
|
||||||
}
|
|
||||||
|
|
||||||
main = 'org.mozilla.gecko.annotationProcessors.AnnotationProcessor'
|
|
||||||
args module
|
|
||||||
args output
|
|
||||||
|
|
||||||
workingDir "${topobjdir}/mobile/android/base"
|
|
||||||
|
|
||||||
// This forces bundling, which isn't usually part of the assemble* process.
|
|
||||||
dependsOn jarTask
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -414,9 +414,7 @@ class MachCommands(MachCommandBase):
|
||||||
# $JAVA_HOME/bin/java into $JAVA_HOME.
|
# $JAVA_HOME/bin/java into $JAVA_HOME.
|
||||||
java_home = os.path.dirname(os.path.dirname(self.substs['JAVA']))
|
java_home = os.path.dirname(os.path.dirname(self.substs['JAVA']))
|
||||||
|
|
||||||
gradle_flags = self.substs.get('GRADLE_FLAGS', '') or \
|
gradle_flags = shell_split(self.substs.get('GRADLE_FLAGS', ''))
|
||||||
os.environ.get('GRADLE_FLAGS', '')
|
|
||||||
gradle_flags = shell_split(gradle_flags)
|
|
||||||
|
|
||||||
# We force the Gradle JVM to run with the UTF-8 encoding, since we
|
# We force the Gradle JVM to run with the UTF-8 encoding, since we
|
||||||
# filter strings.xml, which is really UTF-8; the ellipsis character is
|
# filter strings.xml, which is really UTF-8; the ellipsis character is
|
||||||
|
|
|
||||||
|
|
@ -8,19 +8,13 @@ import android.content.ContentProvider;
|
||||||
import android.content.ContentProviderOperation;
|
import android.content.ContentProviderOperation;
|
||||||
import android.content.ContentProviderResult;
|
import android.content.ContentProviderResult;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.content.Context;
|
|
||||||
import android.content.OperationApplicationException;
|
import android.content.OperationApplicationException;
|
||||||
import android.content.pm.ProviderInfo;
|
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.annotation.Nullable;
|
import android.support.annotation.Nullable;
|
||||||
|
|
||||||
import org.mozilla.gecko.db.BrowserContract;
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
import org.mozilla.gecko.db.BrowserProvider;
|
|
||||||
import org.mozilla.gecko.db.TabsProvider;
|
|
||||||
import org.robolectric.android.controller.ContentProviderController;
|
|
||||||
import org.robolectric.util.ReflectionHelpers;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
|
@ -28,54 +22,17 @@ import java.util.ArrayList;
|
||||||
* Wrap a ContentProvider, appending &test=1 to all queries.
|
* Wrap a ContentProvider, appending &test=1 to all queries.
|
||||||
*/
|
*/
|
||||||
public class DelegatingTestContentProvider extends ContentProvider {
|
public class DelegatingTestContentProvider extends ContentProvider {
|
||||||
protected ContentProvider mTargetProvider;
|
protected final ContentProvider mTargetProvider;
|
||||||
|
|
||||||
protected static Uri appendUriParam(Uri uri, String param, String value) {
|
protected static Uri appendUriParam(Uri uri, String param, String value) {
|
||||||
return uri.buildUpon().appendQueryParameter(param, value).build();
|
return uri.buildUpon().appendQueryParameter(param, value).build();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create and register a new <tt>BrowserProvider</tt> that has test delegation.
|
|
||||||
* <p>
|
|
||||||
* Robolectric doesn't make it easy to parameterize a created
|
|
||||||
* <tt>ContentProvider</tt>, so we modify a built-in helper to do it.
|
|
||||||
* @return delegated <tt>ContentProvider</tt>.
|
|
||||||
*/
|
|
||||||
public static ContentProvider createDelegatingBrowserProvider() {
|
|
||||||
final ContentProviderController<DelegatingTestContentProvider> contentProviderController
|
|
||||||
= ContentProviderController.of(ReflectionHelpers.callConstructor(DelegatingTestContentProvider.class,
|
|
||||||
ReflectionHelpers.ClassParameter.from(ContentProvider.class, new BrowserProvider())));
|
|
||||||
return contentProviderController.create(BrowserContract.AUTHORITY).get();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create and register a new <tt>TabsProvider</tt> that has test delegation.
|
|
||||||
* <p>
|
|
||||||
* Robolectric doesn't make it easy to parameterize a created
|
|
||||||
* <tt>ContentProvider</tt>, so we modify a built-in helper to do it.
|
|
||||||
* @return delegated <tt>ContentProvider</tt>.
|
|
||||||
*/
|
|
||||||
public static ContentProvider createDelegatingTabsProvider() {
|
|
||||||
final ContentProviderController<DelegatingTestContentProvider> contentProviderController
|
|
||||||
= ContentProviderController.of(ReflectionHelpers.callConstructor(DelegatingTestContentProvider.class,
|
|
||||||
ReflectionHelpers.ClassParameter.from(ContentProvider.class, new TabsProvider())));
|
|
||||||
return contentProviderController.create(BrowserContract.TABS_AUTHORITY).get();
|
|
||||||
}
|
|
||||||
|
|
||||||
public DelegatingTestContentProvider(ContentProvider targetProvider) {
|
public DelegatingTestContentProvider(ContentProvider targetProvider) {
|
||||||
super();
|
super();
|
||||||
mTargetProvider = targetProvider;
|
mTargetProvider = targetProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void attachInfo(Context context, ProviderInfo info) {
|
|
||||||
// With newer Robolectric versions, we must create the target provider
|
|
||||||
// before calling into super. If we don't do this, the target
|
|
||||||
// provider's onCreate() will witness a null getContext(), which the
|
|
||||||
// Android documentation guarantees never happens on device.
|
|
||||||
mTargetProvider.attachInfo(context, null);
|
|
||||||
super.attachInfo(context, info);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Uri appendTestParam(Uri uri) {
|
private Uri appendTestParam(Uri uri) {
|
||||||
return appendUriParam(uri, BrowserContract.PARAM_IS_TEST, "1");
|
return appendUriParam(uri, BrowserContract.PARAM_IS_TEST, "1");
|
||||||
}
|
}
|
||||||
|
|
@ -131,10 +88,6 @@ public class DelegatingTestContentProvider extends ContentProvider {
|
||||||
return mTargetProvider.call(method, arg, extras);
|
return mTargetProvider.call(method, arg, extras);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void shutdown() {
|
|
||||||
mTargetProvider.shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ContentProvider getTargetProvider() {
|
public ContentProvider getTargetProvider() {
|
||||||
return mTargetProvider;
|
return mTargetProvider;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.background.db;
|
package org.mozilla.gecko.background.db;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
|
|
@ -18,6 +17,7 @@ import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.db.BrowserContract;
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
|
import org.mozilla.gecko.db.TabsProvider;
|
||||||
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
||||||
import org.mozilla.gecko.sync.repositories.android.FennecTabsRepository;
|
import org.mozilla.gecko.sync.repositories.android.FennecTabsRepository;
|
||||||
import org.mozilla.gecko.sync.repositories.domain.TabsRecord;
|
import org.mozilla.gecko.sync.repositories.domain.TabsRecord;
|
||||||
|
|
@ -35,11 +35,13 @@ public class TestTabsProvider {
|
||||||
protected Tab testTab2;
|
protected Tab testTab2;
|
||||||
protected Tab testTab3;
|
protected Tab testTab3;
|
||||||
|
|
||||||
protected ContentProvider provider;
|
protected TabsProvider provider;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
provider = DelegatingTestContentProvider.createDelegatingTabsProvider();
|
provider = new TabsProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.TABS_AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ import org.mozilla.gecko.sync.net.BasicAuthHeaderProvider;
|
||||||
import org.mozilla.gecko.sync.stage.CompletedStage;
|
import org.mozilla.gecko.sync.stage.CompletedStage;
|
||||||
import org.mozilla.gecko.sync.stage.GlobalSyncStage;
|
import org.mozilla.gecko.sync.stage.GlobalSyncStage;
|
||||||
import org.mozilla.gecko.sync.stage.GlobalSyncStage.Stage;
|
import org.mozilla.gecko.sync.stage.GlobalSyncStage.Stage;
|
||||||
import org.robolectric.Robolectric;
|
|
||||||
import org.robolectric.RuntimeEnvironment;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
|
@ -28,7 +26,7 @@ public class MockGlobalSession extends MockPrefsGlobalSession {
|
||||||
|
|
||||||
public MockGlobalSession(SyncConfiguration config, GlobalSessionCallback callback)
|
public MockGlobalSession(SyncConfiguration config, GlobalSessionCallback callback)
|
||||||
throws SyncConfigurationException, IllegalArgumentException, IOException, NonObjectJSONException {
|
throws SyncConfigurationException, IllegalArgumentException, IOException, NonObjectJSONException {
|
||||||
super(config, callback, RuntimeEnvironment.application, null);
|
super(config, callback, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -53,4 +53,9 @@ public class MockPrefsGlobalSession extends GlobalSession {
|
||||||
config.syncKeyBundle = syncKeyBundle;
|
config.syncKeyBundle = syncKeyBundle;
|
||||||
return new MockPrefsGlobalSession(config, callback, context, clientsDelegate);
|
return new MockPrefsGlobalSession(config, callback, context, clientsDelegate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Context getContext() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.db;
|
package org.mozilla.gecko.db;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentUris;
|
import android.content.ContentUris;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
|
|
@ -18,11 +17,12 @@ import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.db.BrowserContract.Bookmarks;
|
|
||||||
import org.mozilla.gecko.sync.Utils;
|
import org.mozilla.gecko.sync.Utils;
|
||||||
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
||||||
import org.robolectric.shadows.ShadowContentResolver;
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
||||||
|
import org.mozilla.gecko.db.BrowserContract.Bookmarks;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
@ -41,9 +41,8 @@ import static org.mozilla.gecko.db.BrowserProviderGeneralTest.INVALID_TIMESTAMP;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.assertVersionsForSelection;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.assertVersionsForSelection;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.bookmarksTestSyncUri;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.bookmarksTestSyncUri;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.bookmarksTestUri;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.bookmarksTestUri;
|
||||||
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.getBookmarksTestSyncIncrementLocalVersionUri;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.getBookmarkIdFromGuid;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.getBookmarkIdFromGuid;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest
|
|
||||||
.getBookmarksTestSyncIncrementLocalVersionUri;
|
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.insertBookmark;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.insertBookmark;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.withDeleted;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.withDeleted;
|
||||||
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.withSync;
|
import static org.mozilla.gecko.db.BrowserProviderGeneralTest.withSync;
|
||||||
|
|
@ -54,11 +53,13 @@ import static org.mozilla.gecko.db.BrowserProviderGeneralTest.withSync;
|
||||||
@RunWith(TestRunner.class)
|
@RunWith(TestRunner.class)
|
||||||
public class BrowserProviderBookmarksTest {
|
public class BrowserProviderBookmarksTest {
|
||||||
private ContentProviderClient bookmarksClient;
|
private ContentProviderClient bookmarksClient;
|
||||||
private ContentProvider provider;
|
private BrowserProvider provider;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
provider = new BrowserProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
||||||
bookmarksClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
bookmarksClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.db;
|
package org.mozilla.gecko.db;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
|
import android.provider.Browser;
|
||||||
|
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
|
@ -41,12 +41,15 @@ public class BrowserProviderGeneralTest {
|
||||||
|
|
||||||
private static final long INVALID_ID = -1;
|
private static final long INVALID_ID = -1;
|
||||||
|
|
||||||
private ContentProvider provider;
|
private BrowserProvider provider;
|
||||||
private ContentProviderClient browserClient;
|
private ContentProviderClient browserClient;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
provider = new BrowserProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
||||||
browserClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
browserClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.db;
|
package org.mozilla.gecko.db;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
|
@ -15,17 +14,21 @@ import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
||||||
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
import org.mozilla.gecko.sync.repositories.android.BrowserContractHelpers;
|
||||||
import org.robolectric.shadows.ShadowContentResolver;
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
public class BrowserProviderHistoryVisitsTestBase {
|
public class BrowserProviderHistoryVisitsTestBase {
|
||||||
/* package-private */ ShadowContentResolver contentResolver;
|
/* package-private */ ShadowContentResolver contentResolver;
|
||||||
/* package-private */ ContentProviderClient historyClient;
|
/* package-private */ ContentProviderClient historyClient;
|
||||||
/* package-private */ ContentProviderClient visitsClient;
|
/* package-private */ ContentProviderClient visitsClient;
|
||||||
/* package-private */ Uri historyTestUri;
|
/* package-private */ Uri historyTestUri;
|
||||||
/* package-private */ Uri visitsTestUri;
|
/* package-private */ Uri visitsTestUri;
|
||||||
/* package-private */ ContentProvider provider;
|
/* package-private */ BrowserProvider provider;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
provider = new BrowserProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
contentResolver = new ShadowContentResolver();
|
contentResolver = new ShadowContentResolver();
|
||||||
historyClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.HISTORY_CONTENT_URI);
|
historyClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.HISTORY_CONTENT_URI);
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
package org.mozilla.gecko.db;
|
package org.mozilla.gecko.db;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentResolver;
|
import android.content.ContentResolver;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
|
|
@ -45,13 +44,15 @@ public class LocalBrowserDBTest {
|
||||||
private static final String FOLDER_NAME = "folder1";
|
private static final String FOLDER_NAME = "folder1";
|
||||||
|
|
||||||
private Context context;
|
private Context context;
|
||||||
private ContentProvider provider;
|
private BrowserProvider provider;
|
||||||
private ContentProviderClient bookmarkClient;
|
private ContentProviderClient bookmarkClient;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
context = RuntimeEnvironment.application;
|
context = RuntimeEnvironment.application;
|
||||||
provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
provider = new BrowserProvider();
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
ShadowContentResolver contentResolver = new ShadowContentResolver();
|
||||||
bookmarkClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
bookmarkClient = contentResolver.acquireContentProviderClient(BrowserContractHelpers.BOOKMARKS_CONTENT_URI);
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.fxa.devices;
|
package org.mozilla.gecko.fxa.devices;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentResolver;
|
import android.content.ContentResolver;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
|
|
@ -22,6 +21,7 @@ import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
||||||
import org.mozilla.gecko.background.fxa.FxAccountClient;
|
import org.mozilla.gecko.background.fxa.FxAccountClient;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.db.BrowserContract;
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
|
import org.mozilla.gecko.db.BrowserProvider;
|
||||||
import org.mozilla.gecko.fxa.authenticator.AndroidFxAccount;
|
import org.mozilla.gecko.fxa.authenticator.AndroidFxAccount;
|
||||||
import org.mozilla.gecko.fxa.login.State;
|
import org.mozilla.gecko.fxa.login.State;
|
||||||
import org.robolectric.shadows.ShadowContentResolver;
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
@ -119,9 +119,12 @@ public class TestFxAccountDeviceListUpdater {
|
||||||
public void testBrowserProvider() {
|
public void testBrowserProvider() {
|
||||||
Uri uri = testUri(BrowserContract.RemoteDevices.CONTENT_URI);
|
Uri uri = testUri(BrowserContract.RemoteDevices.CONTENT_URI);
|
||||||
|
|
||||||
final ContentProvider provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
BrowserProvider provider = new BrowserProvider();
|
||||||
Cursor c = null;
|
Cursor c = null;
|
||||||
try {
|
try {
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
final ShadowContentResolver cr = new ShadowContentResolver();
|
final ShadowContentResolver cr = new ShadowContentResolver();
|
||||||
ContentProviderClient remoteDevicesClient = cr.acquireContentProviderClient(BrowserContract.RemoteDevices.CONTENT_URI);
|
ContentProviderClient remoteDevicesClient = cr.acquireContentProviderClient(BrowserContract.RemoteDevices.CONTENT_URI);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
package org.mozilla.gecko.sync.repositories.android;
|
package org.mozilla.gecko.sync.repositories.android;
|
||||||
|
|
||||||
import android.content.ContentProvider;
|
|
||||||
import android.content.ContentProviderClient;
|
import android.content.ContentProviderClient;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
|
@ -17,6 +16,7 @@ import org.junit.runner.RunWith;
|
||||||
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
import org.mozilla.gecko.background.db.DelegatingTestContentProvider;
|
||||||
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
import org.mozilla.gecko.background.testhelpers.TestRunner;
|
||||||
import org.mozilla.gecko.db.BrowserContract;
|
import org.mozilla.gecko.db.BrowserContract;
|
||||||
|
import org.mozilla.gecko.db.BrowserProvider;
|
||||||
import org.robolectric.shadows.ShadowContentResolver;
|
import org.robolectric.shadows.ShadowContentResolver;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
@ -56,8 +56,11 @@ public class VisitsHelperTest {
|
||||||
Uri historyTestUri = testUri(BrowserContract.History.CONTENT_URI);
|
Uri historyTestUri = testUri(BrowserContract.History.CONTENT_URI);
|
||||||
Uri visitsTestUri = testUri(BrowserContract.Visits.CONTENT_URI);
|
Uri visitsTestUri = testUri(BrowserContract.Visits.CONTENT_URI);
|
||||||
|
|
||||||
final ContentProvider provider = DelegatingTestContentProvider.createDelegatingBrowserProvider();
|
BrowserProvider provider = new BrowserProvider();
|
||||||
try {
|
try {
|
||||||
|
provider.onCreate();
|
||||||
|
ShadowContentResolver.registerProvider(BrowserContract.AUTHORITY, new DelegatingTestContentProvider(provider));
|
||||||
|
|
||||||
final ShadowContentResolver cr = new ShadowContentResolver();
|
final ShadowContentResolver cr = new ShadowContentResolver();
|
||||||
ContentProviderClient historyClient = cr.acquireContentProviderClient(BrowserContractHelpers.HISTORY_CONTENT_URI);
|
ContentProviderClient historyClient = cr.acquireContentProviderClient(BrowserContractHelpers.HISTORY_CONTENT_URI);
|
||||||
ContentProviderClient visitsClient = cr.acquireContentProviderClient(BrowserContractHelpers.VISITS_CONTENT_URI);
|
ContentProviderClient visitsClient = cr.acquireContentProviderClient(BrowserContractHelpers.VISITS_CONTENT_URI);
|
||||||
|
|
|
||||||
12
mobile/android/thirdparty/build.gradle
vendored
12
mobile/android/thirdparty/build.gradle
vendored
|
|
@ -4,8 +4,12 @@ apply plugin: 'com.android.library'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion project.ext.compileSdkVersion
|
compileSdkVersion project.ext.compileSdkVersion
|
||||||
|
buildToolsVersion project.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
|
defaultPublishConfig 'release'
|
||||||
|
publishNonDefault true
|
||||||
|
|
||||||
targetSdkVersion project.ext.targetSdkVersion
|
targetSdkVersion project.ext.targetSdkVersion
|
||||||
minSdkVersion project.ext.minSdkVersion
|
minSdkVersion project.ext.minSdkVersion
|
||||||
manifestPlaceholders = project.ext.manifestPlaceholders
|
manifestPlaceholders = project.ext.manifestPlaceholders
|
||||||
|
|
@ -43,11 +47,11 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
if (mozconfig.substs.MOZ_ANDROID_MMA) {
|
if (mozconfig.substs.MOZ_ANDROID_MMA) {
|
||||||
implementation "com.android.support:appcompat-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
compile "com.android.support:appcompat-v7:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
|
||||||
implementation "com.android.support:support-annotations:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.android.support:support-annotations:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
implementation "com.google.android.gms:play-services-gcm:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
compile "com.google.android.gms:play-services-gcm:${mozconfig.substs.ANDROID_GOOGLE_PLAY_SERVICES_VERSION}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2133,7 +2133,7 @@ dnl ========================================================
|
||||||
|
|
||||||
case "$MOZ_BUILD_APP" in
|
case "$MOZ_BUILD_APP" in
|
||||||
mobile/android)
|
mobile/android)
|
||||||
MOZ_ANDROID_SDK(23, 23, 26.0.2, 26.0.0 26.0.0-dev 25.3.2 25.3.1)
|
MOZ_ANDROID_SDK(23, 23, 25.0.3, 26.0.0 26.0.0-dev 25.3.2 25.3.1)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
platform-tools
|
platform-tools
|
||||||
build-tools;26.0.2
|
build-tools;25.0.3
|
||||||
platforms;android-23
|
platforms;android-23
|
||||||
extras;android;m2repository
|
extras;android;m2repository
|
||||||
extras;google;m2repository
|
extras;google;m2repository
|
||||||
|
|
|
||||||
|
|
@ -38,10 +38,13 @@ ANDROID_IDE_ADVERTISEMENT = '''
|
||||||
ADVERTISEMENT
|
ADVERTISEMENT
|
||||||
|
|
||||||
You are building Firefox for Android. After your build completes, you can open
|
You are building Firefox for Android. After your build completes, you can open
|
||||||
the top source directory in Android Studio directly and build using Gradle.
|
the top source directory in IntelliJ or Android Studio directly and build using
|
||||||
See the documentation at
|
Gradle. See the documentation at
|
||||||
|
|
||||||
https://developer.mozilla.org/en-US/docs/Simple_Firefox_for_Android_build
|
https://developer.mozilla.org/en-US/docs/Simple_Firefox_for_Android_build
|
||||||
|
|
||||||
|
PLEASE BE AWARE THAT GRADLE AND INTELLIJ/ANDROID STUDIO SUPPORT IS EXPERIMENTAL.
|
||||||
|
You should verify any changes using |mach build|.
|
||||||
=============
|
=============
|
||||||
'''.strip()
|
'''.strip()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ android-api-16/debug:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -73,7 +73,7 @@ android-x86/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -130,7 +130,7 @@ android-x86-nightly/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -178,7 +178,7 @@ android-api-16/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -230,7 +230,7 @@ android-api-16-nightly/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -283,7 +283,7 @@ android-x86-old-id/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -339,7 +339,7 @@ android-x86-old-id-nightly/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -388,7 +388,7 @@ android-api-16-old-id/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -439,7 +439,7 @@ android-api-16-old-id-nightly/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -488,7 +488,7 @@ android-api-16-gradle/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -534,7 +534,7 @@ android-aarch64/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
@ -586,7 +586,7 @@ android-aarch64-nightly/opt:
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
|
||||||
type: directory
|
type: directory
|
||||||
- name: public/build/geckoview_example.apk
|
- name: public/build/geckoview_example.apk
|
||||||
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
|
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk
|
||||||
type: file
|
type: file
|
||||||
- name: public/build
|
- name: public/build
|
||||||
path: /builds/worker/artifacts/
|
path: /builds/worker/artifacts/
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ set -x -e
|
||||||
echo "running as" $(id)
|
echo "running as" $(id)
|
||||||
|
|
||||||
: WORKSPACE ${WORKSPACE:=/builds/worker/workspace}
|
: WORKSPACE ${WORKSPACE:=/builds/worker/workspace}
|
||||||
: GRADLE_VERSION ${GRADLE_VERSION:=4.1}
|
: GRADLE_VERSION ${GRADLE_VERSION:=3.4.1}
|
||||||
|
|
||||||
set -v
|
set -v
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,8 +72,7 @@
|
||||||
</remoteStorage>
|
</remoteStorage>
|
||||||
<externalConfiguration>
|
<externalConfiguration>
|
||||||
<repositoryPolicy>RELEASE</repositoryPolicy>
|
<repositoryPolicy>RELEASE</repositoryPolicy>
|
||||||
<!-- Google doesn't publish checksums. Why, Google, why? -->
|
<checksumPolicy>STRICT</checksumPolicy>
|
||||||
<checksumPolicy>STRICT_IF_EXISTS</checksumPolicy>
|
|
||||||
<fileTypeValidation>true</fileTypeValidation>
|
<fileTypeValidation>true</fileTypeValidation>
|
||||||
<downloadRemoteIndex>false</downloadRemoteIndex>
|
<downloadRemoteIndex>false</downloadRemoteIndex>
|
||||||
<artifactMaxAge>-1</artifactMaxAge>
|
<artifactMaxAge>-1</artifactMaxAge>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue