Android开发之新建项目报错的问题
Posted prog123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android开发之新建项目报错的问题相关的知识,希望对你有一定的参考价值。
通过android studio新建一个空项目。在新建完项目之后,gradle编译会报错。
发生问题的原因是build.gradle(Project:TopDialog)中:
allprojects {
repositories {
jcenter()
}
}
jecnter()需要下载junit的依赖,但是被墙了(网上博客如是说),所以关于junit的部分会报错。
解决方法一:注释掉build.gradle(Module:app)的关于junit test的代码:
apply plugin: \'com.android.application\' android { compileSdkVersion 26 buildToolsVersion "26.0.0" defaultConfig { applicationId "com.example.topdialog" minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName "1.0" // testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile(\'proguard-android.txt\'), \'proguard-rules.pro\' } } } dependencies { compile fileTree(dir: \'libs\', include: [\'*.jar\']) // androidTestCompile(\'com.android.support.test.espresso:espresso-core:2.2.2\', { // exclude group: \'com.android.support\', module: \'support-annotations\' // }) compile \'com.android.support:appcompat-v7:26.0.0-alpha1\' // testCompile \'junit:junit:4.12\' }
解决方法二,修改build.gradle(Project:TopDialog),注释掉jcenter(),添加如下一段话(不过亲测编译会很慢):
allprojects { repositories { // jcenter() maven { url "http://repo1.maven.org/maven2" } } }
以上是关于Android开发之新建项目报错的问题的主要内容,如果未能解决你的问题,请参考以下文章
结构建模设计——Solidworks软件之在已建模型的基础上进行特征修改及模型报错的解决方法实战
结构建模设计——Solidworks软件之在已建模型的基础上进行特征修改及模型报错的解决方法实战
Android开发 关于navigation destination xxx is unknown to this NavController 报错的复现分析与解决