Could not find method compile() for arguments [directory ‘./lib/‘] on object
from--https://blog.csdn.net/weixin_38106322/article/details/122893719   gradle项目编译时报的错,没学过gradle,所以具体原因看不出来,猜测是版本原因,这里只分享下解决方案。 bulid.gradle原信息是: 修改compile为implementation,如下: 之后即可编译成功
thumbnail
Dnsmasq – PXE boot using Netboot.xyz
from--https://forum.openwrt.org/t/dnsmasq-pxe-boot-using-netboot-xyz/56075   Installing and Using OpenWrtNetwork and Wireless Configuration Feb 2020 1 / 4 Feb 2020 Jun 2022 seegee 1 Feb '20 I'm trying to set configure dnsmasq to point dhcp clients to a PXE server running on another machine. Specifically, the PXE server is running Netboot.xyz as a container within dock…
Fiddler Android 7.0以上无法抓取https包问题解决
from--https://www.lixiaopeng.top/article/55   Fiddler提供的证书是.cer格式的证书,而安卓系统跟证书是.0格式的证书,我们需要做的是把fiddler证书先转换成安卓需要的.0证书格式,然后将证书拷贝到Andorid根证书存放目录 /system/etc/security/cacerts/目录下面,具体参见下面流程 第一步准备一部获取root权限的android手机 第二步浏览器输入fiddler证书下载地址,下载FiddlerRoot.cer证书 第三步,将cer证书转换成.0证书 openssl x509 -inform DER -subject_hash_old -in FiddlerRoot.cer    269953fb  #输出cer证书hash,转换成android…
thumbnail
Editing system.img inside super.img and flashing our modifications
from--https://forum.xda-developers.com/t/editing-system-img-inside-super-img-and-flashing-our-modifications.4196625/   Hello and welcome to my first post. today I will talk about editing super.img and modifying system.img inside of it. In android 10 and bigger, sometimes there is no system.img in ROM it because google starting use Dynamic Partitions for more flexible …
fuser与lsof — 查看文件被哪些进程占用 
from--https://www.cnblogs.com/ccbloom/p/11301159.html   目录 fuser lsof       fuser   命令安装。 [root@template ~]# yum -y install psmisc [root@template ~]# rpm -ql psmisc /usr/bin/killall /usr/bin/peekfd /usr/bin/prtstat /usr/bin/pstree /usr/bin/pstree.x11 /usr/sbin/fuser 作用:查看文件、目录或者socket所属进程的PID,由此知道该文件或目录被哪些进程所使用 用法: [root@template ~]# man fuser fuse…
git中submodule子模块的添加、使用和删除
from--https://blog.csdn.net/guotianqing/article/details/82391665 背景 项目中经常使用别人维护的模块,在git中使用子模块的功能能够大大提高开发效率。 使用子模块后,不必负责子模块的维护,只需要在必要的时候同步更新子模块即可。 本文主要讲解子模块相关的基础命令,详细使用请参考man page。 子模块的添加 添加子模块非常简单,命令如下: git submodule add <url> <path> 其中,url为子模块的路径,path为该子模块存储的目录路径。 执行成功后,git status会看到项目中修改了.gitmodules,并增加了一个新文件(为刚刚添加的路径) git diff --cached查看修改内容可以看到增加了子模块,并且新文件下…
thumbnail
git diff noindex exclude files
from--https://stackoverflow.com/questions/53471209/git-diff-noindex-exclude-files 13 Does any one how to exclude files when comparing folders with git diff --no-index ? It seems this option ':(exclude)*.min.css' does not work with no-index (outside working tree) git diff Share Follow asked Nov 25, 2018 at 19:44 jani_r 63711 gold badge77 silver badges1818 bronze badges 1 Co…