@@ -22,7 +22,7 @@ repositories {
2222
2323dependencies {
2424 // Include the sdk as a dependency
25- implementation 'com.microsoft.graph:microsoft-graph-core:3.1.6 '
25+ implementation 'com.microsoft.graph:microsoft-graph-core:3.1.10 '
2626 // This dependency is only needed if you are using the TokenCredentialAuthProvider
2727 implementation 'com.azure:azure-identity:1.11.0'
2828}
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737 <!-- Include the sdk as a dependency -->
3838 <groupId >com.microsoft.graph</groupId >
3939 <artifactId >microsoft-graph-core</artifactId >
40- <version >3.1.6 </version >
40+ <version >3.1.10 </version >
4141 <!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242 <groupId >com.azure</groupId >
4343 <artifactId >azure-identity</artifactId >
@@ -85,9 +85,9 @@ client.newCall(request).enqueue(new Callback() {
8585 @Override
8686 public void onResponse (Call call , Response response ) throws IOException {
8787 String responseBody = response. body(). string();
88- // Your processing with the response body
88+ // Your processing with the response body
8989 }
90-
90+
9191 @Override
9292 public void onFailure (Call call , IOException e ) {
9393 e. printStackTrace();
@@ -106,9 +106,9 @@ client.newCall(request).enqueue(new Callback() {
106106 @Override
107107 public void onResponse (Call call , Response response ) throws IOException {
108108 String responseBody = response. body(). string();
109- // Your processing with the response body
109+ // Your processing with the response body
110110 }
111-
111+
112112 @Override
113113 public void onFailure (Call call , IOException e ) {
114114 e. printStackTrace();
0 commit comments