iOS Question Crash Release

fishwolf

Well-Known Member
Licensed User
Longtime User
I have a section of app that go to in crash without message only in release version.

when run debug mode work fine.

any suggest?
 

fishwolf

Well-Known Member
Licensed User
Longtime User
i have this problem only with version from store, if i compile in release mode with developer certificate work fine.

section that go to crash get a html page and work with string.
 
Upvote 0

fishwolf

Well-Known Member
Licensed User
Longtime User
i have remove and re-install the app, the problem is the same.

i cannot post the code, the app is very big and you cannot test without account and credit.
but the page is divide in 3 sections, 2 sections work fine, and one go to crash the application.
I suppose that the problem is the html parser, is a bit different for this section.
but i cannot find the problem if i cannot replicate the problem without the store
 
Upvote 0

Pendrush

Well-Known Member
Licensed User
Longtime User
If you have MAC, you can add your username and password into xCode organizer, and track all you crashes directly inside xCode.
 
Upvote 0

fishwolf

Well-Known Member
Licensed User
Longtime User
But in this mode i find the problem in ObjectC, right?

This problem with release version is a specific problem of B4I or in general with IOS application?

I think that the problem isn't into the code, the different of crash section are a bit lines of code (different label, different variable, but all similar)
 
Upvote 0

Pendrush

Well-Known Member
Licensed User
Longtime User
You will find where is error occurred, then you can use SRC folder, and find that line inside file b4i_classname.m, above that line is B4i source code.
For example:
B4X:
 //BA.debugLineNum = 2591;BA.debugLine="Dim Logo As ImageView";
_logo = [B4IImageViewWrapper new];
//BA.debugLineNum = 2592;BA.debugLine="Logo.Initialize("")";
[_logo Initialize:self.bi :@""];
 
Upvote 0

fishwolf

Well-Known Member
Licensed User
Longtime User
The certificate used doesn't affect the program in any way.

If you have a local Mac then you can connect the device to the Mac and monitor the logs. It should also be possible to reproduce it in Release mode with iReleaseLogger.

i have a local MAC

what is the program for monitor and log the store version?
 
Upvote 0
Top