File tree Expand file tree Collapse file tree 4 files changed +24
-8
lines changed
rollbar-android/src/main/java/com/rollbar/android
rollbar-java/src/test/java/com/rollbar/notifier/provider/notifier Expand file tree Collapse file tree 4 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,16 @@ To report problems or ask a question please [create an issue](https://github.com
3838
3939## Installation
4040
41+ For the most basic Java applications use:
42+
4143``` groovy
42- compile('com.rollbar:rollbar-java:1.0.0 ')
44+ compile('com.rollbar:rollbar-java:1.0.1 ')
4345```
4446
45- ## Upgrading from 0.5.4 or earlier to 1.0.0
47+ If you require direct access to the underlying API objects include ` rollbar-api ` as a dependency.
48+ For Android include ` rollbar-android:1.0.1@aar ` . For web projects include ` rollbar-web ` .
49+
50+ ## Upgrading from 0.5.4 or earlier to 1.0.0+
4651
4752This package used to be divided into five modules
4853
@@ -158,15 +163,26 @@ dependency to your pom file:
158163<dependency >
159164 <groupId >com.rollbar</groupId >
160165 <artifactId >rollbar-java</artifactId >
161- <version >1.0.0 </version >
166+ <version >1.0.1 </version >
162167</dependency >
163168</dependencies >
164169```
165170
166171### Gradle
167172
168173``` groovy
169- compile('com.rollbar:rollbar-java:1.0.0')
174+ compile('com.rollbar:rollbar-java:1.0.1')
175+ ```
176+
177+ ### Android
178+
179+ As described above, this library is split into different components that build upon each other.
180+ There is an Android specific part of the library. Therefore for Android you should use that
181+ interface which requires you to add this dependency to your build process. For example,
182+
183+ ``` groovy
184+ compile('com.rollbar:rollbar-java:1.0.1')
185+ compile('com.rollbar:rollbar-android:1.0.1@aar')
170186```
171187
172188## Usage
Original file line number Diff line number Diff line change 1- VERSION_NAME =1.0.0
1+ VERSION_NAME =1.0.1
22GROUP =com.rollbar
33
44POM_DESCRIPTION =For connecting your applications built on the JVM to Rollbar for Error Reporting
Original file line number Diff line number Diff line change 2525import java .util .concurrent .TimeUnit ;
2626
2727public class Rollbar {
28- private static final String NOTIFIER_VERSION = "1.0.0 " ;
28+ private static final String NOTIFIER_VERSION = "1.0.1 " ;
2929 private static final String ITEM_DIR_NAME = "rollbar-items" ;
3030 private static final String ANDROID = "android" ;
3131 private static final String DEFAULT_ENVIRONMENT = "production" ;
Original file line number Diff line number Diff line change 1414
1515public class NotifierProviderTest {
1616
17- static final String VERSION = "1.0.0 " ;
17+ static final String VERSION = "1.0.1 " ;
1818
1919 @ Rule
2020 public MockitoRule rule = MockitoJUnit .rule ();
@@ -42,4 +42,4 @@ public void shouldProvideTheNotifier() {
4242
4343 assertThat (result , is (expected ));
4444 }
45- }
45+ }
You can’t perform that action at this time.
0 commit comments