2 Commits
1.0.0 ... 1.0.2

Author SHA1 Message Date
f615580729 chore: release tapadn 1.0.2 2026-06-12 17:55:17 +08:00
ef5e5073a4 release: 1.0.1 2026-06-12 16:17:36 +08:00
9 changed files with 41 additions and 37 deletions

View File

@@ -1,3 +1,10 @@
# [1.0.1]
### 调整
* 包声明升级到 Unity `2022.3`,项目版本固定为 `2022.3.62f2c1`
* 依赖的 `CC-Framework.Commercialization` 升级到 `1.0.15`,对齐源头商业化框架发布包。
# [1.0.0]
### 新增

View File

@@ -0,0 +1,15 @@
{
"name": "Dirichlet.Mediation.Editor",
"references": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: ffd2503194414b5e8b8e687a6a70a19f
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -149,28 +149,10 @@ namespace Dirichlet.Mediation.Editor
var depsBlock = new StringBuilder();
depsBlock.AppendLine(DIRICHLET_DEPS_START);
// Core Mediation AAR
depsBlock.AppendLine(" implementation(name: 'DirichletAD_Mediation_4.2.5.0', ext: 'aar')");
// CSJ (穿山甲) Adapter and SDK
if (enableCsj)
{
depsBlock.AppendLine(" implementation(name: 'DirichletAD_CSJ_Adapter_4.2.5.0', ext: 'aar')");
depsBlock.AppendLine(" implementation(name: 'open_ad_sdk_7.4.2.2', ext: 'aar')");
}
// GDT (广点通) Adapter and SDK
if (enableGdt)
{
depsBlock.AppendLine(" implementation(name: 'DirichletAD_GDT_Adapter_4.2.5.0', ext: 'aar')");
depsBlock.AppendLine(" implementation(name: 'GDTSDK.unionNormal.4.671.1541', ext: 'aar')");
}
// IQY (爱奇艺) Adapter and SDK
// Local AAR files are imported by Unity's PluginImporter from Assets/Plugins/Android.
// Do not declare them here again, otherwise exported Gradle projects can get duplicate classes.
if (enableIqy)
{
depsBlock.AppendLine(" implementation(name: 'DirichletAD_IQY_Adapter_4.2.5.0', ext: 'aar')");
depsBlock.AppendLine(" implementation(name: 'iadsdk-release-2.3.102.110', ext: 'aar')");
depsBlock.AppendLine(" implementation 'com.android.support.constraint:constraint-layout:1.1.3'");
}

View File

@@ -1,11 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<androidPackages>
<androidPackage spec="com.tencent.mm.opensdk:wechat-sdk-android:6.8.34">
<repositories>
<repository>https://maven.aliyun.com/repository/public</repository>
<repository>https://repo.maven.apache.org/maven2</repository>
</repositories>
</androidPackage>
</androidPackages>
<!-- WeChat OpenSDK is shipped as a local AAR under Assets/Plugins/Android. -->
</dependencies>

View File

@@ -2,12 +2,12 @@
"name": "com.commercialization.tapadn",
"displayName": "Commercialization.tapadn",
"description": "TapADN / Dirichlet mediation implementation for CC-Framework.Commercialization.",
"version": "1.0.0",
"unity": "2021.1",
"version": "1.0.2",
"unity": "2022.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://private.lightyears.ltd:18650/foldcc/Commercialization.tapadn"
"url": "http://private.lightyears.ltd:18650/foldcc/Commercialization.tapadn.git"
},
"author": {
"name": "foldcc",
@@ -15,7 +15,7 @@
"url": "https://gitee.com/foldcc"
},
"dependencies": {
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.14"
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.15"
},
"samples": [
{

View File

@@ -110,7 +110,7 @@ iOS runtime 桥接负责:
发布包入口是 `Assets/package.json`,其中 `com.foldcc.cc-framework.commercialization` 依赖保持为远程 Git URL
```json
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.14"
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.15"
```
当前仓库自身作为 Unity 验证工程时,可以在 `Packages/manifest.json` 使用本地 `file:` 引用:

View File

@@ -1,2 +1,2 @@
m_EditorVersion: 2022.3.62f3c1
m_EditorVersionWithRevision: 2022.3.62f3c1 (1623fc0bbb97)
m_EditorVersion: 2022.3.62f2c1
m_EditorVersionWithRevision: 2022.3.62f2c1 (92e6e6be66dc)

View File

@@ -8,8 +8,8 @@
```json
{
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.14",
"com.commercialization.tapadn": "http://private.lightyears.ltd:18650/foldcc/Commercialization.tapadn.git#1.0.0"
"com.foldcc.cc-framework.commercialization": "http://private.lightyears.ltd:18650/foldcc/CC-Framework.Commercialization.git#1.0.15",
"com.commercialization.tapadn": "http://private.lightyears.ltd:18650/foldcc/Commercialization.tapadn.git#1.0.1"
}
```