You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 31, 2022. It is now read-only.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.0'
apply from: 'versions.gradle'
ext {
....
}
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath deps.kotlin.plugin
classpath deps.apollo.plugin
classpath deps.google_android.googleServices_plugin
classpath deps.firebase.crashlytics_plugin
classpath(deps.firebase.performance_metrics_plugin) {
exclude group: 'com.google.guava', module: 'guava-jdk5'
}
classpath deps.custom.aboutLibraries_plugin
classpath 'com.project.starter:easylauncher:3.9.0'
classpath deps.push.onesignal_plugin
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io" }
maven { url "https://dl.bintray.com/unsplash/unsplash-photopicker-android" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
flatDir {
dirs 'libs'
}
}
afterEvaluate {
tasks.withType(JavaCompile.class) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// Define versions in a single place
//When there is an error in code generation you will may see
//lots of errors due too missing generated code in your logs, we increase
//how many errors are shown here so that the real error is visible when it is near the end
allprojects {
}
No Error. However, on each build, the full build is executed even for small layout updates. Which wasn't the case till I added the plugin. I can't give any concrete timings and stats, I'll have to run tests for that. This was an observation.
Getting stuck on Download maven-metadata.xml