这是一个为期3-4年的Android项目,运行在5.4.1级。集成测试是与莫基托,浓缩咖啡和匕首。
我遇到了一个问题,当我们向项目中添加一个Pendo库时,依赖项作为标准添加到Gradle中。一切运行良好,除非我们尝试运行集成测试(~2000),否则这些测试都是用Spoon以碎片的方式运行的。
在集成测试的一半左右,每次在随机测试中,我们都会遇到一个本机崩溃,由于LinearAlloc超出了容量,导致测试无法运行。孤立地运行这些测试,或者在本地的类中运行,它们通过时没有问题,并且已经稳定了很长一段时间。
我把整个应用程序带回到了已知的好版本,只添加了Pendo依赖项,这导致了同样的问题,但是我不认为这是由于Pendo,因为我通过回到已知的好构建(在这个时候再次测试了理智)并添加了一个随机的新依赖,这导致了同样的问题。
据我所知,这可能与Android的方法限制有关。我应该说我们正在使用multidex来分解这个应用程序。还在使用Proguard和minify。
这里的部分问题是,我真的不知道该看什么来找出导致这种溢出的原因。在测试运行的日志之后,似乎没有什么问题,除了一些垃圾收集(我猜这意味着某个地方有漏洞)。我不确定这个问题是否是因为一些潜在的漏洞,而新的库正在把一些东西推到边缘,或者是我不知道的安卓系统中是否存在某种依赖限制,或者其他方式来分解文件,这样我们就不会让LinearAlloc填满。
从阅读中,我知道LinearAlloc的极限是在安卓5上增加的,我们在设备上(安卓10)和低于这个(安卓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"
}发布于 2020-03-02 11:36:20
好的,这是一个有趣的问题,如果任何人遇到类似的问题,就把这个放在一边。
在这种情况下,我们发出的错误信息似乎是相当误导的。帮助诊断这类错误的一个好方法是查看坠机留下的墓碑,有关更多信息,请参见https://source.android.com/devices/tech/debug/native-crash。
在这种情况下,pro卫兵是我们的敌人,它似乎在测试代码上执行某种类型的优化,导致变量被错误地分配,并通过添加-optimizations *other optimizations*,!code/allocation/variable来解决--这可能不适用于您的特定情况,但可能尝试配置proguard以不进行优化,看看这是否有帮助:D。
https://stackoverflow.com/questions/60420269
复制相似问题