Skip to content

Commit 98188c8

Browse files
committed
fix: update universal APK generation setting in build.gradle
1 parent 51f4206 commit 98188c8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Icons are used from hugeicons if you want to add extra icons to the library, you can add it running `ic icon-name` command.
66
`icon-name` is from the hugeicons website. Always use hyphen `-` to separate words in icon names.
7+
`ic` is a standalone binary. No need to use it with bun or npm.
78

89
- No need to fix formatting related issues.
910

android/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@ android {
105105
targetSdkVersion rootProject.ext.targetSdkVersion
106106
versionCode 15
107107
versionName "1.5.1"
108-
ndk {
109-
abiFilters "arm64-v8a"
110-
}
108+
// ndk {
109+
// abiFilters "arm64-v8a"
110+
// }
111111
}
112112

113113
splits {
114114
abi {
115115
reset()
116116
enable enableSeparateBuildPerCPUArchitecture
117-
universalApk true // If true, also generate a universal APK
117+
universalApk false // If true, also generate a universal APK
118118
// include (*reactNativeArchitectures())
119119
include "arm64-v8a"
120120
}

0 commit comments

Comments
 (0)