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
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,7 @@ Let's create a simple app that integrates PSPDFKit and uses the react-native-psp
146
146
}
147
147
```
148
148
149
-
7. PSPDFKit targets modern platforms, so you'll have to update `compileSdkVersion` and `targetSdkVersion` to at least API 25 (note **three** places to edit):
149
+
7. PSPDFKit targets modern platforms, so you'll have to update `compileSdkVersion` and `targetSdkVersion` to at least API 25 and enable MultiDex. From `YourApp/android/app/build.gradle`(note **four** places to edit):
150
150
151
151
```diff
152
152
...
@@ -158,6 +158,7 @@ Let's create a simple app that integrates PSPDFKit and uses the react-native-psp
158
158
159
159
defaultConfig {
160
160
applicationId "com.yourapp"
161
+
+ multiDexEnabled true
161
162
minSdkVersion 16
162
163
- targetSdkVersion 22
163
164
+ targetSdkVersion 25
@@ -281,7 +282,7 @@ with
281
282
282
283
1. Clone the repository. `git clone https://github.com/PSPDFKit/react-native.git`.
283
284
2. Install dependencies: run `yarn install` from `samples/Catalog` directory. (Because of a [bug](https://github.com/yarnpkg/yarn/issues/2165) you may need to clean `yarn`'s cache with `yarn cache clean` before.)
284
-
3. Add your customer portal password to `samples/Catalog/build.gradle`:
285
+
3. Add your customer portal password to `samples/Catalog/android/build.gradle`:
0 commit comments