Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't work on Samsung Galaxy S8 #4

Closed
Ricimon opened this issue Aug 7, 2018 · 8 comments
Closed

Doesn't work on Samsung Galaxy S8 #4

Ricimon opened this issue Aug 7, 2018 · 8 comments

Comments

@Ricimon
Copy link

Ricimon commented Aug 7, 2018

I downloaded and built the demo on both 2018.1.0f2 and 2017.4.3f1, but they both have this issue:
38658479_542437156172886_1446769740931399680_n

@baksarbed
Copy link

I have the same error
Unity 2018.2.2 and android level 22
Ulefone metal

@PrisedRabbit
Copy link
Contributor

I confirm

@Rekkuzan
Copy link

Rekkuzan commented Nov 8, 2018

I think I found a workaround. The attribute Name contained in MobileInputHandler.cs doesn't match the name of the android library.

        /// <summary>
        /// Plugin name
        /// </summary>
        public string Name {
            get {
                return "MobileInputHandler";
            }
        }

to

        /// <summary>
        /// Plugin name
        /// </summary>
        public string Name {
            get {
                return "mobileinput";
            }
        }

The real fix should be done in the android libary itself (since this name was changed in a previous commit).

EDIT:
Changing the name prevent the data sent by the native part to proceed.

@mopsicus
Copy link
Owner

Lib is updated. Check it on S8, pls

@Ricimon
Copy link
Author

Ricimon commented Nov 12, 2018

Works now, thank you!

Quick other question, is it possible to select another input field while one is already selected without closing and reopening the keyboard (and effectively tapping twice)?

@mopsicus
Copy link
Owner

Works now, thank you!

Quick other question, is it possible to select another input field while one is already selected without closing and reopening the keyboard (and effectively tapping twice)?

I will check it

@mopsicus
Copy link
Owner

@Ricimon now it should works, check it

@Ricimon
Copy link
Author

Ricimon commented Nov 13, 2018

Yup, works now, thanks!

@Ricimon Ricimon closed this as completed Nov 13, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants