Skip to content

Commit 734ec5a

Browse files
committed
- reverts to java7 to avoid introducing a breaking change
1 parent dd91bd0 commit 734ec5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Thanks to everyone who has already devoted time to improving the library:
116116
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind are welcome!
117117

118118
## 7. Supported Java versions
119-
The Microsoft Graph SDK for Java library is supported at runtime for Java 8+ and [Android API revision 15](http://source.android.com/source/build-numbers.html) and greater through [desugaring](https://developer.android.com/studio/write/java8-support.html#library-desugaring).
119+
The Microsoft Graph SDK for Java library is supported at runtime for Java 7+ and [Android API revision 15](http://source.android.com/source/build-numbers.html) and greater.
120120

121121
## 8. License
122122

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ publishing {
209209
}
210210

211211
compileJava {
212-
sourceCompatibility = 1.8
213-
targetCompatibility = 1.8
212+
sourceCompatibility = 1.7
213+
targetCompatibility = 1.7
214214
}
215215

216216
def getVersionCode() {

0 commit comments

Comments
 (0)