|
@@ -43,6 +43,16 @@ Add the Maven repository
|
43
|
43
|
`https://github.com/jitsi/jitsi-maven-repository/raw/master/releases` and the
|
44
|
44
|
dependency `org.jitsi.react:jitsi-meet-sdk:1.9.0` into your `build.gradle`.
|
45
|
45
|
|
|
46
|
+Add Java 1.8 compatibility support to your project by adding the following lines
|
|
47
|
+into your `build.gradle` file:
|
|
48
|
+
|
|
49
|
+```
|
|
50
|
+compileOptions {
|
|
51
|
+ sourceCompatibility JavaVersion.VERSION_1_8
|
|
52
|
+ targetCompatibility JavaVersion.VERSION_1_8
|
|
53
|
+}
|
|
54
|
+```
|
|
55
|
+
|
46
|
56
|
## API
|
47
|
57
|
|
48
|
58
|
Jitsi Meet SDK is an Android library which embodies the whole Jitsi Meet
|