gpt4 book ai didi

android - Android 项目中的测试 apk 在哪里?

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:47 36 4
gpt4 key购买 nike

为了运行测试,Android Studio/Gradle 生成一个测试 apk,它对应用程序 apk 执行测试。任何人都可以分享生成测试 apk 的位置以及项目中的位置吗?

下面是我的app/build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.ark.beacons_test"
minSdkVersion 16
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'
}
}

packagingOptions {
exclude 'META-INF/LICENSE'
}

}

dependencies {
compile fileTree(include: ['*.jar,*.aar'], dir: 'libs')
compile(name: 'android-lib', ext: 'aar')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
}

最佳答案

测试apk生成在rootProject/app/build/outputs/apk/文件夹中。但是要生成 test.apk 文件,您必须在 src/androidTest 文件夹中添加插桩测试,至少一个虚拟测试。然后通过右键单击项目资源管理器在设备上运行测试,然后选择“运行所有测试”或“运行测试”-->

enter image description here

运行测试后,将在上述文件夹中仅创建一个 test.apk 文件。

关于android - Android 项目中的测试 apk 在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43670463/

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