Это для проекта sh 3-4 года Android, работающего на Gradle 5.4.1. Интеграционное тестирование проводится с помощью Mockito, espresso и dagger.
Я столкнулся с проблемой, когда мы добавляем библиотеку Pendo в проект, в Gradle стандартно добавлена зависимость. Все работает нормально, пока мы не попытаемся запустить интеграционные тесты (~ 2000), они запускаются в шардах с Spoon.
Примерно на полпути в интеграционных тестах, при случайных тестах каждый раз, мы сталкиваемся с собственным cra sh, убивающим тестовый прогон из-за превышения пропускной способности LinearAllo c. Выполняя эти тесты изолированно или в своих классах локально, они проходят без проблем и были стабильными в течение длительного времени.
Я вернул все приложение в известную хорошую сборку, добавил только зависимость Pendo, и это приводит к той же самой проблеме, однако я не верю, что это связано с Pendo, как я проверял, возвращаясь к известная хорошая сборка (проверенная снова на данный момент на предмет работоспособности) и добавление случайной новой зависимости, это привело к той же проблеме.
Из того, что я могу найти, может быть что-то, связанное с ограничениями метода вокруг Android. Я должен упомянуть, что мы используем мультидекс, чтобы сломать приложение. Proguard и minify также используются.
Часть проблемы здесь в том, что я действительно не уверен, что посмотреть, чтобы выяснить, что происходит, чтобы вызвать это переполнение. Следуя протоколам тестовых прогонов, ничто не кажется неправильным, за исключением значительной части сборки мусора (что, я думаю, означает утечку куда-то). Я не уверен, что эта проблема связана с какой-то утечкой, а новые библиотеки что-то толкают за грань, или есть какой-то предел зависимости в android, о котором я не знаю, или какой-то другой способ сломать файлов, поэтому LinearAllo c не заполняется.
Из чтения я знаю, что пределы LinearAllo c были увеличены около Android 5, у нас проблемы на устройствах как выше (Android 10), так и ниже этого (Android 4) и Я не вижу особого разговора об этом с 2017 года, поэтому я чувствую, что упускаю что-то очевидное или что-то неправильно настроено в проекте, если он был настроен до этого.
Любая помощь будет очень признательна. Я выкинул урезанную версию файла Gradle ниже
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
sourceSets {
main.java.srcDirs += "src/main/kotlin"
main.jniLibs.srcDirs = ["src/main/jni"]
androidTest.java.srcDirs += ["src/androidTest/kotlin", "src/testUtilities/kotlin"]
debug.java.srcDirs += "src/debug/kotlin"
test.java.srcDirs += ["src/test/kotlin", "src/testUtilities/kotlin"]
}
defaultConfig {
minSdkVersion 17
targetSdkVersion 25 // Required to be sdk 25
versionCode 94
versionName "3.4.0"
versionNameSuffix System.getenv("ANDROID_VERSION_NAME_SUFFIX") ?: ""
multiDexEnabled true
multiDexKeepProguard file("multidex-keep-rules.pro")
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testBuildType "debug"
renderscriptTargetApi 17
renderscriptSupportModeEnabled false
vectorDrawables.useSupportLibrary = true
}
packagingOptions {
exclude "META-INF/ASL2.0"
exclude "META-INF/LICENSE"
exclude "META-INF/NOTICE"
exclude "META-INF/NOTICE.txt"
exclude "META-INF/LICENSE.txt"
exclude "META-INF/MANIFEST.MF"
exclude "META-INF/main.kotlin_module"
exclude "META-INF/proguard/androidx-annotations.pro"
exclude "META-INF/atomicfu.kotlin_module"
}
buildTypes {
debug {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
testCoverageEnabled = false
applicationIdSuffix = '.dev'
versionNameSuffix "-debug"
manifestPlaceholders = [isDebug: true]
}
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
signingConfig signingConfigs.release
manifestPlaceholders = [isDebug: false]
}
}
dataBinding {
enabled = true
}
testOptions {
animationsDisabled = true
}
lintOptions {
checkDependencies = false
checkGeneratedSources = false
ignoreTestSources = true
disable "ExpiredTargetSdkVersion"
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
composer {
variants "debug"
shard true
withOrchestrator false
verboseOutput false
keepOutput true
if (project.hasProperty("composerClassTarget")) {
instrumentationArgument("class", project.getProperty("composerClassTarget"))
}
}
configurations {
ktlint
}
task ktlint(type: JavaExec) {
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "src/**/*.kt"
}
check.dependsOn ktlint
detekt {
input = files("$project.projectDir/src")
config = files("$project.projectDir/detekt.yml")
filters = ".*/testUtilities/.*, .*build.*, .*/tmp/.*, .*/resources/.*, .*/res/.*"
parallel = true
}
dependencies {
ktlint "com.pinterest:ktlint:0.36.0"
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
kapt "com.github.bumptech.glide:compiler:$glideVersion"
kaptAndroidTest "com.google.dagger:dagger-compiler:$daggerVersion"
implementation fileTree(include: ['**/*.jar'], dir: 'libs')
implementation "androidx.multidex:multidex:2.0.1"
implementation "androidx.legacy:legacy-support-v4:1.0.0"
implementation "androidx.appcompat:appcompat:1.0.2"
implementation "androidx.recyclerview:recyclerview:1.0.0"
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.gridlayout:gridlayout:1.0.0"
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
implementation "androidx.lifecycle:lifecycle-process:2.2.0"
implementation "android.arch.work:work-runtime-ktx:$workManagerVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinCoroutinesVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-rx2:$kotlinCoroutinesVersion"
implementation "io.reactivex.rxjava2:rxkotlin:2.4.0"
implementation("io.reactivex.rxjava2:rxandroid:2.1.1") {
exclude group: "io.reactivex.rxjava2", module: "rxjava"
}
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
implementation "com.squareup.retrofit2:converter-jackson:$retrofitVersion"
implementation("com.squareup.retrofit2:converter-simplexml:$retrofitVersion") {
exclude group: "stax", module: "stax-api"
exclude group: "stax", module: "stax"
exclude group: "xpp3", module: "xpp3"
}
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$okHttpVersion"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.6"
implementation "com.clover.sdk:clover-android-sdk:$cloverVersion"
implementation "com.clover.sdk:clover-android-connector-sdk:$cloverVersion"
implementation "com.google.dagger:dagger:$daggerVersion"
implementation "org.slf4j:slf4j-api:$slf4jVersion"
implementation "com.amazonaws:aws-android-sdk-core:$awsSdkVersion"
implementation "com.amazonaws:aws-android-sdk-pinpoint:$awsSdkVersion"
implementation("com.amazonaws:aws-android-sdk-mobile-client:$awsSdkVersion@aar") {
transitive = true
}
implementation "com.amazonaws:aws-android-sdk-s3:$awsSdkVersion"
implementation "com.amazonaws:aws-android-sdk-appsync:$awsAppSyncSdkVersion"
implementation "org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.0"
implementation "org.eclipse.paho:org.eclipse.paho.android.service:1.1.1"
implementation "org.greenrobot:eventbus:3.1.1"
implementation "com.github.bumptech.glide:glide:$glideVersion"
implementation "com.github.bumptech.glide:okhttp3-integration:$glideVersion"
implementation("com.madgag.spongycastle:prov:1.58.0.0") {
exclude group: "junit"
}
implementation "com.auth0.android:jwtdecode:1.4.0"
implementation "net.grandcentrix.tray:tray:0.12.0"
implementation "org.threeten:threetenbp:1.4.1"
implementation("com.jakewharton.threetenabp:threetenabp:1.2.2") {
exclude module: "threetenbp"
}
implementation("com.github.joschi.jackson:jackson-datatype-threetenbp:2.8.4") {
exclude module: "threetenbp"
}
implementation "com.newrelic.agent.android:android-agent:$newRelicVersion"
implementation "com.journeyapps:zxing-android-embedded:3.6.0"
implementation "com.g00fy2:versioncompare:1.3.4"
implementation "com.airbnb.android:lottie:3.3.1"
implementation project(":app:libs:clover:roam")
implementation("com.firstdata.clovergo:remote-pay-android-go-connector:3.3.1.4@aar") {
transitive = true
}
implementation('io.branch.sdk.android:library:4.3.2') {
exclude module: "bbpos"
}
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
compileOnly "org.glassfish:javax.annotation:10.0-b28"
runtimeOnly "com.noveogroup.android:android-logger:$androidLoggerVersion"
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
testImplementation "org.slf4j:jcl-over-slf4j:$slf4jVersion"
testImplementation "org.hamcrest:hamcrest-junit:2.0.0.0"
testImplementation("org.mockito:mockito-core:$mockitoVersion") {
exclude group: "net.bytebuddy"
}
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:$mockitoKotlinVersion") {
exclude group: "org.jetbrains.kotlin"
exclude group: "org.mockito"
}
testImplementation "net.bytebuddy:byte-buddy-android:$byteBuddyVersion"
testImplementation "net.bytebuddy:byte-buddy-agent:$byteBuddyVersion"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinCoroutinesVersion"
androidTestImplementation "androidx.test:runner:1.2.0"
androidTestImplementation "androidx.test:rules:1.2.0"
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.2.0"
androidTestImplementation "androidx.multidex:multidex-instrumentation:2.0.0"
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
androidTestImplementation("androidx.test.espresso:espresso-contrib:$espressoVersion") {
exclude module: "material"
exclude module: "appcompat"
exclude module: "recyclerview"
exclude module: "cardview"
}
androidTestImplementation "androidx.test.espresso:espresso-intents:$espressoVersion"
androidTestImplementation "android.arch.work:work-testing:$workManagerVersion"
androidTestImplementation "com.google.dagger:dagger:$daggerVersion"
androidTestImplementation "org.awaitility:awaitility:3.1.6"
androidTestImplementation "com.squareup.okhttp3:mockwebserver:$okHttpVersion"
androidTestImplementation("org.mockito:mockito-android:$mockitoVersion") {
exclude group: "net.bytebuddy"
}
androidTestImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:$mockitoKotlinVersion") {
exclude group: "org.jetbrains.kotlin"
exclude group: "org.mockito"
}
androidTestImplementation "net.bytebuddy:byte-buddy-android:$byteBuddyVersion"
androidTestImplementation "net.bytebuddy:byte-buddy-agent:$byteBuddyVersion"
androidTestImplementation "com.squareup.spoon:spoon-client:1.7.1"
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinCoroutinesVersion"
}
android.unitTestVariants.all { variant ->
variant.getRuntimeConfiguration().exclude group: "com.noveogroup.android", module: "android-logger"
}