teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

6

文言追加

2018/07/03 11:22

投稿

neuro_su
neuro_su

スコア13

title CHANGED
File without changes
body CHANGED
@@ -11,6 +11,7 @@
11
11
 
12
12
  Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
13
13
 
14
+ 下記にクラッシュログとdidFinishLaunchingWithOptionsの処理を書いています。
14
15
 
15
16
  ```ここに言語を入力
16
17
  Incident Identifier: 43E8015D-9BF8-4128-841C-9B7D5AC2F8E1

5

コード追加

2018/07/03 11:22

投稿

neuro_su
neuro_su

スコア13

title CHANGED
File without changes
body CHANGED
@@ -70,4 +70,51 @@
70
70
  23 MyApp 0x00000001005d4de4 main + 347620 (main.m:13)
71
71
  24 libdyld.dylib 0x00000001837ddfc0 start + 4
72
72
 
73
+ ```
74
+
75
+ ```ここに言語を入力
76
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
77
+
78
+ cocos2d::Application *app = cocos2d::Application::getInstance();
79
+
80
+ // Initialize the GLView attributes
81
+ app->initGLContextAttrs();
82
+ cocos2d::GLViewImpl::convertAttrs();
83
+
84
+ // Override point for customization after application launch.
85
+
86
+ // Add the view controller's view to the window and display.
87
+ window = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]];
88
+
89
+ // Use RootViewController to manage CCEAGLView
90
+ _viewController = [[RootViewController alloc]init];
91
+ //_viewController.wantsFullScreenLayout = YES;
92
+ _viewController.extendedLayoutIncludesOpaqueBars = YES;
93
+
94
+ // Set RootViewController to window
95
+ if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0)
96
+ {
97
+ // warning: addSubView doesn't work on iOS6
98
+ [window addSubview: _viewController.view];
99
+ }
100
+ else
101
+ {
102
+ // use this method on ios6
103
+ [window setRootViewController:_viewController];
104
+ }
105
+
106
+ [window makeKeyAndVisible];
107
+
108
+ [[UIApplication sharedApplication] setStatusBarHidden:true];
109
+
110
+ // IMPORTANT: Setting the GLView should be done after creating the RootViewController
111
+ cocos2d::GLView *glview = cocos2d::GLViewImpl::createWithEAGLView((__bridge void *)_viewController.view);
112
+ cocos2d::Director::getInstance()->setOpenGLView(glview);
113
+
114
+ //run the cocos2d-x game scene
115
+ app->run();
116
+
117
+ return YES;
118
+ }
119
+
73
120
  ```

4

クラッシュログを追加しました

2018/07/03 10:53

投稿

neuro_su
neuro_su

スコア13

title CHANGED
File without changes
body CHANGED
@@ -9,4 +9,65 @@
9
9
  iPhone5s iOS11.1.2
10
10
  iPhone7 iOS11.4です。
11
11
 
12
- Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
12
+ Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
13
+
14
+
15
+ ```ここに言語を入力
16
+ Incident Identifier: 43E8015D-9BF8-4128-841C-9B7D5AC2F8E1
17
+ CrashReporter Key: 916fc5e60ceb5c11b042eca748d4521249d5b115
18
+ Hardware Model: iPhone,1
19
+ Process: MyApp [1377]
20
+ Path: /private/var/containers/Bundle/Application/D9C036AE-937E-42A9-AF8A-70EC3BC3E949/MyApp.app/MyApp
21
+ Identifier:
22
+ Version: 1.0.0 (999.0.17)
23
+ Code Type: ARM-64 (Native)
24
+ Role: Foreground
25
+ Parent Process: launchd [1]
26
+ Coalition: [1351]
27
+
28
+
29
+ Date/Time: 2018-07-03 11:38:55.8189 +0900
30
+ Launch Time: 2018-07-03 11:38:35.5416 +0900
31
+ OS Version: iPhone OS 11.4 (15F79)
32
+ Baseband Version: 8.55.00
33
+ Report Version: 104
34
+
35
+ Exception Type: EXC_CRASH (SIGKILL)
36
+ Exception Codes: 0x0000000000000000, 0x0000000000000000
37
+ Exception Note: EXC_CORPSE_NOTIFY
38
+ Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
39
+ Termination Description: SPRINGBOARD, scene-create watchdog transgression: exhausted real (wall clock) time allowance of 19.81 seconds | | ProcessVisibility: Foreground | ProcessState: Running | WatchdogEvent: scene-create | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 35.710 (user 35.710, system 0.000), 89% CPU", | "Elapsed application CPU time (seconds): 18.055, 45% CPU" | )
40
+ Triggered by Thread: 0
41
+
42
+ Filtered syslog:
43
+ None found
44
+
45
+ Thread 0 name: Dispatch queue: com.apple.main-thread
46
+ Thread 0 Crashed:
47
+ 0 MyApp 0x00000001007cfd08 lj_str_new + 260
48
+ 1 MyApp 0x00000001007d2534 lj_meta_cat + 392
49
+ 2 MyApp 0x00000001007ca568 lj_BC_CAT + 32
50
+ 3 MyApp 0x00000001007de3b4 lua_pcall + 164
51
+ 4 MyApp 0x000000010063bfac cocos2d::LuaStack::executeFunction+ 769964 (int) + 172
52
+ 5 MyApp 0x000000010063c0a4 cocos2d::LuaStack::executeFunctionByHandler+ 770212 (int, int) + 76
53
+ 6 MyApp 0x0000000100638e30 cocos2d::LuaEngine::handleNodeEvent+ 757296 (void*) + 268
54
+ 7 MyApp 0x0000000100c021b8 cocos2d::ScriptEngineManager::sendNodeEventToLua+ 6824376 (cocos2d::Node*, int) + 104
55
+ 8 MyApp 0x00000001009469b0 cocos2d::Director::setNextScene+ 3959216 () + 236
56
+ 9 MyApp 0x00000001009466e4 cocos2d::Director::drawScene+ 3958500 () + 112
57
+ 10 MyApp 0x0000000100c09ac4 -[CCEAGLView layoutSubviews] + 172
58
+ 11 UIKit 0x000000018da976f4 -[UIView+ 308980 (CALayerDelegate) layoutSublayersOfLayer:] + 1420
59
+ 12 QuartzCore 0x000000018800dfec -[CALayer layoutSublayers] + 184
60
+ 13 QuartzCore 0x000000018801217c CA::Layer::layout_if_needed+ 1208700 (CA::Transaction*) + 324
61
+ 14 QuartzCore 0x0000000187f7e830 CA::Context::commit_transaction+ 604208 (CA::Transaction*) + 320
62
+ 15 QuartzCore 0x0000000187fa6364 CA::Transaction::commit+ 766820 () + 580
63
+ 16 UIKit 0x000000018de81680 __34-[UIApplication _firstCommitBlock]_block_invoke_2 + 140
64
+ 17 CoreFoundation 0x0000000183e2f2bc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20
65
+ 18 CoreFoundation 0x0000000183e2ea7c __CFRunLoopDoBlocks + 264
66
+ 19 CoreFoundation 0x0000000183e2c7b0 __CFRunLoopRun + 1224
67
+ 20 CoreFoundation 0x0000000183d4cda8 CFRunLoopRunSpecific + 552
68
+ 21 GraphicsServices 0x0000000185d31020 GSEventRunModal + 100
69
+ 22 UIKit 0x000000018dd69758 UIApplicationMain + 236
70
+ 23 MyApp 0x00000001005d4de4 main + 347620 (main.m:13)
71
+ 24 libdyld.dylib 0x00000001837ddfc0 start + 4
72
+
73
+ ```

3

ログ削除

2018/07/03 08:02

投稿

neuro_su
neuro_su

スコア13

title CHANGED
File without changes
body CHANGED
@@ -9,43 +9,4 @@
9
9
  iPhone5s iOS11.1.2
10
10
  iPhone7 iOS11.4です。
11
11
 
12
- Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
12
+ Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
13
-
14
-
15
-
16
- ログを全て載せたいのですが文字制限がありのせれませんでした。
17
-
18
- 最後の行周辺だけ載せておきます。
19
-
20
- 0x18e09d000 - 0x18e395fff StoreServices arm64 <cd530f60cdd4384d8f6cfeb3c4dfc820> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
21
- 0x18e616000 - 0x18e621fff CaptiveNetwork arm64 <7370ab9c9d19372694c32eddd151408b> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
22
- 0x18e622000 - 0x18e650fff EAP8021X arm64 <f011d0c978dc3371a68adbd963feae2c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
23
- 0x18e651000 - 0x18e68bfff MobileWiFi arm64 <821b33e7c58132e887940e7a63f83c94> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
24
- 0x18e68c000 - 0x18e68efff OAuth arm64 <fa58137fc53d3ec7ab103b0ef0837308> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
25
- 0x18e68f000 - 0x18e691fff CommonAuth arm64 <ca5c8872bba93e9cbd0d22bfbe6f3f8d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
26
- 0x18e692000 - 0x18e700fff Heimdal arm64 <e140358df24f3c048fc72a418ef7706f> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
27
- 0x18e701000 - 0x18e72afff GSS arm64 <7356db1437d33b4eaae3181c2f930107> /System/Library/Frameworks/GSS.framework/GSS
28
- 0x18e72b000 - 0x18e742fff ApplePushService arm64 <9f71334cb8273c719e7c48dd19e4ae15> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
29
- 0x18e743000 - 0x18e7dbfff AccountsDaemon arm64 <41d72f5376e53be993c062acb42ce5c7> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
30
- 0x18e7dc000 - 0x18e7fafff AppleIDSSOAuthentication arm64 <581b0aafe3af3f2297906d743f907e76> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
31
- 0x18e7fb000 - 0x18e86dfff AppleAccount arm64 <855aeb4d5acf304d837a233cdfd9b8d3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
32
- 0x18e86e000 - 0x18e964fff CoreUtils arm64 <6aef56c16f8e38cb84515ad30106d4d4> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
33
- 0x18ea7f000 - 0x18eaa1fff MediaServices arm64 <76ac3ce527e231b0b3a523213156b10d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
34
- 0x18eaa2000 - 0x18ebcefff MediaRemote arm64 <b1c783be5a2e3092a45991b2aa05ef67> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
35
- 0x19117e000 - 0x191226fff iTunesStore arm64 <63a81dfaeade36eab06b4990959debed> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
36
- 0x192946000 - 0x1929e2fff MediaPlatform arm64 <9eeb6a5ba91c3435bfabb904a15b8b26> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
37
- 0x192a43000 - 0x192a49fff DAAPKit arm64 <94f8ec869c4034779031bedf4c31db52> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
38
- 0x192b3b000 - 0x192e13fff MediaLibraryCore arm64 <b4cc309be3513471999aef9279d4743c> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
39
- 0x192e15000 - 0x193093fff MusicLibrary arm64 <bfea1081897330919b884ac1359d5dee> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
40
- 0x193958000 - 0x193ac2fff iTunesCloud arm64 <8c934a63b54f3342aca75ec524f36d28> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
41
- 0x193ac3000 - 0x193b63fff HomeSharing arm64 <ef4d1fddd2563fa190f26c0156fd8cc9> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
42
- 0x193cd2000 - 0x194107fff MediaPlayer arm64 <95ed93ac0daa3168bd55830e92c10621> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
43
- 0x199a2f000 - 0x199a65fff OpenAL arm64 <334ab824e8ff3a58b20fc6f2271296d5> /System/Library/Frameworks/OpenAL.framework/OpenAL
44
- 0x19cbb2000 - 0x19cd06fff libGLProgrammability.dylib arm64 <a2417e0e38bc351bb72a4ffd02bc93c7> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
45
- 0x19deff000 - 0x19df02fff AGXCompilerConnection arm64 <f57bbdbd127c321cb657bbdcc08339d2> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
46
- 0x19e4f7000 - 0x19e500fff libGPUSupportMercury.dylib arm64 <19a2e9f2ad9a3e709099416d5ef7cdc8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
47
- 0x1a2641000 - 0x1a26c6fff AGXGLDriver arm64 <c343914b2da134c0bb365ede83a47c90> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
48
- 0x1a28d8000 - 0x1a28ecfff libCGInterfaces.dylib arm64 <dc01f8416b033dcfb1dbbb7f40777e83> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
49
- 0x1a3645000 - 0x1a3727fff GLEngine arm64 <807ae232d0753aebbcf9e25a965fa740> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
50
- 0x1a6ab6000 - 0x1a6ab9fff InternationalSupport arm64 <6efcd0e042783733ac24282e37617085> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
51
- 0x1aa7e6000 - 0x1aa817fff libclosured.dylib arm64 <56e1a40175843bda9c860bdbbcf1b0b5> /usr/lib/closure/libclosured.dylib

2

タイトル変更

2018/06/22 00:05

投稿

neuro_su
neuro_su

スコア13

title CHANGED
@@ -1,1 +1,1 @@
1
- xcode9のiosビルドについて
1
+ xcode9のiosビルドができな 実機で確認しようとするとアプリが落ちしまう
body CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
  ログを全て載せたいのですが文字制限がありのせれませんでした。
17
17
 
18
- 最後の行だけ載せておきます。
18
+ 最後の行周辺だけ載せておきます。
19
19
 
20
20
  0x18e09d000 - 0x18e395fff StoreServices arm64 <cd530f60cdd4384d8f6cfeb3c4dfc820> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
21
21
  0x18e616000 - 0x18e621fff CaptiveNetwork arm64 <7370ab9c9d19372694c32eddd151408b> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork

1

ログを追加しました。

2018/06/19 10:42

投稿

neuro_su
neuro_su

スコア13

title CHANGED
File without changes
body CHANGED
@@ -9,4 +9,43 @@
9
9
  iPhone5s iOS11.1.2
10
10
  iPhone7 iOS11.4です。
11
11
 
12
- Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
12
+ Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
13
+
14
+
15
+
16
+ ログを全て載せたいのですが文字制限がありのせれませんでした。
17
+
18
+ 最後の行だけ載せておきます。
19
+
20
+ 0x18e09d000 - 0x18e395fff StoreServices arm64 <cd530f60cdd4384d8f6cfeb3c4dfc820> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
21
+ 0x18e616000 - 0x18e621fff CaptiveNetwork arm64 <7370ab9c9d19372694c32eddd151408b> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
22
+ 0x18e622000 - 0x18e650fff EAP8021X arm64 <f011d0c978dc3371a68adbd963feae2c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
23
+ 0x18e651000 - 0x18e68bfff MobileWiFi arm64 <821b33e7c58132e887940e7a63f83c94> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
24
+ 0x18e68c000 - 0x18e68efff OAuth arm64 <fa58137fc53d3ec7ab103b0ef0837308> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
25
+ 0x18e68f000 - 0x18e691fff CommonAuth arm64 <ca5c8872bba93e9cbd0d22bfbe6f3f8d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
26
+ 0x18e692000 - 0x18e700fff Heimdal arm64 <e140358df24f3c048fc72a418ef7706f> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
27
+ 0x18e701000 - 0x18e72afff GSS arm64 <7356db1437d33b4eaae3181c2f930107> /System/Library/Frameworks/GSS.framework/GSS
28
+ 0x18e72b000 - 0x18e742fff ApplePushService arm64 <9f71334cb8273c719e7c48dd19e4ae15> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
29
+ 0x18e743000 - 0x18e7dbfff AccountsDaemon arm64 <41d72f5376e53be993c062acb42ce5c7> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
30
+ 0x18e7dc000 - 0x18e7fafff AppleIDSSOAuthentication arm64 <581b0aafe3af3f2297906d743f907e76> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
31
+ 0x18e7fb000 - 0x18e86dfff AppleAccount arm64 <855aeb4d5acf304d837a233cdfd9b8d3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
32
+ 0x18e86e000 - 0x18e964fff CoreUtils arm64 <6aef56c16f8e38cb84515ad30106d4d4> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
33
+ 0x18ea7f000 - 0x18eaa1fff MediaServices arm64 <76ac3ce527e231b0b3a523213156b10d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
34
+ 0x18eaa2000 - 0x18ebcefff MediaRemote arm64 <b1c783be5a2e3092a45991b2aa05ef67> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
35
+ 0x19117e000 - 0x191226fff iTunesStore arm64 <63a81dfaeade36eab06b4990959debed> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
36
+ 0x192946000 - 0x1929e2fff MediaPlatform arm64 <9eeb6a5ba91c3435bfabb904a15b8b26> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
37
+ 0x192a43000 - 0x192a49fff DAAPKit arm64 <94f8ec869c4034779031bedf4c31db52> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
38
+ 0x192b3b000 - 0x192e13fff MediaLibraryCore arm64 <b4cc309be3513471999aef9279d4743c> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
39
+ 0x192e15000 - 0x193093fff MusicLibrary arm64 <bfea1081897330919b884ac1359d5dee> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
40
+ 0x193958000 - 0x193ac2fff iTunesCloud arm64 <8c934a63b54f3342aca75ec524f36d28> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
41
+ 0x193ac3000 - 0x193b63fff HomeSharing arm64 <ef4d1fddd2563fa190f26c0156fd8cc9> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
42
+ 0x193cd2000 - 0x194107fff MediaPlayer arm64 <95ed93ac0daa3168bd55830e92c10621> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
43
+ 0x199a2f000 - 0x199a65fff OpenAL arm64 <334ab824e8ff3a58b20fc6f2271296d5> /System/Library/Frameworks/OpenAL.framework/OpenAL
44
+ 0x19cbb2000 - 0x19cd06fff libGLProgrammability.dylib arm64 <a2417e0e38bc351bb72a4ffd02bc93c7> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
45
+ 0x19deff000 - 0x19df02fff AGXCompilerConnection arm64 <f57bbdbd127c321cb657bbdcc08339d2> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
46
+ 0x19e4f7000 - 0x19e500fff libGPUSupportMercury.dylib arm64 <19a2e9f2ad9a3e709099416d5ef7cdc8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
47
+ 0x1a2641000 - 0x1a26c6fff AGXGLDriver arm64 <c343914b2da134c0bb365ede83a47c90> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
48
+ 0x1a28d8000 - 0x1a28ecfff libCGInterfaces.dylib arm64 <dc01f8416b033dcfb1dbbb7f40777e83> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
49
+ 0x1a3645000 - 0x1a3727fff GLEngine arm64 <807ae232d0753aebbcf9e25a965fa740> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
50
+ 0x1a6ab6000 - 0x1a6ab9fff InternationalSupport arm64 <6efcd0e042783733ac24282e37617085> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
51
+ 0x1aa7e6000 - 0x1aa817fff libclosured.dylib arm64 <56e1a40175843bda9c860bdbbcf1b0b5> /usr/lib/closure/libclosured.dylib