
app相关
文章平均质量分 65
xiaoyuKevin
一个不称职的程序员
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
aidl远程调用绑定式Service,和Activity实现数据交互
1、定义PackMsg.aidl,承载数据的实体类// PackMsg.aidlpackage com.example.kervin.parse;// Declare any non-default types here with import statementsparcelable PackMsg;2、定义IBufferRcvCallback.aidl,接口类,将Service...原创 2019-11-05 11:33:50 · 281 阅读 · 0 评论 -
Android studio Could not create the Java Virtual Machine.
android studio 导入别人的工程,报错如下:Error: Could not create the Java Virtual Machine.Error: A fatal exception has occurred. Program will exit.Invalid maximum heap size: -Xmx4608MThe specified size exceed...原创 2019-04-16 15:21:51 · 2223 阅读 · 0 评论 -
git tag用法
git标签分为两种类型:轻量标签和附注标签。轻量标签是指向提交对象的引用,附注标签则是仓库中的一个独立对象。建议使用附注标签1.轻量型标签//创建patchgit tag “v1.0.0第一次更新patch给dx”//push到服务器git push origin v1.0.0第一次更新patch给dx2.附注标签//创建patchgit tag -a “v1.0.1_update...原创 2019-08-09 17:11:52 · 251 阅读 · 0 评论