Skip to content

Commit

Permalink
[TF][FIX] explicitily filter architectures for cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
thermatk committed Sep 4, 2021
1 parent f475cdd commit 4c66600
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions TMessagesProj/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,13 @@ android {
cmake {
version '3.10.2'
arguments '-DANDROID_STL=c++_static', '-DANDROID_PLATFORM=android-16', "-j=16"
if (project.hasProperty("armeabi-v7a")) {
abiFilters 'armeabi-v7a'
} else if (project.hasProperty("arm64-v8a")) {
abiFilters 'arm64-v8a'
} else {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
}
}
Expand Down

0 comments on commit 4c66600

Please sign in to comment.