Search Issue Tracker
Fixed in 2018.1.X
Fixed in 2017.4.X
Votes
1
Found in
5.6.3p4
Issue ID
953849
Regression
No
Android keyboard crashes app when selecting text in Input field (Galaxy, Xperia)
Steps to reproduce:
1. Open attached project "KeyboardCrash.zip"
2. Build and run on certain Android devices (shown below)
3. Select the InputField, select all text and press OK button
4. Application crashes
Expected: The app does not crash
Actual: After selecting the text and pressing OK the app crashes
Reproduced on Unity: 5.5.5f1, 5.6.3p4, 2017.1.1p3, 2017.2.0f2, 2017.3.0b2
Devices that reproduce the issue:
Xperia XZ Premium SO-04J(Android7.1.1)
Xperia XZs SOV35 (Android7.1.1)
Xperia XZs 602SO (Android7.1.1)
Xperia X Performance SOV33 (Android 7.0)
Samsung GalaxyS7 SM-G930F (Android 7.0.1 )
Devices that don't:
Samsung Galaxy S7 Verizon SM G930V (Android 6.0.1)
Sony Xperia (Z3D6603) (Android 5.1.1)
Samsung GalaxyS8 SM-G950F (Android 7.0)
Samsung GalaxyS6 SC-05G (Android 7.0)
Google Pixel* (Android 8.0)
Meizu MX5 (Android 5.0.1)
HUAWEI EVA L19 (Android 7.0)
Lge LG H815 (G4) (Android 6.0)
Note:
This bug happened on some "Galaxy" and "Xperia" with Android 7.0.
And I found that if we change Android's "Default Keyboard" from settings, the bug won't happen
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
potterpriya24
Dec 27, 2019 11:48
very good.....
<a href="https://www.kaashivinfotech.com/internship-in-bangalore-for-be-cse-students/">internship in bangalore for cse students</a>
<a href="https://www.kaashivinfotech.com/internship-for-aeronautical-engineering-students/">internship for aerospace engineering students in india</a>
<a href="https://www.kaashivinfotech.com/internship-for-ece-students/">core companies in coimbatore for ece internship</a>
<a href="https://www.kaashivinfotech.com/internship-in-pune-for-computer-engineering-students/">paid internship in pune for computer engineering students</a>
<a href="https://www.kaashivinfotech.com/internship-for-automobile-engineering-students/">automobile internship in chennai</a>
<a href="https://www.kaashivinfotech.com/internship-for-eee-students/">internship in chennai for eee with stipend</a>
<a href="https://www.kaashivinfotech.com/internship-for-bca-students/">internship for bca students</a>
<a href="https://www.kaashivinfotech.com/dot-net-training-in-chennai/">dotnet training in chennai</a>
<a href="https://www.kaashivinfotech.com/internship-for-aeronautical-engineering-students/">aeronautical engineering internship</a>
<a href="https://www.kaashivinfotech.com/inplant-training-for-ece-students/">inplant training for ece students</a>
krissmith
Dec 10, 2019 15:14
how this bug will work in OPPO F9 pro Andriod device?
Some links to learn about Android APP development
https://www.inventateq.com/mobile-android-app-development-training-courses-bangalore.php
https://www.inventateq.com/ui-developer-design-training-courses-bangalore.php
https://www.inventateq.com/mobile-ios-apps-training-courses-bangalore.php
ArseniyMaryin
Nov 02, 2018 11:05
In what Unity version is this bug fixed?
ArseniyMaryin
Nov 02, 2018 11:03
Is this bug fixed yet?
Murrrly
Jul 23, 2018 16:35
Seems this one is back in 2018.2.0f2
anudeepb23
Feb 02, 2018 12:25
first i will give the theory behind the crash
Before roughly coming to the solution detect the problem as to where the problem occuring by viewing the code. If you have already published your app, Android vitals can help make you aware of the problem.Android vitals can help improve your app's performance by alerting you, via the Play Console, when your app is exhibiting excessive crashes. Android vitals considers crashes excessive when an app:having 1 crash in atleast 1.09% of its daily sessions,or having 2 or more crashes in at least 0.18% of its daily sessions.A daily session here means ,too a day in which our app was used. Diagnose the crashes
Solving crashes can be difficult. However, if you can identify the root cause of the crash, most likely you can find a solution to it.There are many situations that can cause a crash in your app. Some reasons are obvious, like checking for a null value or empty string, but others are more subtle, like passing invalid arguments to an API or even complex multithreaded interactions.
Reading a stack trace
The first step to fix a crash is to go to the place where it happens. You can see use the stack trace available in the report details . If you don’t have a stack trace available, you should locally reproduce the crash either by manually testing the app or reaching out to affected users, and reproduce it while using logcat.