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
@@ -287,15 +287,15 @@ Let's create a simple app that integrates PSPDFKit and uses the react-native-psp
287
287
}
288
288
```
289
289
290
-
8. PSPDFKit targets modern platforms, so you'll have to update `compileSdkVersion` and `targetSdkVersion` to at least API 26 and enable MultiDex. In `YourApp/android/app/build.gradle` (note **five** places to edit):
290
+
8. PSPDFKit targets modern platforms, so you'll have to update `compileSdkVersion`to at least API 28 and `targetSdkVersion` to at least API 26 and enable MultiDex. You also need to enable Java 8 support. In `YourApp/android/app/build.gradle` (note **six** places to edit):
291
291
292
292
```diff
293
293
...
294
294
android {
295
295
- compileSdkVersion 23
296
-
+ compileSdkVersion 26
296
+
+ compileSdkVersion 28
297
297
- buildToolsVersion "23.0.1"
298
-
+ buildToolsVersion "26.0.1"
298
+
+ buildToolsVersion "28.0.3"
299
299
300
300
defaultConfig {
301
301
applicationId "com.yourapp"
@@ -310,6 +310,11 @@ Let's create a simple app that integrates PSPDFKit and uses the react-native-psp
0 commit comments