diff options
author | Hailey <me@haileyok.com> | 2024-03-05 18:55:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-05 18:55:23 -0800 |
commit | e721f84a2cd64bd98f54049bd17925ddf1b194c8 (patch) | |
tree | 15a27327066433c77fa9d59a17d838a2913b5bb4 | |
parent | 57854e6fc28affbe28315e3d8f2276ab85272cbb (diff) | |
download | voidsky-e721f84a2cd64bd98f54049bd17925ddf1b194c8.tar.zst |
add `newArchEnabled: false` flag to app.config.js (#3115)
-rw-r--r-- | app.config.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app.config.js b/app.config.js index a18addcce..9691cab23 100644 --- a/app.config.js +++ b/app.config.js @@ -121,12 +121,14 @@ module.exports = function (config) { { ios: { deploymentTarget: '13.4', + newArchEnabled: false, }, android: { compileSdkVersion: 34, targetSdkVersion: 34, buildToolsVersion: '34.0.0', kotlinVersion: '1.8.0', + newArchEnabled: false, }, }, ], |