06 2020 档案
Initialization failed for 'https://start.spring.io' Please check URL, network and proxy settings
摘要:先使用自己手机热点试试,看看是不是公司内网问题。cmd==>ping start.spring.io 没有丢失就行。随缘多建几次,这个看命。 阅读全文
posted @ 2020-06-23 14:45 许老头 阅读(223) 评论(0) 推荐(0)
解决Hbuilder打包参数无法解析,应用资源包中未包含文件manifest.json
摘要:确认基础配置中的AppID和Android包名是否相同。 阅读全文
posted @ 2020-06-06 13:23 许老头 阅读(1618) 评论(0) 推荐(0)
解决Android InnerClass annotations are missing corresponding EnclosingMember annotations.Such InnerClass annota
摘要:app下的build.gradle下的添加红色标注部分 buildTypes { debug { debuggable true } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-androi 阅读全文
posted @ 2020-06-02 16:48 许老头 阅读(489) 评论(0) 推荐(0)
Android ButterKnife Zelezny Avast安装成功但没有Generate ButterKnife Injections选项秒解决
摘要:app下build.gradle文件添加代码红色标记如下 dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7: 阅读全文
posted @ 2020-06-01 16:47 许老头 阅读(756) 评论(0) 推荐(0)
解决Android报错Dex file with version '38' cannot be used with min sdk level '29'.
摘要:修改app下build.gradle文件 android { compileSdkVersion 29 defaultConfig { applicationId "com.example.z.test1" minSdkVersion 29 targetSdkVersion 29 versionCo 阅读全文
posted @ 2020-06-01 14:13 许老头 阅读(9022) 评论(0) 推荐(0)
解决Android初学者创建时遇到Could not find any version that matches com.android.support:appcompat-v7:29.+. Versions that do not match: 26.0.0-alpha1 25.3.1 25.3.0 25.2.0 25.1.1 + 50 more
摘要:将app下build.gradle文件中dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:29.+' imp 阅读全文
posted @ 2020-06-01 14:09 许老头 阅读(2193) 评论(0) 推荐(0)