Skip to content

Commit

Permalink
Fix apk upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yunusefendi52 committed Dec 2, 2024
1 parent 728bd63 commit 0107390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/manifest-parser-api.post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineEventHandler(async (event) => {
const androidManifestApk = Buffer.from(base64, 'base64')
const manifestParser = new ManifestParser(androidManifestApk, {}).parse()
const packageMetadata = {
versionCode: manifestParser.versionCode,
versionCode: `${manifestParser.versionCode}`,
versionName: manifestParser.versionName,
packageName: manifestParser.package,
}
Expand Down

0 comments on commit 0107390

Please sign in to comment.