Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into rollbar-logback/build/SDK-351/u…
Browse files Browse the repository at this point in the history
…pdate-dependency

# Conflicts:
#	.github/workflows/ci.yml
  • Loading branch information
christianbuon committed Aug 16, 2024
2 parents 034259c + 1ad4cc0 commit 531e5f9
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 10 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ jobs:
- name: Environment info
run: |
./gradlew --version
echo ANDROID_SDK_ROOT: ${ANDROID_SDK_ROOT}
echo JAVA_HOME: ${JAVA_HOME}
java -version
javac -version
echo ANDROID_HOME: ${ANDROID_HOME}
echo ANDROID_SDK_ROOT: ${ANDROID_SDK_ROOT}
- name: Build
run: 'source ~/.jdk7_home && ./gradlew clean build'
Expand All @@ -83,6 +84,16 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Java 11 for the Android SDK Manager
uses: actions/setup-java@v1
with:
java-version: 11

- name: Install Android SDK
run: |
echo "Android SDK Manager version: `${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --version`"
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager "platforms;android-27" "build-tools;28.0.3"
- name: Set up Java 7
uses: actions/setup-java@v1
with:
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}

Expand Down
1 change: 0 additions & 1 deletion examples/rollbar-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
Expand Down
2 changes: 1 addition & 1 deletion examples/rollbar-spring-webmvc/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/rollbar-struts2-spring/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/rollbar-struts2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/rollbar-web/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.10.1-SNAPSHOT
VERSION_NAME=1.10.2-SNAPSHOT
GROUP=com.rollbar

POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting
Expand Down
3 changes: 1 addition & 2 deletions rollbar-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
Expand All @@ -11,7 +10,7 @@ buildscript {

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

apply plugin: 'com.android.library'
Expand Down

0 comments on commit 531e5f9

Please sign in to comment.