Skip to content

Commit 78bb889

Browse files
committed
Update README
1 parent 0cce848 commit 78bb889

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Studyplus-Android-SDK
22

33
[![](https://jitpack.io/v/studyplus/Studyplus-Android-SDK.svg)](https://jitpack.io/#studyplus/Studyplus-Android-SDK)
4+
![Unit test](https://github.com/studyplus/Studyplus-Android-SDK/workflows/Unit%20test/badge.svg)
45

56
## Requirements
67

@@ -24,7 +25,7 @@ Add it in your root build.gradle at the end of repositories:
2425

2526
```groovy
2627
dependencies {
27-
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.6.0'
28+
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.6.2'
2829
}
2930
```
3031

@@ -59,6 +60,12 @@ override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)
5960
}
6061
```
6162

63+
### Unauth
64+
65+
```kotlin
66+
Studyplus.instance.cancelAuth(this@MainActivity)
67+
```
68+
6269
### Post a record to Studyplus
6370

6471
Create a record and post.
@@ -94,7 +101,7 @@ Studyplus.instance.postRecord(this@MainActivity, record,
94101
```text
95102
MIT License
96103
97-
Copyright (c) 2019 Studyplus, Inc.
104+
Copyright (c) 2020 Studyplus, Inc.
98105
99106
Permission is hereby granted, free of charge, to any person obtaining a copy
100107
of this software and associated documentation files (the "Software"), to deal

sdk-example-java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
implementation "androidx.appcompat:appcompat:$versions.appcompat"
3838
implementation "androidx.constraintlayout:constraintlayout:$versions.constraintLayout"
3939

40-
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.5.1'
40+
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.6.2'
4141

4242
testImplementation "junit:junit:$versions.junit"
4343
androidTestImplementation 'androidx.test.ext:junit:1.1.1'

sdk-example-kt/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation "androidx.appcompat:appcompat:$versions.appcompat"
3737
implementation "androidx.constraintlayout:constraintlayout:$versions.constraintLayout"
3838

39-
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.5.1'
39+
implementation 'com.github.studyplus:Studyplus-Android-SDK:2.6.2'
4040

4141
testImplementation "junit:junit:$versions.junit"
4242
androidTestImplementation 'androidx.test.ext:junit:1.1.1'

0 commit comments

Comments
 (0)