摘要:
https://juejin.cn/post/7045652084154171429 ios 崩溃日志补货 https://zhuanlan.zhihu.com/p/97566547 这个是shell 脚本入门 https://www.cnblogs.com/CH520/category/22881 阅读全文
摘要:
// // main.m // changecfile // Created by miaoqushidai on 2023/6/29. // #import <Foundation/Foundation.h> void changeFilePath(NSString* path,NSString* 阅读全文
摘要:
Shader "Unlit/Custom/Shader05" { Properties { _MainTex("MainTex",2D) = "white"{} [Toggle] _INVERT ("Invert color?", Float) = 0 // _INVERT 必须是大写的 _Inve 阅读全文
摘要:
在学习公司项目的时候看到有的字体定义了内容 和以前我看见其他人提出的问题,“热更框架之外,用到了字体文件,热更里也有使用字体文件,如何去重。”我对这个问题印象深刻,今天看见项目如此操作估计就是想解决这个问题 利用字体压缩工具 https://github.com/forJrking/FontZip 阅读全文
摘要:
修改gem 的源 sudo gem installl cocoapods 安装pod pos install 安装项目需要pod gem sources 显示 gem 的源就是maven 仓库所在的位置 gem sources --add https://gems.ruby-china.com/ 增 阅读全文
摘要:
using System; using System.Collections.Generic; using System.IO; using System.Net; using System.Text; using UnityEngine; public class TestServerHttp : 阅读全文
摘要:
别人的代码 xcode打包部分设置的脚本如下 public class XcodeSetting : MonoBehaviour { private static List<Menu> menuList; [PostProcessBuild(999)] public static void OnPo 阅读全文
摘要:
工具 bundletool.jar 官方下载位置 https://github.com/google/bundletool/releases 下载后改下名字方便输入命令 将aar 放在G盘根目录 java -jar bundletool.jar build-apks --bundle=G:/laun 阅读全文
摘要:
1下载 public void download(String url) { Utils.Loge("download",url); Uri uri = Uri.parse(url); DownloadManager.Request request = new DownloadManager.Req 阅读全文
摘要:
关于这几种语言的json 操作 Lua local cjson2 = require "cjson" local lua_object = { ["name"] = "Jiang", ["age"] = 24, ["addr"] = "BeiJing", ["email"] = "1569989xx 阅读全文