From ae29d88add0bb65e573d7cdef960d864a70cc3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cdan-arvi=E2=80=9D?= <“daniel.arvind@bigthinkcode.com”> Date: Thu, 21 Jul 2022 12:18:36 +0530 Subject: [PATCH] Fixed visualizer build issue for android --- source/community/reactnative/android/app/build.gradle | 2 +- .../reactnative/android/app/src/main/AndroidManifest.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/community/reactnative/android/app/build.gradle b/source/community/reactnative/android/app/build.gradle index 8f69e727f5..a7e5a5a927 100644 --- a/source/community/reactnative/android/app/build.gradle +++ b/source/community/reactnative/android/app/build.gradle @@ -139,7 +139,7 @@ android { versionCode 1 versionName "1.1" ndk { - abiFilters "armeabi-v7a", "x86" + abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } } signingConfigs { diff --git a/source/community/reactnative/android/app/src/main/AndroidManifest.xml b/source/community/reactnative/android/app/src/main/AndroidManifest.xml index e429869858..82fe765994 100644 --- a/source/community/reactnative/android/app/src/main/AndroidManifest.xml +++ b/source/community/reactnative/android/app/src/main/AndroidManifest.xml @@ -9,6 +9,7 @@ android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:allowBackup="false" + android:usesCleartextTraffic="true" android:theme="@style/AppTheme">