Skip to content
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

Update Chartboost mediation plugin with assembly definitions, meta files and package.json required for UPM publishing. #3402

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
7 changes: 7 additions & 0 deletions mediation/Chartboost/CHANGELOG.md.meta

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

7 changes: 7 additions & 0 deletions mediation/Chartboost/LICENSE.meta

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

7 changes: 7 additions & 0 deletions mediation/Chartboost/README.md.meta

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

100 changes: 0 additions & 100 deletions mediation/Chartboost/build.gradle

This file was deleted.

21 changes: 21 additions & 0 deletions mediation/Chartboost/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "com.google.ads.mobile.mediation.chartboost",
"version": "4.6.0",
"displayName": "Google Mobile Ads Chartboost Mediation for Unity",
"keywords": [
"Google",
"Mobile",
"Ads",
"vh-name:GoogleMobileAdsMediationChartboost",
"vh-name:Google Mobile Ads Chartboost Mediation for Unity"
],
"author": {
"name": "Google LLC",
"url": "https://github.com/googleads/googleads-mobile-unity"
},
"description": "The Google Mobile Ads mediation plugin for Chartboost package allows you to load and display ads from the Chartboost ad network using mediation, for iOS and Android using Google's native iOS and Android Mobile SDKs via a unified C# API in Unity.",
"unity": "2019.4",
"dependencies": {
"com.google.ads.mobile": "9.1.0"
}
}
7 changes: 7 additions & 0 deletions mediation/Chartboost/package.json.meta

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

8 changes: 8 additions & 0 deletions mediation/Chartboost/source.meta

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

8 changes: 8 additions & 0 deletions mediation/Chartboost/source/plugin.meta

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

8 changes: 8 additions & 0 deletions mediation/Chartboost/source/plugin/Assets.meta

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.

Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,10 @@

using UnityEngine;

using GoogleMobileAds.Mediation.Chartboost;
using GoogleMobileAds.Mediation.Chartboost.Common;

namespace GoogleMobileAds.Mediation.Chartboost.Api
{
public enum CBGDPRDataUseConsent
{
NonBehavioral = 0,
Behavioral,
}

public enum CBCCPADataUseConsent
{
OptOutSale = 0,
OptInSale,
}

public class Chartboost
{
internal static readonly IChartboostClient client = GetChartboostClient();
Expand Down

This file was deleted.

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


namespace GoogleMobileAds.Mediation.Chartboost.Api
{
public enum CBCCPADataUseConsent
{
OptOutSale = 0,
OptInSale,
}
}

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


namespace GoogleMobileAds.Mediation.Chartboost.Api
{
public enum CBGDPRDataUseConsent
{
NonBehavioral = 0,
Behavioral,
}
}

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "GoogleMobileAds.Mediation.Chartboost.Core",
"references": [],
"includePlatforms": [],
"excludePlatforms": []
}

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "GoogleMobileAds.Mediation.Chartboost.Api",
"references": [
"GoogleMobileAds.Api.Mediation",
"GoogleMobileAds.Mediation.Chartboost",
"GoogleMobileAds.Mediation.Chartboost.Common",
"GoogleMobileAds.Mediation.Chartboost.Core"
],
"includePlatforms": [],
"excludePlatforms": []
}

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.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Reflection;

using UnityEngine;
Expand Down
Loading