mirror of
git://f0xx.org/ac/ac-mobile-android
synced 2026-07-29 03:37:51 +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:
@@ -1,5 +1,7 @@
|
|||||||
package com.foxx.androidcast.crash;
|
package com.foxx.androidcast.crash;
|
||||||
|
|
||||||
|
import com.foxx.androidcast.network.BackendEndpoints;
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* CrashSettings.java
|
* CrashSettings.java
|
||||||
* Created at: Wed 20 May 2026 14:31:55 +0200
|
* 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). */
|
/** Crash reporter tuning from {@code settings.json} → {@code crash} (overrides app defaults). */
|
||||||
public final class CrashSettings {
|
public final class CrashSettings {
|
||||||
public static final String DEFAULT_UPLOAD_URL =
|
public static final String DEFAULT_UPLOAD_URL = BackendEndpoints.UPLOAD_URL;
|
||||||
"https://apps.f0xx.org/app/androidcast_project/issues/api/upload";
|
|
||||||
|
|
||||||
public final boolean enabled;
|
public final boolean enabled;
|
||||||
public final String uploadUrl;
|
public final String uploadUrl;
|
||||||
|
|||||||
Reference in New Issue
Block a user