Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/add-og-images.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-console */
/**
* Script to automatically add og_image frontmatter to all MDX files that contain images.
* This script:
Expand Down
1 change: 1 addition & 0 deletions scripts/remove_sentry_domain.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
/* eslint-disable no-console */
/**
* Script to remove 'https://docs.sentry.io/' domain from URLs in MDX files.
*
Expand Down
10 changes: 7 additions & 3 deletions src/components/gradleUploadInstructions.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import {Fragment} from 'react';
import Image from 'next/image';
import Link from 'next/link';

import {CodeBlock} from './codeBlock';
import {CodeTabs} from './codeTabs';
Expand All @@ -24,9 +26,9 @@ export function GradleUploadInstructions({feature}: Props) {
<ol>
<li>
Configure the{' '}
<a href="/platforms/android/configuration/gradle/">
<Link href="/platforms/android/configuration/gradle/">
Sentry Android Gradle plugin
</a>{' '}
</Link>{' '}
with at least version <code>6.0.0-rc.1</code>
</li>

Expand Down Expand Up @@ -67,10 +69,12 @@ export function GradleUploadInstructions({feature}: Props) {
After an upload has successfully processed, confirm the metadata is correct in
the Sentry UI
</p>
<img
<Image
src="/platforms/android/build-distribution/images/android-metadata.png"
alt="Upload metadata"
style={{maxWidth: '400px'}}
width={400}
height={300}
/>
</li>
</ol>
Expand Down
Loading