Skip to content

Commit

Permalink
- Updated the AndroidManifest.xml to use the AndroidX file provider, …
Browse files Browse the repository at this point in the history
…as i tested on an Android 8 phone this didn't appear as an issue for me

- Removed the roadmap from the README and converted the main ones into issues
- Bumped the version number to v1.0.4
  • Loading branch information
NicholasSheehan committed Jun 25, 2020
1 parent 99e2ff4 commit d381756
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.4] - 2020-06-25
### Fixed
- AAR `AndroidManifest.xml` now used the AndroidX file provider

### Removed
- Removed the `Roadmap` and converted them all into issues for easier tracking

## [1.0.3] - 2020-04-15
### Changed
- Fixed inconsistent share dialog text
Expand Down
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Plugins/Android/src~/Unity-Native-Sharing/build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

ext.outputDir = "..\\.."
ext.outputName = "com.UnityNative.Sharing-v1.0.2"
ext.outputName = "com.UnityNative.Sharing-v1.0.4"

android {
compileSdkVersion 28
Expand Down
Expand Up @@ -2,7 +2,7 @@
package="com.UnityNative.Sharing">
<application >
<provider
android:name="android.support.v4.content.FileProvider"
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
Expand Down
15 changes: 2 additions & 13 deletions README.md
Expand Up @@ -32,7 +32,7 @@ Examples can be found at [Unity-Native-Example-Project](https://github.com/Nicho

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

`https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.3`
`https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.4`

#### For `Unity 2018.3` or later (Using OpenUPM) [![openupm](https://img.shields.io/npm/v/com.unitynative.sharing?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.unitynative.sharing/)

Expand All @@ -50,7 +50,7 @@ Add this to the projects `manifest.json`

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

* e.g. `"com.unitynative.sharing" : "https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.3"`
* e.g. `"com.unitynative.sharing" : "https://github.com/NicholasSheehan/Unity-Native-Sharing.git#v1.0.4"`

#### For `Unity 2018.2`
`Unity 2018.2` supports embedded packages.
Expand All @@ -77,17 +77,6 @@ Twitter | ✔ | ✔ | ✔
Discord | ✔ | ✔ | ✔
Slack | ✔ | ✔ | ✔

## Roadmap
* Look into email sharing
* Look into video sharing
* Sharing multiple files
* Sharing Links w/ Text
* Add screenshots to make the README look more juicy
* Create CREDITS.md where contributors can add their names
* Create COMPATIBILITY.md which will record the compatibility of an app's ability to share
* Create SHOWREEL.md where games that use the plugin can be shown off
* Convert the bullet points in the roadmap into GitHub issues so that other developers can pick them up

## Platform Notes
#### Android
The Android plugin requires `androidx.appcompat:appcompat:1.1.0` to run.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "com.unitynative.sharing",
"version": "1.0.3",
"version": "1.0.4",
"displayName": "Unity-Native-Sharing",
"description": "A Unity plugin to open native sharing dialogs on iOS and Android",
"unity": "2018.3",
Expand Down

0 comments on commit d381756

Please sign in to comment.