mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 19:57:52 +01:00
73 lines
4.1 KiB
Diff
73 lines
4.1 KiB
Diff
diff --git a/node_modules/react-native-pdf/android/.gradle/5.6.1/fileChanges/last-build.bin b/node_modules/react-native-pdf/android/.gradle/5.6.1/fileChanges/last-build.bin
|
|
deleted file mode 100644
|
|
index f76dd23..0000000
|
|
Binary files a/node_modules/react-native-pdf/android/.gradle/5.6.1/fileChanges/last-build.bin and /dev/null differ
|
|
diff --git a/node_modules/react-native-pdf/android/.gradle/5.6.1/fileHashes/fileHashes.lock b/node_modules/react-native-pdf/android/.gradle/5.6.1/fileHashes/fileHashes.lock
|
|
deleted file mode 100644
|
|
index 52d8866..0000000
|
|
Binary files a/node_modules/react-native-pdf/android/.gradle/5.6.1/fileHashes/fileHashes.lock and /dev/null differ
|
|
diff --git a/node_modules/react-native-pdf/android/.gradle/5.6.1/gc.properties b/node_modules/react-native-pdf/android/.gradle/5.6.1/gc.properties
|
|
deleted file mode 100644
|
|
index e69de29..0000000
|
|
diff --git a/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
|
|
deleted file mode 100644
|
|
index 1508dc9..0000000
|
|
Binary files a/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock and /dev/null differ
|
|
diff --git a/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/cache.properties b/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/cache.properties
|
|
deleted file mode 100644
|
|
index f4a32a7..0000000
|
|
--- a/node_modules/react-native-pdf/android/.gradle/buildOutputCleanup/cache.properties
|
|
+++ /dev/null
|
|
@@ -1,2 +0,0 @@
|
|
-#Sat Oct 12 21:44:37 CST 2019
|
|
-gradle.version=5.6.1
|
|
diff --git a/node_modules/react-native-pdf/android/.gradle/vcs-1/gc.properties b/node_modules/react-native-pdf/android/.gradle/vcs-1/gc.properties
|
|
deleted file mode 100644
|
|
index e69de29..0000000
|
|
diff --git a/node_modules/react-native-pdf/android/build.gradle b/node_modules/react-native-pdf/android/build.gradle
|
|
index 3dfe1dc..70ef9da 100644
|
|
--- a/node_modules/react-native-pdf/android/build.gradle
|
|
+++ b/node_modules/react-native-pdf/android/build.gradle
|
|
@@ -126,6 +126,6 @@ dependencies {
|
|
// The repo from zacharee is based on PdfiumAndroidKt, a much newer fork of PdfiumAndroid, with better maintenance and updated native libraries.
|
|
implementation 'com.github.zacharee:AndroidPdfViewer:4.0.1'
|
|
// Depend on PdfiumAndroidKt directly so this can be updated independently of AndroidPdfViewer as updates are provided.
|
|
- implementation 'io.legere:pdfiumandroid:1.0.24'
|
|
+ implementation 'io.legere:pdfiumandroid:1.0.32'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
}
|
|
diff --git a/node_modules/react-native-pdf/android/src/main/java/org/wonday/pdf/PdfView.java b/node_modules/react-native-pdf/android/src/main/java/org/wonday/pdf/PdfView.java
|
|
index 7b7a125..361924b 100644
|
|
--- a/node_modules/react-native-pdf/android/src/main/java/org/wonday/pdf/PdfView.java
|
|
+++ b/node_modules/react-native-pdf/android/src/main/java/org/wonday/pdf/PdfView.java
|
|
@@ -12,6 +12,8 @@ import java.io.File;
|
|
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
+import android.os.Handler;
|
|
+import android.os.Looper;
|
|
import android.util.SizeF;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
@@ -105,7 +107,7 @@ public class PdfView extends PDFView implements OnPageChangeListener,OnLoadCompl
|
|
TopChangeEvent tce = new TopChangeEvent(surfaceId, getId(), event);
|
|
|
|
if (dispatcher != null) {
|
|
- dispatcher.dispatchEvent(tce);
|
|
+ new Handler(Looper.getMainLooper()).postDelayed(() -> dispatcher.dispatchEvent(tce), 10);
|
|
}
|
|
|
|
// ReactContext reactContext = (ReactContext)this.getContext();
|
|
diff --git a/node_modules/react-native-pdf/index.js b/node_modules/react-native-pdf/index.js
|
|
index 56df005..dd14412 100644
|
|
--- a/node_modules/react-native-pdf/index.js
|
|
+++ b/node_modules/react-native-pdf/index.js
|
|
@@ -364,7 +364,6 @@ export default class Pdf extends Component {
|
|
}
|
|
|
|
_onChange = (event) => {
|
|
-
|
|
let message = event.nativeEvent.message.split('|');
|
|
//__DEV__ && console.log("onChange: " + message);
|
|
if (message.length > 0) {
|