03-05-2024 06:03 AM
Hi Team, currently my app is not working in Samsung Galaxy S24 after installing from play store, for the same is working fine when installing from Android Studio
03-05-2024 09:23 AM
What app would that be
03-05-2024 09:33 AM
03-05-2024 09:40 AM
Hi @Divyanshu1
If this is the app that you are developing then, you might like to post in another forum. e.g. developers.
This is a user forum where most users will not have the technical knowledge or time for debugging applications.
By the way, if you do post on a developers' forum. Please provide more data and/or explanation. I do not think you will be able to receive great help with the current explanation of your problem. Some logs or similar might help developers to provide help to your issue in question.
03-05-2024 09:44 AM
Is your app on playstore 64bit?
03-05-2024 10:37 AM
yes my app supports 64 bit. even the app is working while debugging
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
03-05-2024 01:52 PM - last edited 03-05-2024 01:53 PM
The phone does not support 32bit at all, so if you have any code including 32bit, it might be causing your problem.
03-05-2024 01:55 PM
Here configuration is managed for 64 Bit also, and I tried to install signing build that is working fine, facing issue only while installing from react native.
03-05-2024 02:12 PM
What do you by " 64 Bit also"? what ever you are doing for the s24 should be 64 Bit only. It is not 32bit compatible.
03-05-2024 02:23 PM
here we are allowing our app to be compatible for 32 and 64 bit both.
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}