我试图在命令行上为我的android项目生成一个APK。 我正在运行
./gradlew clean assembleProductionDebug
我得到的输出是:
:app:processProductionDebugManifest
:app:processProductionDebugResources
:app:generateProductionDebugSources
:app:compileProductionDebugJava
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:app:preDexProductionDebug
:app:dexProductionDebug
:app:processProductionDebugJavaRes UP-TO-DATE
:app:validateDebugSigning
:app:packageProductionDebug
:app:zipalignProductionDebug
:app:assembleProductionDebug
BUILD SUCCESSFUL
Total time: 2 mins 29.574 secs
但是,我的build / outputs文件夹是空的。我跑的时候也是这样 ./gradlew汇编
我可以搜索的唯一相关内容可能是https://gradle.org/docs/current/dsl/org.gradle.language.assembler.tasks.Assemble.html但是如何在build.gradle中指定objectFileDir?
注意:正在运行
./gradlew clean installProductionDebug
在我的设备上成功安装了APK。
相关的build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'git-dependencies'
apply plugin: 'testfairy'
apply plugin: 'org.robolectric'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.test.androidas"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
signingConfigs {
release {
storeFile file("as.keystore")
storePassword "***"
keyAlias "as"
keyPassword "***"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
productFlavors {
production {
applicationId "com.antsquare.test"
versionCode 1
}
staging {
applicationId "com.antsquare.test.staging"
versionCode 1
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
testfairyConfig {
apiKey '***'
video "wifi"
notify true
testersGroups "ME"
autoUpdate true
videoQuality "low"
videoRate "0.5"
}
}
答案 0 :(得分:1)
首先添加
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
...
lintOptions {
abortOnError false
}
}
在app
模块的build.gradle中。
之后按./gradlew task clean
清理项目,然后从控制台调用./gradlew task build --debug | grep .apk
,您将看到apk地址
答案 1 :(得分:0)
在Android Studio中,
如果构建成功但没有生成
的apk
文件而不启动模拟器。
解决方案:确保菜单中构建下方的下拉列表或运行<下拉列表左侧的下拉列表/ strong>被选为“应用”,然后运行或调试,
将生成的apk
文件并启动模拟器。