From 1d059f7c27ff07a70b289cf783d9963c33019c06 Mon Sep 17 00:00:00 2001 From: Stian Jensen Date: Fri, 17 Oct 2025 00:27:56 +0200 Subject: [PATCH] Update podspec source to use Git repository This avoids an issue where the computed checksum of the podspec is different on every system, preventing the sharing of a deterministic Podfile.lock in a team of more than one person. This fixes https://github.com/regulaforensics/react-native-document-reader/issues/17 --- RNDocumentReaderApi.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNDocumentReaderApi.podspec b/RNDocumentReaderApi.podspec index 5d4fc1b..96306ee 100644 --- a/RNDocumentReaderApi.podspec +++ b/RNDocumentReaderApi.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.authors = { 'RegulaForensics' => 'support@regulaforensics.com' } s.homepage = 'https://regulaforensics.com' - s.source = { :http => 'file:' + __dir__ } + s.source = { :git => "https://github.com/regulaforensics/react-native-document-reader.git"} s.ios.deployment_target = '13.0' s.source_files = "ios/*.{h,m}" s.dependency 'DocumentReader', '8.3.5107'