release: 1.0.5

This commit is contained in:
2026-06-17 15:52:26 +08:00
parent 18af360571
commit 1b595f25e1
21 changed files with 147 additions and 67 deletions

View File

@@ -23,6 +23,8 @@ namespace Dirichlet.Mediation.Editor
private const string DIRICHLET_DEPS_END = "// Dirichlet Mediation Dependencies End";
private const string DIRICHLET_REPOS_START = "// Dirichlet Mediation Repositories Start";
private const string DIRICHLET_REPOS_END = "// Dirichlet Mediation Repositories End";
private const string PangleSdkVersion = "7.6.1.2";
private const string GdtSdkVersion = "4.690.1560";
public int callbackOrder => 100; // Run after EDM4U (which uses lower values)
@@ -157,6 +159,16 @@ namespace Dirichlet.Mediation.Editor
}
// Maven dependencies (required for SDK functionality)
if (enableCsj)
{
depsBlock.AppendLine($" implementation('com.pangle.cn:ads-sdk-pro:{PangleSdkVersion}') {{");
depsBlock.AppendLine(" exclude group: 'com.android.support'");
depsBlock.AppendLine(" }");
}
if (enableGdt)
{
depsBlock.AppendLine($" implementation 'com.qq.e.union:union:{GdtSdkVersion}'");
}
depsBlock.AppendLine(" implementation 'com.android.support:recyclerview-v7:28.0.0'");
depsBlock.AppendLine(" implementation 'com.github.bumptech.glide:glide:4.9.0'");
depsBlock.AppendLine(" implementation 'com.android.support:support-v4:28.0.0'");