update:ChannelConfig 更新

This commit is contained in:
2026-07-14 20:20:03 +08:00
parent 2107f437a7
commit 7fe8ed85ec
64 changed files with 521 additions and 1367 deletions

View File

@@ -27,7 +27,8 @@
<meta-data android:name="google_analytics_default_allow_ad_user_data" android:value="true" />
<meta-data android:name="google_analytics_default_allow_ad_personalization_signals" android:value="true" />
</activity>
<meta-data android:name="com.arkgame.ft.channel" android:value="GooglePlay" />
<meta-data android:name="com.arkgame.ft.channel" android:value="tw" />
<meta-data android:name="CHANNEL" android:value="tw" />
</application>
<queries>
<provider android:authorities="com.facebook.katana.provider.PlatformProvider" />

View File

@@ -1,2 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application>
</application>
</manifest>

View File

@@ -115,3 +115,9 @@ android {
**IL_CPP_BUILD_SETUP**
**SOURCE_BUILD_SETUP**
**EXTERNAL_SOURCES**
def channelUnityProjectPath = $/**DIR_UNITYPROJECT**/$.replace("\\", "/")
def channelGradleMain = new File(channelUnityProjectPath, 'Assets/Plugins/Android/channel_gradle/main.gradle')
if (channelGradleMain.exists()) {
apply from: channelGradleMain
}

View File

@@ -14,6 +14,11 @@ def channelUnityProjectPath = $/**DIR_UNITYPROJECT**/$.replace("\\", "/")
include ':channel_manifest_lib'
project(':channel_manifest_lib').projectDir = new File(channelUnityProjectPath, 'Assets/Plugins/Android/channel_manifest_lib')
def channelGradleSettings = new File(channelUnityProjectPath, 'Assets/Plugins/Android/channel_gradle/settings.gradle')
if (channelGradleSettings.exists()) {
apply from: channelGradleSettings
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {