gpt4 book ai didi

android - 如何为 androidTest.apk 重命名 outputFileName?

转载 作者:行者123 更新时间:2023-11-28 20:48:10 25 4
gpt4 key购买 nike

在互联网上搜索 2 天后,我无法找到重命名 android-test.apk(用于仪器测试)的输出文件名的方法。我正在使用 assembleAndroidTest 和 assembleDebug 构建调试和检测测试 apk。

对于调试构建,我设法更改名称并添加版本,但我无法为 androidTest.apk 执行此操作。如何为测试 apk 添加相同的版本和其他名称?这是我的 build.gradle(模块)

 android {
compileSdkVersion 29
buildToolsVersion "29.0.0"
project.archivesBaseName = "Automator"
defaultConfig {
applicationId "com.xxx.automator"
minSdkVersion 18
targetSdkVersion 29
versionCode 1
versionName "1.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
android.applicationVariants.all { variant ->
variant.outputs.all {
def appName = "Automator"
outputFileName = appName + "-${variant.versionName}.apk"
}
}
}
}

}

最佳答案

将此代码添加到您的应用 build.gradle:

android {
// Make custom APK name for test builds
testVariants.all { testVariant ->
testVariant.outputs.all { output ->
outputFileName = "CustomNameTest.apk"
}
}
}

关于android - 如何为 androidTest.apk 重命名 outputFileName?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57992300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com