fix: change apk source

This commit is contained in:
Vitaly Gashkov
2025-08-23 21:14:56 +05:00
parent 4a2e0af73c
commit 280df47fbf
7 changed files with 124 additions and 54 deletions
+10
View File
@@ -0,0 +1,10 @@
export function extractSecrets(): Promise<{
// Crunchyroll app ID
id: string;
// Crunchyroll app secret
secret: string;
// Base64 encoded `id:secret` string
encoded: string;
// HTTP header with Basic Authorization to access Crunchyroll mobile APIs
authorization: string;
}>;