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