这是我的整个build.gradle(模块:app)如何解决这个问题?这导致应用程序崩溃。我曾尝试通过阅读之前/之前的相关帖子来添加更多代码。但它没有帮助。 然而,它导致成功的gradle同步和成功安装app。 Vut app崩溃了。
android {
compileSdkVersion 25
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.example.akash.nbrider"
minSdkVersion 15
targetSdkVersion 25
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:25.3.1'
// compile 'com.android.support:mediarouter-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services:8.4.0'
/*compile 'com.google.android.gms:play-services-location:10.2.0'
compile 'com.google.android.gms:play-services-maps:10.2.0'*/
}
{{1}}
答案 0 :(得分:-1)
问题在于这两行
buildToolsVersion "26.0.0"
...
compile 'com.android.support:appcompat-v7:25.3.1'
他们应该使用相同的主版本号。如果有v.26库,你应该使用那个。否则,将buildToolsVersion降级为25。
安装25个buildTools的最简单方法是在build.Gradle,Sync Gradle中手动更改为25,然后您应该获得可点击链接。