本文介绍了AS强制使用android SDK构建工具25.0.0 SDK构建工具修订版(23.0.3)对于项目而言太低的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,我正在面临版本问题。当我运行应用程序时,它会抛出一个错误:
Hi I am facing build version issue. When I run the app, it throws an error that,
我需要使用23.0.3,但它迫使使用25.0.0。如何解决这个奇怪的问题?
I need to use 23.0.3, but it's forcing to use 25.0.0. How to solve the strange issue?
这里是Gradle文件
Here are the Gradle files
build.gradle模块
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.Yampp"
minSdkVersion 14
targetSdkVersion 23
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.exoplayer:exoplayer:r1.5.9'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile files('libs/android-query.0.25.10.jar')
compile 'com.android.support:design:23.2.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.gms:play-services:9.4.0'
compile 'com.google.android.gms:play-services-cast-framework:9.4.0'
compile 'com.googlecode.android-query:android-query:0.25.9'
compile 'com.android.support:mediarouter-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.0.+'
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
}
build.gradle项目
build.gradle Project
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
}
}
allprojects {
repositories {
jcenter()
}
}
推荐答案
只需将构建工具升级到25.0.0,就不会影响应用的行为。
Just upgrade build tools to 25.0.0 this doesn't affect the app behavior.
buildToolsVersion "25.0.0"
这篇关于AS强制使用android SDK构建工具25.0.0 SDK构建工具修订版(23.0.3)对于项目而言太低的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!