Skip to content

Commit 53a4835

Browse files
authored
Update README.md
1 parent 994cf40 commit 53a4835

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Important ~ Migration to JFrog
22
With Bintray being sunset, we are currently in the process of moving to the use of JFrog. As a test, this is a preliminary branch of which you can use to test your applications. Please note this is not the final version as we will be doing more refactoring and updates that have long been scheduled. Should you face any problem please do not hesitate to contact us. Eventually the goal will be to have the master branch updated and using JFrog. We apologize for any inconvenience caused.
33

4-
It is important to note that for the time being the examples do not work directly with the aar library on JFrog, as such we recommend importing the ShimmerAndroidInstrumentDriver project as is currently done in all the examples we have provided.
5-
64
# JFrog Gradle Settings
7-
The gradle file for the example ShimmerBasicExamples have been updated accordingly to the following:-
5+
The gradle file for the example ShimmerBasicExample has been updated accordingly to the following:-
86

97
repositories:-
108

@@ -15,7 +13,21 @@ maven {
1513
```
1614
dependencies:-
1715
```
18-
compile(group: 'com.shimmersensing', name: 'rmshimmerdriverpc', version: '1.3')
16+
compile(group: 'com.shimmersensing', name: 'ShimmerAndroidInstrumentDriver', version: '3.0.65Beta', ext: 'aar')
17+
compile(group: 'com.shimmersensing', name: 'rmshimmerapi', version: '1.3') {
18+
// excluding org.json which is provided by Android
19+
exclude group: 'io.netty'
20+
exclude group: 'io.grpc'
21+
exclude group: 'com.google.protobuf'
22+
exclude group: 'org.apache.commons.math'
23+
}
24+
compile(group: 'com.shimmersensing', name: 'rmshimmerbtmanager', version: '1.3') {
25+
// excluding org.json which is provided by Android
26+
exclude group: 'io.netty'
27+
exclude group: 'io.grpc'
28+
exclude group: 'com.google.protobuf'
29+
exclude group: 'org.apache.commons.math'
30+
}
1931
```
2032

2133
For further info

0 commit comments

Comments
 (0)