Skip to content

Commit b81a009

Browse files
author
David Motsonashvili
committed
Merge branch 'master' into davidmotson.crashlytics_dynamic_module
2 parents 180132e + 2cc1cc4 commit b81a009

File tree

202 files changed

+4004
-3663
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+4004
-3663
lines changed

alternative-root-project.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ buildscript {
3434
classpath 'com.android.tools.build:gradle:3.4.3'
3535
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.14'
3636
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:1.2.1'
37-
classpath 'org.jsoup:jsoup:1.11.2'
3837
classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.8'
3938
classpath 'com.google.gms:google-services:4.3.0'
40-
classpath 'me.tatarka:gradle-retrolambda:3.7.1'
4139
classpath 'digital.wup:android-maven-publish:3.6.2'
4240
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
4341
classpath 'org.jlleitschuh.gradle:ktlint-gradle:7.1.0'

build.gradle

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@ buildscript {
3131
dependencies {
3232
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.14'
3333
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:1.3.0'
34-
classpath 'org.jsoup:jsoup:1.13.1'
3534
classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.9'
3635
classpath 'com.google.gms:google-services:4.3.3'
37-
classpath 'me.tatarka:gradle-retrolambda:3.7.1'
3836
classpath 'digital.wup:android-maven-publish:3.6.3'
3937
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
4038
classpath 'org.jlleitschuh.gradle:ktlint-gradle:9.2.1'
@@ -57,7 +55,6 @@ ext {
5755
apply plugin: com.google.firebase.gradle.plugins.publish.PublishingPlugin
5856
apply plugin: com.google.firebase.gradle.plugins.ci.ContinuousIntegrationPlugin
5957
apply plugin: com.google.firebase.gradle.plugins.ci.SmokeTestsPlugin
60-
apply plugin: com.google.firebase.gradle.plugins.ci.metrics.MetricsPlugin
6158

6259
firebaseContinuousIntegration {
6360
ignorePaths = [
@@ -106,10 +103,7 @@ configure(subprojects) {
106103

107104

108105
/**
109-
* Configure "Preguarding" and Desugaring for the subprojects.
110-
*
111-
* <p>Desugaring is enabled with the 'me.tatarka:gradle-retrolambda' plugin as the built-in Android
112-
* desugaring is not supported for libraries.
106+
* Configure "Preguarding" for the subprojects.
113107
*
114108
* <p> The way it works is every library subproject that has the android plugin applied and:
115109
*
@@ -128,9 +122,6 @@ configure(subprojects) {
128122
return
129123
}
130124

131-
// Apply the retrolambda plugin
132-
sub.apply plugin: 'me.tatarka.retrolambda'
133-
134125
boolean skipPreguard = sub.getProperties().getOrDefault('firebaseSkipPreguard', 'true').toBoolean()
135126
def defaultPreguard = rootProject.getProperties().getOrDefault('firebaseDefaultPreguardFile', 'default-preguard.txt')
136127

buildSrc/build.gradle

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,34 +39,19 @@ def perfPluginVersion = System.getenv("FIREBASE_PERF_PLUGIN_VERSION") ?: "1.3.5"
3939
googleJavaFormat {
4040
toolVersion = '1.7'
4141
}
42-
tasks.googleJavaFormat {
43-
source '.'
44-
include '**/java/**/*.java'
45-
exclude '**/generated/**'
46-
exclude '**/package-info.java'
47-
}
48-
49-
tasks.verifyGoogleJavaFormat {
50-
source '.'
51-
include '**/java/**/*.java'
52-
exclude '**/generated/**'
53-
exclude '**/package-info.java'
54-
}
5542

5643
dependencies {
5744
// Firebase performance plugin, it should be added here because of how gradle dependency
5845
// resolution works, otherwise it breaks Fireperf Test Apps.
5946
// See https://github.com/gradle/gradle/issues/12286
6047
implementation "com.google.firebase:perf-plugin:$perfPluginVersion"
6148

62-
implementation 'org.jsoup:jsoup:1.11.2'
63-
implementation "com.google.auto.value:auto-value-annotations:1.6.6"
49+
implementation "com.google.auto.value:auto-value-annotations:1.7"
6450
annotationProcessor "com.google.auto.value:auto-value:1.6.5"
65-
implementation 'digital.wup:android-maven-publish:3.6.2'
51+
implementation 'digital.wup:android-maven-publish:3.6.3'
6652
implementation 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72'
6753
implementation 'org.json:json:20180813'
68-
implementation 'io.opencensus:opencensus-api:0.18.0'
69-
implementation 'io.opencensus:opencensus-exporter-stats-stackdriver:0.18.0'
54+
7055
implementation "org.eclipse.aether:aether-api:1.0.0.v20140518"
7156
implementation "org.eclipse.aether:aether-util:1.0.0.v20140518"
7257
implementation "org.eclipse.aether:aether-impl:1.0.0.v20140518"
@@ -75,12 +60,12 @@ dependencies {
7560
implementation "org.eclipse.aether:aether-transport-http:1.0.0.v20140518"
7661
implementation "org.eclipse.aether:aether-transport-wagon:1.0.0.v20140518"
7762
implementation "org.apache.maven:maven-aether-provider:3.1.0"
78-
runtime 'io.opencensus:opencensus-impl:0.18.0'
63+
7964
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
8065
implementation 'org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17-g013-9b8280a'
8166
implementation 'com.android.tools.build:gradle:3.4.3'
8267

83-
testImplementation 'junit:junit:4.13-rc-1'
68+
testImplementation 'junit:junit:4.13.2'
8469
testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
8570
testImplementation "com.google.truth:truth:1.0.1"
8671
testImplementation 'commons-io:commons-io:2.6'

buildSrc/src/main/java/com/google/firebase/gradle/plugins/ci/metrics/DrainingBuildListener.java

Lines changed: 0 additions & 53 deletions
This file was deleted.

buildSrc/src/main/java/com/google/firebase/gradle/plugins/ci/metrics/MeasuringTaskExecutionListener.java

Lines changed: 0 additions & 92 deletions
This file was deleted.

buildSrc/src/main/java/com/google/firebase/gradle/plugins/ci/metrics/Metrics.java

Lines changed: 0 additions & 66 deletions
This file was deleted.

buildSrc/src/main/java/com/google/firebase/gradle/plugins/ci/metrics/MetricsPlugin.java

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)