Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0161c77
feat: Update android min sdk from 16 to 21 and target/compile sdk fro…
buongarzoni Dec 8, 2024
69df96d
feat: Add ANR detectors
buongarzoni Jan 13, 2025
6ae33b7
feat: send non main threads as extra information for api >= 30
buongarzoni Jan 26, 2025
bc3f27a
refactor: remove unnecessary code
buongarzoni Jan 26, 2025
b8cb8f0
refactor: don't launch thread if listener is null
buongarzoni Jan 26, 2025
957a0d8
refactor: remove unnecessary attribute for Line
buongarzoni Jan 26, 2025
91ab622
refactor: do not create watchdog or run it if anr listener is null
buongarzoni Feb 2, 2025
a0082ff
test: add Tests for Watchdog
buongarzoni Feb 2, 2025
c69563e
test: remove unused imports
buongarzoni Feb 2, 2025
c3ed238
test: set parameters as private
buongarzoni Feb 10, 2025
dcac7ab
test: Add tests for HistoricalAnrDetector
buongarzoni Feb 10, 2025
61dfa33
refactor: Initialize ThreadParser as expected
buongarzoni Feb 10, 2025
6c0848e
feat: Add AndroidConfiguration to tun on/off ANR detectors implementa…
buongarzoni Feb 16, 2025
64c5f4e
Merge branch 'master' into feat/SDK-347/anr-report
buongarzoni May 18, 2025
da109a7
refactor: use RollbarThread to send ANR information
buongarzoni May 26, 2025
c1a5df0
feat(HistoricalAnrDetector): save last anr timestamp
buongarzoni May 28, 2025
a349bf3
build: downgrade compile and target sdk to 30, to test CI
buongarzoni May 29, 2025
c8e8c77
test: delete tests to validate if CI completes
buongarzoni May 29, 2025
1c23f8b
fix: lint
buongarzoni May 29, 2025
5c94db7
fix(RollbarThrowableWrapper): lint
buongarzoni May 29, 2025
978c831
fix(RollbarThrowableWrapper): lint
buongarzoni May 29, 2025
7000260
chore: add new method information in revapi file
buongarzoni May 29, 2025
073a470
build(android-example): migrate old libs to AndroidX
buongarzoni May 29, 2025
257f738
build: update compile and target sdk to 32
buongarzoni Jun 1, 2025
d044fa3
build: downgrade compile and target sdk to 31
buongarzoni Jun 1, 2025
ceac2ac
Revert "test: delete tests to validate if CI completes"
buongarzoni Jun 1, 2025
6feb4fc
refactor: set HistoricalAnrDetector File for Anr timestamps by constr…
buongarzoni Jun 12, 2025
20e0876
build: downgrade compile and target sdk to 30
buongarzoni Jun 12, 2025
9edd8b8
refactor: remove LockReason
buongarzoni Jun 16, 2025
caf072f
refactor: simplify getStackTraceElements method
buongarzoni Jun 16, 2025
afdbac4
refactor: remove Line and Lines, use a List<String> instead
buongarzoni Jun 16, 2025
a4b1d3c
refactor: remove LockReason regex patterns
buongarzoni Jun 16, 2025
54c8550
refactor: improve test coverage
buongarzoni Jun 16, 2025
2af7aad
bump: target sdk to 33
buongarzoni Jun 23, 2025
8578bef
build: exclude android module from java 8 build
buongarzoni Jun 23, 2025
0b247f7
bump: update compile sdk to 33
buongarzoni Jun 23, 2025
a374570
build: exclude all Android tasks from java 8 build
buongarzoni Jun 23, 2025
6ebac2e
Merge branch 'master' into feat/SDK-354/bump-android-target-sdk
buongarzoni Jun 27, 2025
6c096f9
temporary because of this issue https://github.com/nebula-plugins/neb…
buongarzoni Jun 27, 2025
a893e5b
build: exclude android and android example modules from java 8 build
buongarzoni Jun 27, 2025
fcc7eb2
revert excluding android modules
buongarzoni Jun 27, 2025
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
4 changes: 2 additions & 2 deletions examples/rollbar-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ buildscript {
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
compileSdkVersion 33
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.rollbar.example.android"
minSdkVersion 21
// FIXME: Pending further discussion
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 30
targetSdkVersion 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down
4 changes: 2 additions & 2 deletions rollbar-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ apply from: "$rootDir/gradle/release.gradle"
apply from: "$rootDir/gradle/android.quality.gradle"

android {
compileSdkVersion 30
compileSdkVersion 33
buildToolsVersion '30.0.3' // Going above here requires bumping the AGP to version 4+

defaultConfig {
minSdkVersion 21
// FIXME: Pending further discussion
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 30
targetSdkVersion 33
consumerProguardFiles 'proguard-rules.pro'
manifestPlaceholders = [notifierVersion: VERSION_NAME]
}
Expand Down
3 changes: 3 additions & 0 deletions rollbar-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ buildscript {
dependencies {
classpath "com.netflix.nebula:nebula-project-plugin:3.4.0"
}
configurations.classpath {
resolutionStrategy.force 'com.netflix.nebula:nebula-gradle-interop:2.3.0'
}
}

apply plugin: "nebula.integtest"
Expand Down
3 changes: 3 additions & 0 deletions rollbar-reactive-streams/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ buildscript {
dependencies {
classpath "com.netflix.nebula:nebula-project-plugin:3.4.0"
}
configurations.classpath {
resolutionStrategy.force 'com.netflix.nebula:nebula-gradle-interop:2.3.0'
}
}

apply plugin: "nebula.integtest"
Expand Down
Loading