如何设置gradle和android studio进行发布构建?

时间:2013-08-27 08:39:02

标签: android gradle android-studio release android-gradle

我想构建Android应用并开始签名。 为此,我需要有apk的发布版本。 Google文档仅建议使用Eclipse和ant方法来发布版本:http://developer.android.com/tools/publishing/app-signing.html#releasecompile

但是我找不到如何强制使用gradle build release版本的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
    }
}

我缺少什么?

6 个答案:

答案 0 :(得分:87)

  1. 打开Build Variants窗格,通常找到along the lower left side of the window
  2. debug设为release
  3. shift+f10跑!!
  4. 然后,Android Studio将执行assembleRelease任务并将xx-release.apk安装到您的设备。

答案 1 :(得分:40)

在android studio的最新版本中,您可以这样做:

./gradlew assembleRelease

aR简称。这将产生一个未签名的发布apk。构建已签名的apk可以类似地完成,也可以使用Build - >在Android Studio中生成签名Apk。

See the docs here

这是我的build.gradle供参考:

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:0.5.+'
  }
}
apply plugin: 'android'

dependencies {
  compile fileTree(dir: 'libs', include: '*.jar')
}

android {
compileSdkVersion 17
buildToolsVersion "17.0.0"

sourceSets {
    main {
        manifest.srcFile 'AndroidManifest.xml'
        java.srcDirs = ['src']
        resources.srcDirs = ['src']
        aidl.srcDirs = ['src']
        renderscript.srcDirs = ['src']
        res.srcDirs = ['res']
        assets.srcDirs = ['assets']
    }

    // Move the tests to tests/java, tests/res, etc...
    instrumentTest.setRoot('tests')

    // Move the build types to build-types/<type>
    // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
    // This moves them out of them default location under src/<type>/... which would
    // conflict with src/ being used by the main source set.
    // Adding new build types or product flavors should be accompanied
    // by a similar customization.
    debug.setRoot('build-types/debug')
    release.setRoot('build-types/release')

}

buildTypes {
    release {

    }
}

答案 2 :(得分:25)

无需更新gradle在Android studio中制作发布应用程序。如果您是eclipse用户,那么它将非常容易。如果您是新手,请按照步骤

1:转到&#34; Build&#34;在工具栏部分。 2:选择&#34;生成签名APK ...&#34;选项。 enter image description here

3:填写打开的表格,然后去 4:如果您已经有.keystore或.jks,那么选择该文件输入您的密码和别名以及相应的密码。 5:或者没有.keystore或.jks文件然后点击创建新的...按钮,如图1所示,然后填写表格。enter image description here

以上流程是手动构建。如果您希望android studio自动签署您的应用程序

在Android Studio中,您可以将项目配置为在构建过程中自动签署发布APK:

在项目浏览器上,右键单击您的应用程序,然后选择“打开模块设置”。 在“项目结构”窗口中,选择“模块”下的应用程序模块。 单击“签名”选项卡。 选择密钥库文件,输入此签名配置的名称(因为您可以创建多个),然后输入所需的信息。 enter image description here 图4.在Android Studio中创建签名配置。

单击“构建类型”选项卡。 选择发布版本。 在“签名配置”下,选择刚刚创建的签名配置。 enter image description here 图5.在Android Studio中选择签名配置。

4:最重要的是在gradle上使debuggable = false。

    buildTypes {
        release {
           minifyEnabled false
          proguardFiles getDefaultProguardFile('proguard-  android.txt'), 'proguard-rules.txt'
        debuggable false
        jniDebuggable false
        renderscriptDebuggable false
        zipAlignEnabled true
       }
     }

访问以获取更多信息developer.android.com

答案 3 :(得分:20)

要激活installRelease任务,您只需signingConfig。就是这样。

来自http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Android-tasks

  

最后,该插件为所有版本创建安装/卸载任务   类型(调试,发布,测试),只要它们可以安装(哪个   需要签名)。

这是你想要的:

Install tasks
-------------
installDebug - Installs the Debug build
installDebugTest - Installs the Test build for the Debug build
installRelease - Installs the Release build
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build
uninstallDebugTest - Uninstalls the Test build for the Debug build
uninstallRelease - Uninstalls the Release build   <--- release

以下是获取installRelease任务的方法:

示例build.gradle

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
    }
}

apply plugin: 'com.android.application'

android {
  compileSdkVersion 22
  buildToolsVersion '22.0.1'

  defaultConfig {
    applicationId 'demo'
    minSdkVersion 15
    targetSdkVersion 22
    versionCode 1
    versionName '1.0'
  }

  signingConfigs {
      release {
          storeFile <file>
          storePassword <password>
          keyAlias <alias>
          keyPassword <password>
      }
  }

  buildTypes {
    release {
        signingConfig signingConfigs.release
    }
  }
}

答案 4 :(得分:0)

这是在androidStudio中配置运行发行版的过程

1-将构建变体更改为发行版。

enter image description here

2-打开项目结构。 enter image description here

3-将默认配置更改为$ signingConfigs.release enter image description here

答案 5 :(得分:0)

要使用发布版本进行编译,如下所示:

enter image description here