Skip to content

nini22P/fnps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ff2425e · Mar 9, 2025

History

49 Commits
Dec 26, 2024
Mar 2, 2025
Feb 16, 2025
Feb 15, 2025
Mar 9, 2025
Feb 17, 2025
Feb 21, 2025
Feb 15, 2025
Feb 17, 2025
Oct 6, 2024
Feb 3, 2025
Oct 6, 2024
Oct 6, 2024
Mar 2, 2025
Oct 6, 2024
Oct 14, 2024
Mar 2, 2025
Mar 9, 2025

Repository files navigation

FNPS

Flutter NoPayStation client

Building

First add .env file

PSV_GAMES_URL=
PSV_DLCS_URL=
PSV_THEMES_URL=
PSV_UPDATES_URL=
PSV_DEMOS_URL=
PSP_GAMES_URL=
PSP_DLCS_URL=
PSP_THEMES_URL=
PSP_UPDATES_URL=
PSM_GAMES_URL=
PSX_GAMES_URL=
PS3_GAMES_URL=
PS3_DLCS_URL=
PS3_THEMES_URL=
PS3_DEMOS_URL=
HMAC_KEY=

Android

Open android/ folder on Android studio, select build -> Generate Signed Bundle or APK -> APK, create a keystore on android/ folder.

And create key.properties file on android/ folder.

storePassword=<paaaword>
keyPassword=<password>
keyAlias=<alias>
storeFile=D:/xxx/fnps/android/keystore.jks

Open shell, run

flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
flutter build apk

Windows

flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
flutter build windows

Thanks and References