Skip to content

Commit

Permalink
Merge 899ae05 into 43b9730
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Apr 30, 2019
2 parents 43b9730 + 899ae05 commit 8c4c297
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions features/fixtures/mazerunner/build.gradle
Expand Up @@ -62,6 +62,9 @@ android {
jniLibs.srcDirs = ['libs']
}
}
lintOptions {
tasks.lint.enabled = false
}
}

dependencies {
Expand Down
11 changes: 9 additions & 2 deletions features/support/env.rb
Expand Up @@ -3,7 +3,11 @@

# Install latest versions of bugsnag-android(-ndk)
run_required_commands([
["./gradlew", "clean", "sdk:assembleRelease", "ndk:assembleRelease"],
[
"./gradlew", "sdk:assembleRelease", "ndk:assembleRelease",
"-x", "lintVitalRelease",
"-x", "countReleaseDexMethods"
],
["cp", "sdk/build/outputs/aar/bugsnag-android-*.aar",
"features/fixtures/mazerunner/libs/bugsnag-android.aar"],
["cp", "ndk/build/outputs/aar/bugsnag-android-ndk-*.aar",
Expand All @@ -13,7 +17,10 @@
# Build the harness app
Dir.chdir('features/fixtures/mazerunner') do
run_required_commands([
["../../../gradlew", "clean", "assembleRelease"],
[
"../../../gradlew", "assembleRelease",
"-x", "lintVitalRelease"
],
])
end

Expand Down

0 comments on commit 8c4c297

Please sign in to comment.