We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c5ccc commit 3677ba6Copy full SHA for 3677ba6
1 file changed
app/build.gradle.kts
@@ -1,4 +1,5 @@
1
import com.android.build.gradle.internal.api.BaseVariantOutputImpl
2
+import com.android.build.gradle.internal.tasks.FinalizeBundleTask
3
import io.gitlab.arturbosch.detekt.Detekt
4
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
5
import org.gradle.api.tasks.testing.logging.TestLogEvent
@@ -163,6 +164,16 @@ android {
163
164
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST.MF"
165
}
166
167
+ splits {
168
+ abi {
169
+ isEnable = true
170
+ reset()
171
+ // Only architectures supported by native libs (ldk-node, bitkit-core)
172
+ // x86 not supported; x86_64 only for debug/emulator
173
+ include("armeabi-v7a", "arm64-v8a")
174
+ isUniversalApk = true
175
+ }
176
177
testOptions {
178
unitTests {
179
isReturnDefaultValues = true // mockito
0 commit comments