我有一个奇怪的问题,刚开始使用现有的Android Studio 2.3.3项目。
构建过程不会自动生成APK,在这种情况下app-debug.apk日志显示构建成功,但项目目录树中没有任何APK。但是,手动选择Build / Build APK工作正常。
当我更改源并单击运行时,这是一个问题。构建过程成功,但随后得到错误安装APK"进入模拟器(因为APK不存在)。
这个问题只发生在一个项目上,我之前正在玩Espresso。我的猜测是我改变了某个地方的设置,我无法弄清楚哪一个。我需要更改什么才能再次自动生成APK? build.gradle包括在内。
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 16
targetSdkVersion 25
versionCode 2
versionName "0.0.2"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file("/home/user/keystore/keystore.jks")
storePassword "xxxxxxxxxxxxxxxxxx"
keyAlias "xxxxxxxxxxxxxxxxx"
keyPassword "xxxxxxxxxxxxxxxxxxx"
}
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services-ads:10.2.4'
compile 'com.google.android.gms:play-services-location:10.2.4'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:1)
答案 1 :(得分:0)
由于#!/usr/bin/env bash
# start background tasks
python manage.py process_tasks &
gunicorn --workers=3 app.wsgi -b 0.0.0.0:8080
中的许多依赖关系,android studio花费了太多时间,然后说请求超时。因此,请看一下Build.gradle
。
执行这些步骤。
第一种方法:尝试最小化依赖性
第二种方法:添加MultiDEX Build.gradle
,用于androidX。
第三种方法:创建类implementation 'androidx.multidex:multidex:2.0.1'
,然后在Application标记中添加这样的Android清单文件
public class ApplicationDelegate extends MultiDexApplication {
}
答案 2 :(得分:0)
我的Android Studio一直都在这样做,所以我想出了一种解决方法。而不是去构建>构建APK。我只是运行应用程序。
运行该应用程序后,如果要在项目目录中进行构建>输出> apk,则会在该目录中找到您的APK。运行该应用时,Android Studio很少会引发错误。
编辑 该APK在物理设备上不起作用,我不知道是什么原因。不过它可以在模拟器上运行。