App Center Crashes will automatically generate a crash log every time your app crashes. The log is first written to the device's storage and when the user starts the app again, the crash report will be sent to App Center. Collecting crashes works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain valuable information for you to help fix the crash.
- AppCenterCrashes.framework
Plus ones required for ios-core module:
- AppCenter.framework
<config>
...
<frameworkPaths>
<path>libs</path> <!-- path where AppCenterCrashes.framework is located -->
</frameworkPaths>
</config>
Add the following dependency to your build.gradle
:
dependencies {
... other dependencies ...
compile "io.github.dkimitsa.robovm:robopods-appcenter-crashes-ios:$altpodsVersion"
}