Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

[app-update] Copy metadata from original "core" package. #904

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -725,15 +725,15 @@
"groupId": "com.google.android.play",
"artifactId": "app-update",
"version": "2.1.0",
"nugetVersion": "2.1.0.9",
"nugetVersion": "2.1.0.10",
"nugetId": "Xamarin.Google.Android.Play.App.Update",
"dependencyOnly": false
},
{
"groupId": "com.google.android.play",
"artifactId": "app-update-ktx",
"version": "2.1.0",
"nugetVersion": "2.1.0.9",
"nugetVersion": "2.1.0.10",
"nugetId": "Xamarin.Google.Android.Play.App.Update.Ktx",
"dependencyOnly": false
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
<metadata>
<metadata>
<!--
https://github.com/PatGet/XamarinPlayCoreUpdater/pull/20/

Removing StateUpdatedListener implementation from InstallStateUpdatedListener interface
and making proper onStateUpdate method mapping where StateT is InstallState
-->
<remove-node
path="/api/package[@name='com.google.android.play.core.install']/interface[@name='InstallStateUpdatedListener']/implements[contains(@name,'StateUpdatedListener')]"
/>
<add-node
path="/api/package[@name='com.google.android.play.core.install']/interface[@name='InstallStateUpdatedListener']"
>
<method
visibility="public" static="false" abstract="true" return="void" name="onStateUpdate"
deprecated="not deprecated" final="false" bridge="false" native="false"
synchronized="false" synthetic="false"
>
<parameter
type="com.google.android.play.core.install.InstallState"
name="state"
/>
</method>
</add-node>
</metadata>