iOS Question Apple Sign in

ilan

Expert
Licensed User
Longtime User
hi,

i am trying to implement Apple Sign in function in my App since Apple don't allow me to use Google Auth only for that.
i followed this post: https://www.b4x.com/android/forum/threads/user-authentication-with-apple-id.113671/#content
but am not able to make it work.

I did all steps but pressing the button does not do anything. Nothing happens when i press the button.

any ideas what could be the problem?

i also enabled the "Apple sing in" in the app identifier. is this correct?


1645091325841.png


thanx, ilan
 

Attachments

  • 1645091391852.png
    1645091391852.png
    10.8 KB · Views: 174

ilan

Expert
Licensed User
Longtime User
Looks ok.

Have you downloaded the updated provision profile? Make sure that you are using the correct one.
Something is probably misconfigured. Hard to say which part.

yes, i did download the updated provisions file. i understand that it is hard to find the problem without an example that can reproduce my issue. i dont know if it safe to upload my provisions file to the forum so i guess i will look for a different approach in my app.

thank you again for your help Erel 🙏
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
Ok i found after maybe 1,5 hour the reason why it did not work for me.

if you put the button on a panel that has a click event the button will not work. after removing the click event of the panel the button will work.


B4X:
Sub backuppnl_Click
    'do nothing
End Sub

this is the panel click event and I use it because I want to prevent views that are behind the panel to be accidentally clicked but the apple sign-in button will not work. if I comment this event the apple sign-in button will work.

is this a bug or is this on purpose?
 
Upvote 0
Top