We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c91562a commit ab12c71Copy full SHA for ab12c71
android/app/build.gradle
@@ -120,10 +120,12 @@ androidComponents {
120
onVariants(selector().all()) { variant ->
121
variant.outputs.forEach { output ->
122
def abi = null
123
- for (filter in output.filters) {
124
- if (filter.filterType.name() == "ABI") {
125
- abi = filter.identifier
126
- break
+ if (output.filters != null) {
+ for (filter in output.filters) {
+ if (filter.filterType.name() == "ABI") {
+ abi = filter.identifier
127
+ break
128
+ }
129
}
130
131
def suffix = abi != null ? "_${abi}" : ""
0 commit comments