升级sdk至 2.1.1

This commit is contained in:
2024-06-05 15:09:03 +08:00
parent 20e4599ffd
commit 73b73a2494
61 changed files with 466 additions and 105 deletions

View File

@@ -171,7 +171,7 @@ namespace AnyThink.Scripts.IntegrationManager.Editor
public string ios_version; //当前已安装的iOS sdk的版本号
public bool enableAndroidX = false; //当前的AndroidX设置
public int androidXSetting = 0; //当前的AndroidX设置,0=default; 1=修改为AndroidX2=修改为非AndroidX
public int country;
@@ -180,9 +180,6 @@ namespace AnyThink.Scripts.IntegrationManager.Editor
public CountrySettingData(int country) {
this.country = country;
if (country == ATConfig.NONCHINA_COUNTRY) {
this.enableAndroidX = true;
}
}
public string getAdmobAppId(int os) {
@@ -210,4 +207,14 @@ namespace AnyThink.Scripts.IntegrationManager.Editor
public int country;
public string path;
}
[Serializable]
public class HotfixPluginData
{
public string plugin_version;
public string hot_fix_version;
public string download_url;
public int status;
public string file_name;
}
}