android项目部分编译: 1.source build/build.sh 2.source build/envsetup.sh 3.lunch 选择对应配置 4.进入单独编译目录执行mm mm -B WITH_DEXPREOPT=false #单独编译某模块时不做优化 adb shell命令 M ...
分类:
移动开发 时间:
2021-02-22 12:28:23
阅读次数:
0
1. listfile (列表文件,即CMakeLists.txt) https://cmake.org/cmake/help/v3.19/manual/cmake-gui.1.html CMake is a cross-platform build system generator. Projec ...
分类:
其他好文 时间:
2021-02-20 12:32:02
阅读次数:
0
学习chrome-extension优秀插件 newtabnewquote 新标签页显示一句话 github地址:rahuls/newtabnewquote: A Chrome extension which shows a new quote on each new tab. chrome ext ...
分类:
其他好文 时间:
2021-02-20 12:20:22
阅读次数:
0
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:
移动开发 时间:
2021-02-19 13:44:35
阅读次数:
0
开始使用Kubernetes和docker docker命令 运行一个容器 docker run busybox echo "Hello world" 构建容器镜像 docker build -t imageName . # docker bulid -t <imageName> <Dockerfi ...
分类:
Web程序 时间:
2021-02-19 13:44:05
阅读次数:
0
一、String类的常用方法 返回当前字符串中给定位置的字符: char charAt(int index) 返回给定字符串在当前字符串中的位置: int indexOf(String str) 返回当前字符串的长度: int length() 判断当前字符串是以指定字符开始或结束的: boolea ...
分类:
其他好文 时间:
2021-02-18 13:42:38
阅读次数:
0
树套树(splay套线段树) -AcWing 2476 本来想着用multiset套线段树的,结果一直T。改成常数小的splay才过,写完人都傻了^^ /* splay套线段树 */ #include <bits/stdc++.h> using namespace std; const int N ...
第一步找到package.json文件 dev修改为: "dev": "vite --port 8085" { "name": "web", "version": "0.0.0", "scripts": { "dev": "vite --port 8085", "build": "vite buil ...
分类:
其他好文 时间:
2021-02-18 13:10:54
阅读次数:
0
在 Vue.JS 项目中执行 npm run build 没想到出现了这个错误 (node:18692) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Objec ...
分类:
其他好文 时间:
2021-02-18 13:05:49
阅读次数:
0
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:
其他好文 时间:
2021-02-18 13:03:49
阅读次数:
0