最佳答案
我想建立一个安卓应用程序,然后开始签名。 为此,我需要有发布版本的 apk。谷歌文档只建议使用 Eclipse 和 ant 的方式来构建发布版本。 < a href = “ http://developer.android.com/tools/publications/app-signing.html # release asecompile”rel = “ norefrer”> http://developer.android.com/tools/publishing/app-signing.html#releasecompile
然而,我不能找到如何强制分级构建发布版本的 apk。build.gradle
也没有给出任何提示。gradlew tasks
建议,没有安装版本配置,但卸载版本存在:
Install tasks
-------------
installDebug - Installs the Debug build
installTest - Installs the Test build for the Debug build
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build
uninstallRelease - Uninstalls the Release build
uninstallTest - Uninstalls the Test build for the Debug build
我的 build.gradle
:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
dependencies {
compile 'com.android.support:support-v4:13.0.+'
compile files('libs/android-support-v4.jar')
compile project(":libraries:ActionBarSherlock")
compile project(":libraries:CollabsibleSearchMenu")
}
android {
compileSdkVersion 18
buildToolsVersion "18.0.1"
defaultConfig {
minSdkVersion 8
targetSdkVersion 16
}
}
我错过了什么?