Skip to content
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Twilio Video Android SDK binding for Xamarin

[![NuGet][nuget-img]][nuget-link]

[nuget-img]: https://img.shields.io/badge/nuget7.0.3.0-blue.svg
[nuget-img]: https://img.shields.io/badge/nuget7.0.6.0-blue.svg
[nuget-link]: https://www.nuget.org/packages/Twilio.Video.Android.XamarinBinding

## How to Build

### Twilio.Video Android 7.0.3 (December 6th, 2021)
### Twilio.Video Android 7.0.6 (February 11th, 2022)

_AndroidDexTool_ should be set to _d8_ for _TargetFrameworkVersion_ == _v9.0_ or later.
You also need ReLinker Xamarin Bindings for Android: https://github.com/xbindings/relinker-android-binding
Expand All @@ -21,9 +21,9 @@ or

Download aar/jar version you needed from https://bintray.com/twilio/releases/video-android and copy it to src\Jars. Then you will need to change res/values/values.xml and add missing \<attr format="boolean" name="overlaySurface"/> attribute if needed. And rename /src/Jars/ARR/libs/libwebrtc.jar to libwebrtc_2.jar if you are going to use Twilio.Voice SDK in you project.
```
$ unzip video-android-7.0.3.aar -d tempFolder
$ unzip video-android-7.0.6.aar -d tempFolder
# Change whatever you need
$ jar cvf video-android-7.0.3.aar -C tempFolder/ .
$ jar cvf video-android-7.0.6.aar -C tempFolder/ .
```

#### Changed properties
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions src/Twilio.Video.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<ItemGroup>
<None Include="Jars\AboutJars.txt" />
<None Include="Additions\AboutAdditions.txt" />
<LibraryProjectZip Include="Jars\video-android-7.0.3.aar" />
<LibraryProjectZip Include="Jars\video-android-7.0.6.aar" />
</ItemGroup>
<ItemGroup>
<TransformFile Include="Transforms\Metadata.xml" />
Expand All @@ -66,9 +66,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Xamarin.ReLinker">
<Version>1.4.4</Version>
</PackageReference>
<PackageReference Include="Xamarin.ReLinker" Version="1.4.4" />
<PackageReference Include="Xamarin.AndroidX.Annotation" Version="1.1.0.9" />
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="1.6.0" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.Bindings.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
4 changes: 3 additions & 1 deletion src/twilio-video.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Twilio.Video.Android.XamarinBinding</id>
<version>7.0.3.0</version>
<version>7.0.6.0</version>
<authors>twilio</authors>
<owners>twilio</owners>
<projectUrl>https://github.com/xamarin-bindings-for-twilio/TwilioVideoXamarinAndroid</projectUrl>
Expand All @@ -15,6 +15,8 @@
<tags>twilio xamarin</tags>
<dependencies>
<dependency id="Xamarin.ReLinker" version="1.4.4" />
<dependency id="Xamarin.AndroidX.Annotation" version="1.1.0.9" />
<dependency id="Xamarin.Kotlin.StdLib.Jdk8" version="1.6.0" />
</dependencies>
</metadata>
<!-- Optional 'files' node -->
Expand Down