Skip to content
New issue

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

Feat: Support for Sentry Replay #281

Merged
merged 13 commits into from
Jan 10, 2023
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@ captures/

# yalc
yalc.lock

android/gradle/wrapper/gradle-wrapper.properties
example/ionic-angular/android/capacitor.settings.gradle
example/ionic-angular/android/app/capacitor.build.gradle
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@

### Features

- Support for Sentry Replay ([#281](https://github.com/getsentry/sentry-capacitor/pull/281))
- Add sibling check ([#248](https://github.com/getsentry/sentry-capacitor/pull/248))

### Fixes

- Removed JCenter reference ([#281](https://github.com/getsentry/sentry-capacitor/pull/281))
- Avoid duplicating Breadcrumbs on Android ([#254](https://github.com/getsentry/sentry-capacitor/pull/254))

### Dependencies

- Bump Sentry JavaScript SDK to `7.24.2` ([#277](https://github.com/getsentry/sentry-capacitor/pull/277))
- [changelog](https://github.com/getsentry/sentry-javascript/releases/tag/7.24.2)
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.13.0...7.24.2)
- Bump Sentry JavaScript SDK to `7.25.0` ([#281](https://github.com/getsentry/sentry-capacitor/pull/281))
- [changelog](https://github.com/getsentry/sentry-javascript/releases/tag/7.25.0)
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.13.0...7.25.0)
- Bump Sentry iOS SDK to `7.30.2` ([#259](https://github.com/getsentry/sentry-capacitor/pull/259))
- [changelog](https://github.com/getsentry/sentry-cocoa/releases/tag/7.30.2)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.23.0...7.30.2)
Expand Down
5 changes: 2 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
Expand Down Expand Up @@ -44,15 +44,14 @@ android {

repositories {
google()
jcenter()
mavenCentral()
}


dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':capacitor-android')
implementation 'io.sentry:sentry-android:6.4.3'
implementation 'io.sentry:sentry-android:6.9.2-tobeupdated'//TODO
lucas-zimerman marked this conversation as resolved.
Show resolved Hide resolved
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
Expand Down