Removed game settings from crash report, not very helpful

This commit is contained in:
Yair Morgenstern
2020-01-03 15:20:38 +02:00
parent ca5cc57315
commit 9907e4429c
4 changed files with 5 additions and 8 deletions

View File

@ -9,7 +9,7 @@ class AndroidLauncher : AndroidApplication() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val config = AndroidApplicationConfiguration().apply { useImmersiveMode = true }
val game = UncivGame(BuildConfig.VERSION_NAME, UncivCrashReportSender(this))
val game = UncivGame(BuildConfig.VERSION_NAME, CrashReportSenderAndroid(this))
initialize(game, config)
}
}