Skip to content

Commit 443a24a

Browse files
committedFeb 12, 2023
Update PSPDFKit Android bindings to version 8.5.0
1 parent 0650d7b commit 443a24a

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed
 

‎PSPDFKit.Android/PSPDFKit.Android.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<!-- <EmbeddedReferenceJar Include="Jars\okio-1.13.0.jar" /> -->
8282
</ItemGroup>
8383
<ItemGroup>
84-
<LibraryProjectZip Include="Jars\pspdfkit-8.4.1.aar" />
84+
<LibraryProjectZip Include="Jars\pspdfkit-8.5.0.aar" />
8585
</ItemGroup>
8686
<!-- <ItemGroup>
8787
<EmbeddedJar Include="Jars\YouTubeAndroidPlayerApi-1.2.2\libs\YouTubeAndroidPlayerApi.jar">

‎PSPDFKit.Android/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
2020
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
2121

22-
[assembly: AssemblyVersion ("8.4.1")]
22+
[assembly: AssemblyVersion ("8.5.0")]
2323
[assembly: LinkerSafe]
2424

2525
// The following attributes are used to specify the signing key for the assembly,

‎PSPDFKit.Android/Transforms/Metadata.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
<remove-node path="//class['Impl' = substring(substring-before(@name,'.') , string-length(substring-before(@name,'.')) - 3)]" />
1212

1313
<!-- Removes any "constructor" that any of its parameters uses any of the types contained in com.pspdfkit.internal.* -->
14-
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.l1')]" />
15-
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.ld')]" />
16-
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.qj')]" />
17-
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.x4')]" />
14+
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.n1')]" />
15+
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.od')]" />
16+
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.xj')]" />
17+
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.v4')]" />
1818
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.jni.NativeAnnotation')]" />
1919
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.jni.NativeFormField')]" />
2020
<!-- Not creating a general rule to avoid bug reported by David -->
@@ -189,6 +189,7 @@
189189
<attr path="/api/package[@name='com.pspdfkit.forms']/class[@name='FormElementConfiguration']" name="visibility">public</attr>
190190
<attr path="/api/package[@name='com.pspdfkit.signatures.signers']/class[@name='PrivateKeySigner']/method[@name='loadPrivateKey' and count(parameter)=3 and parameter[1][@type='java.lang.String'] and parameter[2][@type='com.pspdfkit.signatures.signers.InteractiveSigner.LoadingFeedbackListener'] and parameter[3][@type='com.pspdfkit.signatures.signers.PrivateKeySigner.OnPrivateKeyLoadedCallback']]" name="visibility">public</attr>
191191
<attr path="/api/package[@name='com.pspdfkit.signatures.signers']/interface[@name='PrivateKeySigner.OnPrivateKeyLoadedCallback']" name="visibility">public</attr>
192+
<attr path="/api/package[@name='com.pspdfkit.annotations']/class[@name='PolygonAnnotation']/method[@name='getLineEnds' and count(parameter)=0]" name="visibility">public</attr>
192193

193194
<attr path="/api/package[@name='com.pspdfkit.annotations.configuration']/interface[@name='StampAnnotationConfiguration.Builder']/method[@name='build']" name="managedReturn">PSPDFKit.Annotations.Configuration.IAnnotationConfiguration</attr>
194195
<attr path="/api/package[@name='com.pspdfkit.annotations.configuration']/interface[@name='FileAnnotationConfiguration.Builder']/method[@name='build']" name="managedReturn">PSPDFKit.Annotations.Configuration.IAnnotationConfiguration</attr>

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Xamarin PSPDFKit.Android Bindings
22

3-
Xamarin.Android Bindings for PSPDFKit `v8.4.1`.
3+
Xamarin.Android Bindings for PSPDFKit `v8.5.0`.
44

55
#### PSPDFKit
66

‎build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var target = Argument ("target", "Default");
55
// Nice online pom dependency explorer
66
// https://jar-download.com/
77

8-
var PSPDFKIT_VERSION = "8.4.1";
8+
var PSPDFKIT_VERSION = "8.5.0";
99
var SERVICERELEASE_VERSION = "0"; // This is combined with the PSPDFKIT_VERSION variable for the NuGet Package version
1010
var RXANDROID_VERSION = "2.1.0";
1111
var RXJAVA_VERSION = "2.2.4"; // Check Reactive-Streams if updated.

0 commit comments

Comments
 (0)
Please sign in to comment.