我使用的是 iPhone 8(版本 13.3.1)和 MacBook Air(版本 10.14.6)。我已在 Xcode > 常规中将“团队”设置为个人团队。然后我单击左上角的按钮来运行它。即使我已经删除了之前在具有示例 Apple ID 的同一部手机上安装的应用程序,我也收到了这样的错误:
Details
Unable to install "Runner"
Domain: com.apple.dtdevicekit
Code: -402620383
--
App installation failed
Domain: com.apple.dtdevicekit
Code: -402620383
Failure Reason: The maximum number of apps for free development profiles has been reached.
User Info: {
DVTRadarComponentKey = 487927;
"com.apple.dtdevicekit.stacktrace" = (
0 DTDeviceKitBase 0x00000001263006e7 DTDKCreateNSError + 109
1 DTDeviceKitBase 0x0000000126300de9 DTDK_AMDErrorToNSError + 792
2 DTDeviceKitBase 0x000000012634056a __90-[DTDKMobileDeviceToken installApplicationBundleAtPath:withOptions:andError:withCallback:]_block_invoke + 164
3 DVTFoundation 0x000000010ba8dc12 DVTInvokeWithStrongOwnership + 73
4 DTDeviceKitBase …Run Code Online (Sandbox Code Playgroud) I am trying to deploy an project manager app to heroku. It's running working locally.
I am following the tutorial https://www.codementor.io/@jamesezechukwu/how-to-deploy-django-app-on-heroku-dtsee04d4 to deploy me app. I don't know where is the error and how to fix so hope you can help.
NotADirectoryError at /, saying [Errno 20] Not a directory: '/app/myProjectManager/settings.py/staticfiles/staticfiles.json'
Here is some of my backend code:
MIDDLEWARE = [
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
PROJECT_ROOT …Run Code Online (Sandbox Code Playgroud)