English 中文(简体)
Samsung Galax S24 不工作为反应 本地安更器应用程序
原标题:Samsung Galaxy S24 not working for react native Android app

在Play Store安装后,三星银河系统S24和A55系统不再使用React Pative Android应用程序。应用程序冻结在默认发射器屏幕上。

我找到了让App 64-bit兼容的解决方案 但它已经兼容了

这是我的草签文件:

splits {
    abi {
        reset()
        enable enableSeparateBuildPerCPUArchitecture
        universalApk false // If true, also generate a universal APK
        include “armeabi-v7a”, “x86”, “arm64-v8a”, “x86_64”
    }
}

即使当我提取APK文件时,我在lib 文件夹中也发现了所有4个文件夹。

问题回答

试图尝试的事情, 可能显而易见, 但不假设任何事情:

  1. Is the app working on other 64 bit devices?
  2. Does arm64-v8a contain all expected .so files?
  3. Run logcat > app.log, then launch the app. Stop log cat. Locate the app s bundle id in the output, determine the PID of the process. Filter app.log by the PID. Look for any exception/stack trace information.
  4. Does the app connect to an api on startup? Connectivity or misconfiguration be causing the hang.
  5. You haven t said whether you are the author of the app. Assuming you are, compare the logcat output in dev and production to find any differences.
  6. Try running a production build locally on the device.

不是答案,而是一些调查渠道 让你开始调查





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签