代码拉取完成,页面将自动刷新
同步操作将从 gsbhzh/wechat-game-tiaoyitiao 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.IO;
using System.Windows.Forms;
namespace TiaoYiTiao
{
/// <summary>
/// 微信 跳一跳 游戏辅助程序。
/// </summary>
static class Program
{
internal static string AdbPath = "";
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
try
{
loadDll();
Application.Run(new Form1());
}
catch (Exception ex)
{
MessageBox.Show("系统异常\r\n" + ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
#region loadDll
static void loadDll()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//string path = Application.StartupPath;
//string path = Application.CommonAppDataPath; // C:\ProgramData\TiaoYiTiao\ShowAndroidModel\1.0.0.0
string path = Path.Combine(Path.GetTempPath(), "bao_tiaoyitiao"); // C:\Users\Bao\AppData\Local\Temp\bao_tiaoyitiao
if (!Directory.Exists(path)) Directory.CreateDirectory(path);
string[] resources = new string[3] { "adb.exe", "AdbWinApi.dll", "AdbWinUsbApi.dll" };
FileStream fs = null;
string file;
foreach (var r in resources)
{
file = Path.Combine(path, r);
if (File.Exists(file)) continue;
fs = new FileStream(file, FileMode.CreateNew, FileAccess.Write);
byte[] buffer = Properties.Resources.ResourceManager.GetObject(Path.GetFileNameWithoutExtension(r)) as byte[];
fs.Write(buffer, 0, buffer.Length);
fs.Close();
}
if (fs != null)
{
fs.Close();
fs.Dispose();
}
AdbPath = Path.Combine(path, "adb.exe");
}
#endregion
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。