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
https://github.com/getsentry/react-native-sentry/blob/96f09af56c6a85e1548acf6fea45be6ef3d44a07/sentry.gradle#L123-L149
What is wrong: args.push("line") add line in front of the array, but expected add into end.
args.push("line")
Details:
Gradle v4.10.2 Exec.arguments: [/Users/oleksandr.kucherenko/projects/klarna-app/clients/node_modules/@sentry/cli/bin/sentry-cli, react-native, gradle, --bundle, /Users/oleksandr.kucherenko/projects/klarna-app/clients/android/app/build/generated/assets/react/yellow/release/index.android.bundle, --sourcemap, /Users/oleksandr.kucherenko/projects/klarna-app/clients/android/app/build/generated/assets/react/yellow/release/index.android.bundle.map, --release, net.klarna.app.yellow.int-1.0.0A, --dist, 1]
How arguments array looks in Gradle v5.0:
Gradle v5.0 Exec.arguments: [net.klarna.app.yellow.int-1.0.0A, --release, /Users/oleksandr.kucherenko/projects/klarna-app/clients/android/app/build/generated/assets/react/yellow/release/index.android.bundle.map, --sourcemap, /Users/oleksandr.kucherenko/projects/klarna-app/clients/android/app/build/generated/assets/react/yellow/release/index.android.bundle, --bundle, gradle, react-native, /Users/oleksandr.kucherenko/projects/klarna-app/clients/node_modules/@sentry/cli/bin/sentry-cli, --dist, 1]
Solution:
push()
add()
insert()
The text was updated successfully, but these errors were encountered:
@HazAT ^ - can you review the PR and merge?
Sorry, something went wrong.
No branches or pull requests
https://github.com/getsentry/react-native-sentry/blob/96f09af56c6a85e1548acf6fea45be6ef3d44a07/sentry.gradle#L123-L149
What is wrong:
args.push("line")
add line in front of the array, but expected add into end.Details:
How arguments array looks in Gradle v5.0:
Solution:
push()
calls byadd()
orinsert()
The text was updated successfully, but these errors were encountered: