Skip to content

Commit

Permalink
Update PSPDFKit Android bindings to version 8.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dalexsoto committed Feb 12, 2023
1 parent 0650d7b commit 443a24a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion PSPDFKit.Android/PSPDFKit.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<!-- <EmbeddedReferenceJar Include="Jars\okio-1.13.0.jar" /> -->
</ItemGroup>
<ItemGroup>
<LibraryProjectZip Include="Jars\pspdfkit-8.4.1.aar" />
<LibraryProjectZip Include="Jars\pspdfkit-8.5.0.aar" />
</ItemGroup>
<!-- <ItemGroup>
<EmbeddedJar Include="Jars\YouTubeAndroidPlayerApi-1.2.2\libs\YouTubeAndroidPlayerApi.jar">
Expand Down
2 changes: 1 addition & 1 deletion PSPDFKit.Android/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion ("8.4.1")]
[assembly: AssemblyVersion ("8.5.0")]
[assembly: LinkerSafe]

// The following attributes are used to specify the signing key for the assembly,
Expand Down
9 changes: 5 additions & 4 deletions PSPDFKit.Android/Transforms/Metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<remove-node path="//class['Impl' = substring(substring-before(@name,'.') , string-length(substring-before(@name,'.')) - 3)]" />

<!-- Removes any "constructor" that any of its parameters uses any of the types contained in com.pspdfkit.internal.* -->
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.l1')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.ld')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.qj')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.x4')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.n1')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.od')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.xj')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.v4')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.jni.NativeAnnotation')]" />
<remove-node path="//constructor/parameter[contains(@type, 'com.pspdfkit.internal.jni.NativeFormField')]" />
<!-- Not creating a general rule to avoid bug reported by David -->
Expand Down Expand Up @@ -189,6 +189,7 @@
<attr path="/api/package[@name='com.pspdfkit.forms']/class[@name='FormElementConfiguration']" name="visibility">public</attr>
<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>
<attr path="/api/package[@name='com.pspdfkit.signatures.signers']/interface[@name='PrivateKeySigner.OnPrivateKeyLoadedCallback']" name="visibility">public</attr>
<attr path="/api/package[@name='com.pspdfkit.annotations']/class[@name='PolygonAnnotation']/method[@name='getLineEnds' and count(parameter)=0]" name="visibility">public</attr>

<attr path="/api/package[@name='com.pspdfkit.annotations.configuration']/interface[@name='StampAnnotationConfiguration.Builder']/method[@name='build']" name="managedReturn">PSPDFKit.Annotations.Configuration.IAnnotationConfiguration</attr>
<attr path="/api/package[@name='com.pspdfkit.annotations.configuration']/interface[@name='FileAnnotationConfiguration.Builder']/method[@name='build']" name="managedReturn">PSPDFKit.Annotations.Configuration.IAnnotationConfiguration</attr>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Xamarin PSPDFKit.Android Bindings

Xamarin.Android Bindings for PSPDFKit `v8.4.1`.
Xamarin.Android Bindings for PSPDFKit `v8.5.0`.

#### PSPDFKit

Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var target = Argument ("target", "Default");
// Nice online pom dependency explorer
// https://jar-download.com/

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

0 comments on commit 443a24a

Please sign in to comment.