D
D
Delakey Blackhole2016-10-21 15:40:03
iOS
Delakey Blackhole, 2016-10-21 15:40:03

Visual Studio Cordova, When compiling, it gives an error that the development team is not selected, how to fix it?

log

1>  
Check dependencies
1>  Signing for "***" requires a development team. Select a development team in the project editor.
1>  Code signing is required for product type 'Application' in SDK 'iOS 10.0'

Googling found what you need in buld.json to add info for ios
, that's what I got
{
  "android": {
    "release": {
      "keystore": "",
      "storePassword": "",
      "alias": "",
      "password": "",
      "keystoreType": ""
    }
  },
  "windows": {
    "release": {
      "packageCertificateKeyFile": "res\\native\\windows\\CordovaApp.pfx"
    }
  },
  "ios": {
    "debug": {
      "developmentTeam": "672****QWR"
    },
    "release": {
      "developmentTeam": "672****QWR",
      "codeSignIdentity": "iPhone Developer"
    }
  }
}

it wasn't like this before the update.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question