diff options
author | Paulo Pinheiro <paulovictor.pinheiro@gmail.com> | 2022-08-16 22:47:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 13:47:08 -0700 |
commit | 1e0f75a647c35a09b15c8f0c44c058aa80d65d73 (patch) | |
tree | ecd13307340449a2e8bfe7cbd7ca0abfb462e5b7 /android/app | |
parent | 82b75407a343d0442e08cc0e7db30a9c0804bcb3 (diff) | |
download | flatbuffers-1e0f75a647c35a09b15c8f0c44c058aa80d65d73.tar.gz flatbuffers-1e0f75a647c35a09b15c8f0c44c058aa80d65d73.tar.bz2 flatbuffers-1e0f75a647c35a09b15c8f0c44c058aa80d65d73.zip |
[WIP] speedup (#7452)
Diffstat (limited to 'android/app')
-rw-r--r-- | android/app/build.gradle | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle index 06e8cab0..7497179f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -18,6 +18,10 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } + ndk { + abiFilters 'arm64-v8a', 'armeabi-v7a' + } + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { @@ -102,29 +106,29 @@ android { } } - flavorDimensions "stl-variant" - productFlavors { - gnustl { - dimension "stl-variant" - applicationIdSuffix ".gnustl" - versionNameSuffix "-gnustl" - externalNativeBuild { - ndkBuild { - arguments "APP_STL=gnustl_static" - } - } - } - libcpp { - dimension "stl-variant" - applicationIdSuffix ".libcpp" - versionNameSuffix "-libcpp" - externalNativeBuild { - ndkBuild { - arguments "APP_STL=c++_static" - } - } - } - } +// flavorDimensions "stl-variant" +// productFlavors { +// gnustl { +// dimension "stl-variant" +// applicationIdSuffix ".gnustl" +// versionNameSuffix "-gnustl" +// externalNativeBuild { +// ndkBuild { +// arguments "APP_STL=gnustl_static" +// } +// } +// } +// libcpp { +// dimension "stl-variant" +// applicationIdSuffix ".libcpp" +// versionNameSuffix "-libcpp" +// externalNativeBuild { +// ndkBuild { +// arguments "APP_STL=c++_static" +// } +// } +// } +// } } dependencies { |