diff options
author | zmiao <miao.zhao@mapbox.com> | 2019-11-20 17:56:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 17:56:19 +0200 |
commit | 03b7fe33260b7be4f03f47c1badc2c1601df4b0e (patch) | |
tree | 8150f3f762bc85d373089f9175eeb0a80eaed67f /render-test | |
parent | 656bc9c8bb2facd0ee0ac25543f50719a12d69d2 (diff) | |
download | qtlocation-mapboxgl-03b7fe33260b7be4f03f47c1badc2c1601df4b0e.tar.gz |
[render-test] Config CircleCi to run RenderTestApp on Firebase with Pixel4 (#15951)
This reverts commit d2413d4ffffd087b352b6e4edd6e6322a311bc07.
Diffstat (limited to 'render-test')
-rw-r--r-- | render-test/android/app/build.gradle | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/render-test/android/app/build.gradle b/render-test/android/app/build.gradle index 682af85dcf..cb864128a2 100644 --- a/render-test/android/app/build.gradle +++ b/render-test/android/app/build.gradle @@ -7,6 +7,17 @@ android { applicationId = 'com.mapbox.mapboxsdk.maps.render_test_runner' minSdkVersion 14 targetSdkVersion 28 + def abi = 'all' + if (project.hasProperty('mapbox.abis')) { + abi = project.getProperty("mapbox.abis") + } + ndk { + if (abi != 'all') { + abiFilters abi.split(' ') + } else { + abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" + } + } externalNativeBuild { cmake { arguments '-DANDROID_CCACHE=ccache' |