You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* cleanup
* extractapk
# Conflicts:
# src/package.ts
* use node bundletool
* Update version to 2.6.0 in package.json and enhance AAB parsing error messages with localized strings for better user feedback.
* Refactor app-info-parser: migrate ApkParser and AppParser to TypeScript, remove deprecated apk.js and app.js files, and update import statements for consistency.
* Refactor app-info-parser: migrate utility functions to TypeScript, remove deprecated utils.js, and enhance AAB and APK parsing with improved error handling and resource mapping.
* Implement AAB upload functionality: add uploadAab command to handle AAB file uploads, including options for split management and update documentation in README files. Remove deprecated .babelrc configuration.
* Enhance AAB parsing: add localized download hint for bundletool and improve error handling in runCommand function. Refactor command execution to support stdio options.
Copy file name to clipboardExpand all lines: src/locales/en.ts
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,18 @@ export default {
2
2
addedToGitignore: 'Added {{line}} to .gitignore',
3
3
androidCrunchPngsWarning:
4
4
'The crunchPngs option of android seems not disabled (Please ignore this warning if already disabled), which may cause abnormal consumption of mobile network traffic. Please refer to https://cresc.dev/docs/getting-started#disable-crunchpngs-on-android \n',
5
+
aabOpenApksFailed: 'Failed to open generated .apks file',
6
+
aabReadUniversalApkFailed: 'Failed to read universal.apk',
7
+
aabUniversalApkNotFound: 'universal.apk not found in generated .apks',
8
+
aabBundletoolDownloadHint:
9
+
'bundletool not found. Downloading node-bundletool via npx (first run may take a while).',
10
+
aabManifestNotFound:
11
+
"AndroidManifest.xml can't be found in AAB base/manifest/",
12
+
aabParseResourcesWarning:
13
+
'[Warning] Failed to parse resources.arsc: {{error}}',
0 commit comments