Bluetooth and network permissions are required to use the development kit

1 Bluetooth permissions are enabled and the following fields need to be added to the info.plist file
  NSBluetoothAlwaysUsageDescription
  NSBluetoothPeripheralUsageDescription
  UIBackgroundModes
    bluetooth-central

2 Network permission is enabled, and the following code can be invoked to start when entering the App
-(void)testHttp
{
    NSURL *url = [NSURL URLWithString:@"https://www.baidu.com"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSURLSession *session = [NSURLSession sharedSession];
    NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        if (error == nil) {
            NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
            NSLog(@"%@",dict);
        }
    }];
    
    [dataTask resume];
}
