1
0
mirror of git://f0xx.org/ac/ac-mobile-android synced 2026-07-29 01:47:35 +03:00

mobile: default crash upload URL via BackendEndpoints /issues/

Point DEFAULT_UPLOAD_URL at canonical issues API path instead of legacy /crashes/.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-06-23 17:07:40 +02:00
parent bfb605ba35
commit 4daefd7dd0

View File

@@ -1,5 +1,7 @@
package com.foxx.androidcast.crash;
import com.foxx.androidcast.network.BackendEndpoints;
/*********************************************************************
* CrashSettings.java
* Created at: Wed 20 May 2026 14:31:55 +0200
@@ -13,8 +15,7 @@ package com.foxx.androidcast.crash;
**********************************************************************/
/** Crash reporter tuning from {@code settings.json} → {@code crash} (overrides app defaults). */
public final class CrashSettings {
public static final String DEFAULT_UPLOAD_URL =
"https://apps.f0xx.org/app/androidcast_project/issues/api/upload";
public static final String DEFAULT_UPLOAD_URL = BackendEndpoints.UPLOAD_URL;
public final boolean enabled;
public final String uploadUrl;