Skip to content

Commit f8d2bcd

Browse files
* v1.0.7 Release - Fixed tvOS builds adding the iOS native sharing files (#73). Also updated the project to use Unity 2018.3
1 parent aae5e81 commit f8d2bcd

File tree

8 files changed

+174
-9
lines changed

8 files changed

+174
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.7] - 2021-09-16
8+
### Changed
9+
- Updated project to use 2018.4 LTS
10+
11+
### Fixed
12+
- Fixed iOS native files being added to tvOS builds (#73)
13+
714
## [1.0.6] - 2021-03-09
815
### Added
916
- Added optional mime type parameter for Android to use in the intent rather than it being hardcoded to `image/*`

Plugins/Android/src~/Unity-Native-Sharing/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22

33
ext.outputDir = "..\\.."
4-
ext.outputName = "com.UnityNative.Sharing-v1.0.6"
4+
ext.outputName = "com.UnityNative.Sharing-v1.0.7"
55

66
android {
77
compileSdkVersion 28

Plugins/iOS/UnityNative_Sharing.h.meta

Lines changed: 87 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugins/iOS/UnityNative_Sharing.mm.meta

Lines changed: 73 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ Examples can be found at [Unity-Native-Example-Project](https://github.com/Nicho
3434

3535
<h1 align="center">🛠️ Installation 🛠️</h1>
3636

37+
This was built and tested in Unity 2018.4 LTS, but should still work down to Unity 2018.2
38+
3739
<h2 align="center">Unity 2019.3 or later (Using Unity Package Manager)</h2>
3840

3941
![AddPackageFromGitURL](Images~/AddPackageFromGitURL.PNG)
4042

41-
`https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.6`
43+
`https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.7`
4244

4345
<h2 align="center">Unity 2018.3 or later (Using Unity Package Manager)</h2>
4446

@@ -50,7 +52,7 @@ Add this to the projects `manifest.json`
5052

5153
To update the package, change suffix `#{version}` to the target version.
5254

53-
* e.g. `"com.unitynative.sharing" : "https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.6"`
55+
* e.g. `"com.unitynative.sharing" : "https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.7"`
5456

5557
<h2 align="center">Unity 2018.3 or later (Using OpenUPM)</h2>
5658

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "com.unitynative.sharing",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"displayName": "Unity-Native-Sharing",
55
"description": "A Unity plugin to open native sharing dialogs on iOS and Android",
6-
"unity": "2018.3",
6+
"unity": "2018.4",
77
"dependencies": {
88
"com.unity.modules.screencapture": "1.0.0",
99
"com.unity.modules.imageconversion": "1.0.0"

0 commit comments

Comments
 (0)