We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Towday i get this error wtih nativescript@next and tns-android@next
No .aab found in /Volumes/data/dev/nativescript/ActiveLook/platforms/android/app/build/outputs/bundle directory.
After looking at it, it is because Gradle generate a app-release.aab and not app.aab
app-release.aab
app.aab
This can be fixed here:
nativescript-cli/lib/services/android-project-service.ts
Line 66 in 9320a1d
${constants.APP_FOLDER_NAME}-${buildMode}${constants.AAB_EXTENSION_NAME}
apk
The text was updated successfully, but these errors were encountered:
Hi @farfromrefug , Thanks for reporting this and for your effort to investigate it. Your suggestion for a solution is spot on.
We have already created a PR, addressing the issue - #4986.
Sorry, something went wrong.
@KristianDD Sorry did not see you already had the PR :P
No branches or pull requests
Towday i get this error wtih nativescript@next and tns-android@next
After looking at it, it is because Gradle generate a
app-release.aab
and notapp.aab
This can be fixed here:
nativescript-cli/lib/services/android-project-service.ts
Line 66 in 9320a1d
We need to add
${constants.APP_FOLDER_NAME}-${buildMode}${constants.AAB_EXTENSION_NAME}
like it is done with
apk
The text was updated successfully, but these errors were encountered: