You've already forked Commercialization.topon
1.0.10
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
<repository>https://artifact.bytedance.com/repository/pangle</repository>
|
||||
</repositories>
|
||||
|
||||
<androidPackage spec="com.pangle.cn:mediation-sdk:5.6.0.8"/>
|
||||
<androidPackage spec="com.gromore.cn:gromore-sdk:4.3.0.3"/>
|
||||
<androidPackage spec="com.gromore.cn:pangle-adapter:5.4.1.6.0"/>
|
||||
|
||||
</androidPackages>
|
||||
</dependencies>
|
||||
Binary file not shown.
@@ -0,0 +1,32 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f0d79a94646b5be45b4acb42e1336674
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -22,7 +22,8 @@ dependencies {
|
||||
implementation 'com.android.support:appcompat-v7:28.0.0' // Assets/AnyThinkAds/Plugins/Android/China/Editor/Dependencies.xml:3
|
||||
implementation 'com.android.support:design:28.0.0' // Assets/AnyThinkAds/Plugins/Android/China/mediation/kuaishou/Editor/Dependencies.xml:3
|
||||
implementation 'com.github.bumptech.glide:glide:4.9.0' // Assets/AnyThinkAds/Plugins/Android/China/mediation/tap/Editor/Dependencies.xml:6
|
||||
implementation 'com.pangle.cn:mediation-sdk:5.6.0.8' // Assets/AnyThinkAds/Plugins/Android/China/Editor/Gromore/Dependencies.xml:8
|
||||
implementation 'com.gromore.cn:gromore-sdk:4.3.0.3' // Assets/AnyThinkAds/Plugins/Android/China/Editor/Gromore/Dependencies.xml:8
|
||||
implementation 'com.gromore.cn:pangle-adapter:5.4.1.6.0' // Assets/AnyThinkAds/Plugins/Android/China/Editor/Gromore/Dependencies.xml:9
|
||||
implementation 'com.squareup.okhttp3:okhttp:3.12.1' // Assets/AnyThinkAds/Plugins/Android/China/mediation/tap/Editor/Dependencies.xml:5
|
||||
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' // Assets/AnyThinkAds/Plugins/Android/China/mediation/tap/Editor/Dependencies.xml:4
|
||||
implementation 'io.reactivex.rxjava2:rxjava:2.0.1' // Assets/AnyThinkAds/Plugins/Android/China/mediation/tap/Editor/Dependencies.xml:3
|
||||
|
||||
8
Topon_Adapter/Editor.meta
Normal file
8
Topon_Adapter/Editor.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ffa17b4d22a08804794a574856906799
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
94
Topon_Adapter/Editor/AD_BuildAndroidProcess.cs
Normal file
94
Topon_Adapter/Editor/AD_BuildAndroidProcess.cs
Normal file
@@ -0,0 +1,94 @@
|
||||
#if UNITY_ANDROID
|
||||
using System.IO;
|
||||
using System.Xml.Linq;
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
using UnityEditor.Android;
|
||||
|
||||
namespace Topon_Adapter.Editor
|
||||
{
|
||||
public class AD_BuildAndroidProcess : IPostGenerateGradleAndroidProject
|
||||
{
|
||||
private static readonly XNamespace AndroidNamespace = "http://schemas.android.com/apk/res/android";
|
||||
private static readonly XNamespace ToolsNamespace = "http://schemas.android.com/tools";
|
||||
|
||||
|
||||
public void OnPostGenerateGradleAndroidProject(string path)
|
||||
{
|
||||
ProcessAndroidManifest(path);
|
||||
}
|
||||
|
||||
|
||||
public static void ProcessAndroidManifest(string path)
|
||||
{
|
||||
#if UNITY_2019_3_OR_NEWER
|
||||
var manifestPath = Path.Combine(path, "src/main/AndroidManifest.xml");
|
||||
#else
|
||||
var manifestPath = Path.Combine(path, "unityLibrary/src/main/AndroidManifest.xml");
|
||||
#endif
|
||||
// var manifestPath = Path.Combine(path, "src/main/AndroidManifest.xml");
|
||||
XDocument manifest;
|
||||
try
|
||||
{
|
||||
manifest = XDocument.Load(manifestPath);
|
||||
}
|
||||
#pragma warning disable 0168
|
||||
catch (IOException exception)
|
||||
#pragma warning restore 0168
|
||||
{
|
||||
ATLog.log("[BuildAndroidProcess] AndroidManifest.xml is missing.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Get the `manifest` element.
|
||||
var elementManifest = manifest.Element("manifest");
|
||||
if (elementManifest == null)
|
||||
{
|
||||
ATLog.log("[BuildAndroidProcess] AndroidManifest.xml is invalid.");
|
||||
return;
|
||||
}
|
||||
|
||||
var elementApplication = elementManifest.Element("application");
|
||||
if (elementApplication == null)
|
||||
{
|
||||
ATLog.log("[BuildAndroidProcess] AndroidManifest.xml is invalid.");
|
||||
return;
|
||||
}
|
||||
|
||||
elementManifest.Add(CreateQueries());
|
||||
elementApplication.Add(CreateActivityXML());
|
||||
|
||||
// Save the updated manifest file.
|
||||
manifest.Save(manifestPath);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加微信开放平台的适配
|
||||
/// </summary>
|
||||
public static XElement CreateActivityXML()
|
||||
{
|
||||
|
||||
var metaData = new XElement("activity");
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "name", ".wxapi.WXEntryActivity"));
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "label", "@string/app_name"));
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "theme", "@android:style/Theme.Translucent.NoTitleBar"));
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "exported", "true"));
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "taskAffinity", Application.identifier));
|
||||
metaData.Add(new XAttribute(AndroidNamespace + "launchMode", "singleTask"));
|
||||
return metaData;
|
||||
}
|
||||
|
||||
public static XElement CreateQueries()
|
||||
{
|
||||
var metaData = new XElement("queries");
|
||||
var packageData = new XElement("package");
|
||||
packageData.Add(new XAttribute(AndroidNamespace + "name", "com.tencent.mm"));
|
||||
metaData.Add(packageData);
|
||||
return metaData;
|
||||
}
|
||||
|
||||
public int callbackOrder { get; }
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
3
Topon_Adapter/Editor/AD_BuildAndroidProcess.cs.meta
Normal file
3
Topon_Adapter/Editor/AD_BuildAndroidProcess.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f093a7f66c4f4560a3d06bcf236bc89a
|
||||
timeCreated: 1697048746
|
||||
19
Topon_Adapter/Editor/Topon_Adapter.Editor.asmdef
Normal file
19
Topon_Adapter/Editor/Topon_Adapter.Editor.asmdef
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "Topon_Adapter.Editor",
|
||||
"rootNamespace": "",
|
||||
"references": [
|
||||
"GUID:8a3d1447e0a3bdf4fa07035516da8b62",
|
||||
"GUID:483a01338fa974b4498cd71261d6e8b9"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
7
Topon_Adapter/Editor/Topon_Adapter.Editor.asmdef.meta
Normal file
7
Topon_Adapter/Editor/Topon_Adapter.Editor.asmdef.meta
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ea29d77d0952884eac16339c279a985
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
5
Topon_Adapter/Editor/WXDependencies.xml
Normal file
5
Topon_Adapter/Editor/WXDependencies.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<dependencies>
|
||||
<androidPackages>
|
||||
<androidPackage spec="com.tencent.mm.opensdk:wechat-sdk-android:6.8.0"/>
|
||||
</androidPackages>
|
||||
</dependencies>
|
||||
3
Topon_Adapter/Editor/WXDependencies.xml.meta
Normal file
3
Topon_Adapter/Editor/WXDependencies.xml.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ee2de7a1fe734e3599d92016611fc247
|
||||
timeCreated: 1697050926
|
||||
@@ -16,7 +16,7 @@
|
||||
},
|
||||
"dependencies":
|
||||
{
|
||||
"com.foldcc.cc-framework.commercialization" : "http://private.lightyears.ltd:18640/foldcc/CC-Framework.Commercialization.git#1.0.9"
|
||||
"com.foldcc.cc-framework.commercialization" : "http://private.lightyears.ltd:18640/foldcc/CC-Framework.Commercialization.git#1.0.5"
|
||||
},
|
||||
"keywords": [
|
||||
"Framework"
|
||||
|
||||
Reference in New Issue
Block a user