You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
protectedvoid onActivityResult(int requestCode, int resultCode, Intent data) {
42
+
CertificationStore.create(context).update(data);
43
+
}
44
+
```
45
+
46
+
### Post a record to Studyplus
47
+
48
+
Create ApiRequest and send it with ApiClient.
49
+
50
+
```java
51
+
ApiRequest request =StudyRecordPostRequest.of(
52
+
newStudyRecordBuilder()
53
+
.setComment("perfect!")
54
+
.setAmountTotal(30)
55
+
.setDurationSeconds(2*60)
56
+
.build()
57
+
);
58
+
StudyplusApi.getClient(context).send(request);
59
+
```
60
+
61
+
### More
25
62
26
-
Coming Soon
63
+
* See also [actual examples](https://github.com/studyplus/Studyplus-Android-SDK/blob/master/SDKExample/src/main/java/jp/studyplus/android/sdk/example/ExampleActivity.java).
0 commit comments