问题: /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h:20:15: fatal error: 'stdlib.h' file not found #include_next <stdlib.h> ^~~~ Read More
posted @ 2023-05-13 10:50 带狗狗带 Views(31) Comments(0) Diggs(0) Edit
本文仅测试了MAC OSX 1. 用010 editor或者mac自带的unicode输入法,把特殊字符准确输入到文件 2. 读取 temp=$(cat /Users/xirtam/Downloads/test.txt) 3. 使用 ./test $temp Read More
posted @ 2021-06-09 10:38 带狗狗带 Views(67) Comments(0) Diggs(0) Edit
例:创建一个文件名为-1.html的文件 touch -1.html # 执行失败 touch \-1.html # 执行失败 touch '\-1.html' #创建了 \1.html touch "\-1.html" #创建了 \1.html 上面几个都是错误的例子,和空格、|、引号等不同,减号 Read More
posted @ 2020-09-19 12:01 带狗狗带 Views(308) Comments(0) Diggs(0) Edit
编译东西的时候遇到 fatal error: 'string.h' file not found 解决办法 删除自己添加的llvm之类的环境变量 删除旧的xcode command line tools, 一般在 /Applications/Xcode.app/Contents/Developer/ Read More
posted @ 2020-09-10 17:12 带狗狗带 Views(591) Comments(0) Diggs(0) Edit
发现现在从GooglePlay下载的apk多了几个 config.arm64_v8a.apk config.en.apk config.xxhdpi.apk org.sandrob.drony.apk 单独安装最后一个是不行的,搜到了命令应该是 adb install-multiple adb in Read More
posted @ 2020-06-09 11:34 带狗狗带 Views(1293) Comments(0) Diggs(0) Edit
主要代码,kotlin写的 package fuck import com.google.gson.Gson import java.io.File import java.sql.Connection import java.sql.DriverManager import java.sql.St Read More
posted @ 2020-03-25 09:41 带狗狗带 Views(1533) Comments(2) Diggs(0) Edit
重点是4层的pathPattern,stackoverflow的方案,没有深究原因,记录一下 只写一层是不行的,试了好久,坑。 Read More
posted @ 2019-11-04 19:07 带狗狗带 Views(545) Comments(0) Diggs(0) Edit
由于Flutter boost目前还没有很好的解决方案,所以只能魔改了,大致的思路就是在刚打开app的时候就初始化一个不可见的Flutter页面,让其自动注册&初始化。 先编写一个FlutterFragment 然后在应用的第一个页面的Activity中加入一个不可见的FrameLayout 然后在 Read More
posted @ 2019-09-05 16:39 带狗狗带 Views(1514) Comments(0) Diggs(0) Edit
修改d2j_invoke.bat,多给点内存就行了。 我使用的是dex-tools-2.1-SNAPSHOT版本,之前的版本不支持多dex。 Read More
posted @ 2019-06-18 17:41 带狗狗带 Views(893) Comments(0) Diggs(0) Edit
本地环境: PC:windows 10,Intellij IDEA (android studio应该一样的) 手机:nexus5 8.1系统, 其他依赖:smalidea插件,xposed 插件 https://github.com/JesusFreke/smali 我使用的版本的下载链接,也是官 Read More
posted @ 2019-06-18 17:36 带狗狗带 Views(1004) Comments(0) Diggs(1) Edit