Skip to content

Version 1.2.179 #671

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 12, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 1.2.179 - Feb 12, 2024
* Android Resolver - Added logic to automatically turn on `mainTemplate.gradle`
for new projects, and prompt users to enable it on projects that have previously
had the resolver run.

# Version 1.2.178 - Dec 20, 2023
* Added [OpenUPM support](https://openupm.com/packages/com.google.external-dependency-manager/).

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ project.ext {
// Directory for testing.
testDir = new File(scriptDirectory, "test_output")
// Version of the plugin (update this with CHANGELOG.md on each release).
pluginVersion = "1.2.178"
pluginVersion = "1.2.179"
// Directory that contains the template plugin.
// Files under this directory are copied into the staging area for the
// plugin.
Expand Down
Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

5 changes: 5 additions & 0 deletions exploded/Assets/ExternalDependencyManager/Editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 1.2.179 - Feb 12, 2024
* Android Resolver - Added logic to automatically turn on `mainTemplate.gradle`
for new projects, and prompt users to enable it on projects that have previously
had the resolver run.

# Version 1.2.178 - Dec 20, 2023
* Added [OpenUPM support](https://openupm.com/packages/com.google.external-dependency-manager/).

Expand Down

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

Binary file not shown.

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

Binary file not shown.

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

4 changes: 2 additions & 2 deletions exploded/Assets/ExternalDependencyManager/Editor/LICENSE.meta

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

30 changes: 17 additions & 13 deletions exploded/Assets/ExternalDependencyManager/Editor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ should add EDM4U as a
[package dependency](https://docs.unity3d.com/2019.3/Documentation/Manual/upm-dependencies.html)
in your package manifest (`package.json`):

```
```json
{
"dependencies": {
"com.google.external-dependency-manager": "1.2.178"
Expand Down Expand Up @@ -68,7 +68,7 @@ Check out [troubleshooting](troubleshooting-faq.md) if you need help.
EDM4U is available on
[OpenUPM](https://openupm.com/packages/com.google.external-dependency-manager/):

```
```shell
openupm add com.google.external-dependency-manager
```

Expand Down Expand Up @@ -118,7 +118,7 @@ For example, to add the Google Play Games library
(`com.google.android.gms:play-services-games` package) at version `9.8.0` to the
set of a plugin's Android dependencies:

```
```xml
<dependencies>
<androidPackages>
<androidPackage spec="com.google.android.gms:play-services-games:9.8.0">
Expand Down Expand Up @@ -147,7 +147,7 @@ package if it's not found. If your Android dependency is located on Maven
central it's possible to specify the package simply using the `androidPackage`
element:

```
```xml
<dependencies>
<androidPackages>
<androidPackage spec="com.google.api-client:google-api-client-android:1.22.0" />
Expand Down Expand Up @@ -305,7 +305,7 @@ Dependencies for iOS are added by referring to CocoaPods.

For example, to add the AdMob pod, version 7.0 or greater with bitcode enabled:

```
```xml
<dependencies>
<iosPods>
<iosPod name="Google-Mobile-Ads-SDK" version="~> 7.0" bitcodeEnabled="true"
Expand All @@ -332,9 +332,13 @@ Manager > iOS Resolver > Settings` menu.

In order to modify the generated Podfile you can create a script like this:

```
```csharp
using System.IO;

using UnityEditor;
using UnityEditor.Callbacks;
using UnityEngine;

public class PostProcessIOS : MonoBehaviour
{
// Must be between 40 and 50 to ensure that it's not overriden by Podfile generation (40) and
Expand Down Expand Up @@ -366,7 +370,7 @@ easy for plugin users to manage PM registry servers.

For example, to add a registry for plugins in the scope `com.coolstuff`:

```
```xml
<registries>
<registry name="Cool Stuff"
url="https://unityregistry.coolstuff.com"
Expand Down Expand Up @@ -765,7 +769,7 @@ For example, the following command will import the
`MyPluginProject` and export the entire Assets folder to
`MyPlugin.unitypackage`:

```
```shell
Unity -gvh_disable \
-batchmode \
-importPackage external-dependency-manager-1.2.46.0.unitypackage \
Expand All @@ -792,14 +796,14 @@ To build this plugin from source you need the following tools installed: * Unity

You can build the plugin by running the following from your shell (Linux / OSX):

```
```shell
./gradlew build

```

or Windows:

```
```shell
./gradlew.bat build
```

Expand All @@ -810,13 +814,13 @@ If Java 11 is not your default Java command, add

You can run the tests by running the following from your shell (Linux / OSX):

```
```shell
./gradlew test
```

or Windows:

```
```shell
./gradlew.bat test
```

Expand Down Expand Up @@ -862,7 +866,7 @@ For instance, by running the following command, it only runs the Unity
integration tests that does not requires GPU, but exclude tests for Android
Resolver module and iOS Resolver module.

```
```shell
./gradlew test \
-PINTERACTIVE_MODE_TESTS_ENABLED=0 \
-PINCLUDE_TEST_TYPES="Integration" \
Expand Down

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

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Assets/ExternalDependencyManager/Editor/1.2.179/Google.IOSResolver.dll
Assets/ExternalDependencyManager/Editor/1.2.179/Google.IOSResolver.pdb
Assets/ExternalDependencyManager/Editor/1.2.179/Google.JarResolver.dll
Assets/ExternalDependencyManager/Editor/1.2.179/Google.JarResolver.pdb
Assets/ExternalDependencyManager/Editor/1.2.179/Google.PackageManagerResolver.dll
Assets/ExternalDependencyManager/Editor/1.2.179/Google.PackageManagerResolver.pdb
Assets/ExternalDependencyManager/Editor/1.2.179/Google.VersionHandlerImpl.dll
Assets/ExternalDependencyManager/Editor/1.2.179/Google.VersionHandlerImpl.pdb
Assets/ExternalDependencyManager/Editor/CHANGELOG.md
Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll
Assets/ExternalDependencyManager/Editor/Google.VersionHandler.pdb
Assets/ExternalDependencyManager/Editor/LICENSE
Assets/ExternalDependencyManager/Editor/README.md

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

3 changes: 3 additions & 0 deletions export_unity_package_guids.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,8 @@
},
"1.2.178": {
"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.178": "3d894de101f34a4b9a7f42e13c7aa3a3"
},
"1.2.179": {
"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.179": "e4b2f028f2e949cfac3ba5bbb128d139"
}
}
Binary file removed external-dependency-manager-1.2.178.unitypackage
Binary file not shown.
Binary file added external-dependency-manager-1.2.179.unitypackage
Binary file not shown.
Binary file modified external-dependency-manager-latest.unitypackage
Binary file not shown.

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

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

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

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

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

Loading