update 1.1.25

This commit is contained in:
2024-03-13 02:26:45 +08:00
parent a59eef7cc7
commit 6d45d90190
2 changed files with 12 additions and 1 deletions

View File

@@ -96,6 +96,17 @@ namespace Topon_Adapter.Editor
elementlauncherApplication.Add (CreateCSJGromore ()); elementlauncherApplication.Add (CreateCSJGromore ());
} }
var elementMainManifest = manifest.Element ("manifest");
var elementMainApplication = elementMainManifest.Element ("application");
var maincsjElements = elementMainApplication.Descendants ().Where (element => element.Name.LocalName.Equals ("provider"));
XElement maincsjElement = GetElementByName (maincsjElements, "com.bytedance.sdk.openadsdk.TTFileProvider");
if (csjElement == null)
{
//增加穿山甲配置
elementMainApplication.Add (CreateCSJGromore ());
}
// Save the updated manifest file. // Save the updated manifest file.
manifest.Save (manifestPath); manifest.Save (manifestPath);
launcherManifest.Save (launcherManifestPath); launcherManifest.Save (launcherManifestPath);

View File

@@ -5,7 +5,7 @@
<repository>https://jfrog.anythinktech.com/artifactory/debugger</repository> <repository>https://jfrog.anythinktech.com/artifactory/debugger</repository>
</repositories> </repositories>
<androidPackage spec="com.anythink.sdk:debugger-ui:1.0.0"/> <androidPackage spec="com.anythink.sdk:debugger-ui:1.0.3"/>
</androidPackages> </androidPackages>
</dependencies> </dependencies>