You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Hello,
I am ussing conekta api for android and iOS app, this is the only api that have work for me.
In my last upload to the app store apple sendme the next email:
ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/documentation/uikit/uiwebview for more information.
I hace searched in my entire project and i found that in
node_modules/RNConekta/Conekta/Conekta.m it use it:
`#import "Conekta.h"
@implementation Conekta
UIWebView *web;
(id) init
{
web = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
[self setBaseURI:@"https://api.conekta.io"];
return self;
}
(NSString *) deviceFingerprint
{
NSString *uuid = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
return [uuid stringByReplacingOccurrencesOfString:@"-" withString:@""];
}
`
How can it be fixed???