Skip to content
Open
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
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<meta-data
android:name="io.sentry.dsn"
android:value="https://3d2ac63d6e1a4c6e9214443678f119a3@sandbox-mirror.sentry.gg/1" />
android:value="https://3d2ac63d6e1a4c6e9214443678f119a3@o87286.ingest.sentry.io/1801383" />
<meta-data
android:name="io.sentry.debug"
android:value="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
@SuppressLint("VisibleForTests")
private SentryOptions createOptions(final @NotNull Context context) {
SentryOptions options = new SentryOptions();
options.setDsn("https://3d2ac63d6e1a4c6e9214443678f119a3@sandbox-mirror.sentry.gg/1");
options.setDsn("https://3d2ac63d6e1a4c6e9214443678f119a3@o87286.ingest.sentry.io/1801383");

Check warning on line 65 in app/src/main/java/com/example/vu/android/InitContentProvider.java

View check run for this annotation

Codecov / codecov/patch

app/src/main/java/com/example/vu/android/InitContentProvider.java#L65

Added line #L65 was not covered by tests
options.setCacheDirPath(new File(context.getCacheDir(), "sentry").getAbsolutePath());
return options;
}
Expand Down