Skip to content

Commit

Permalink
buildRelease Release instead of Debug ^^'
Browse files Browse the repository at this point in the history
  • Loading branch information
error7404 committed May 29, 2024
1 parent 02b52b8 commit b27ccd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ declare module '@env' {
export const ANILIST_CLIENT_ID: string;
export const GIT_HASH: string;
export const RELEASE_DATE: string;
export const BUILD_TYPE: string;
export const BUILD_TYPE: 'Debug' | 'Release' | 'Beta' | 'Github Actions';
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "react-native start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"",
"buildRelease": "npm run prestart && cd android && ./gradlew clean && ./gradlew assembleRelease",
"buildRelease": "node scripts/setEnvFile.cjs Release && cd android && ./gradlew clean && ./gradlew assembleRelease",
"open": "open ./android/app/build/outputs/apk/release/",
"strings": "node scripts/stringTypes.cjs",
"prepare": "husky install"
Expand Down

0 comments on commit b27ccd3

Please sign in to comment.