我有三星Galaxy S5 设备运行 Android 4.4.2 它工作得很好,直到几个星期我开始遇到这个问题,Android Studio无法安装应用程序后我按下运行并构建gradle
其他信息:我尝试在第一次运行时在模拟器上运行应用程序,在我做了一些更改后,我尝试再次在模拟器上运行但是更改已经应用了
这是gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.incorp.anisvikernes.appex"
minSdkVersion 19
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:cardview-v7:23.1.0'
}
这是LogCat:
03:49:45 Executing tasks: [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:prepareDebugUnitTestDependencies, :app:mockableAndroidJar, :app:compileDebugSources, :app:compileDebugAndroidTestSources, :app:compileDebugUnitTestSources]
03:51:04 Gradle build finished in 1m 18s 412ms
05:23:54 Executing tasks: [:app:assembleDebug]
05:28:19 Gradle build finished in 4m 25s 153ms
05:28:32 Error during Sync: An existing connection was forcibly closed by the remote host
05:28:32 Session 'app': Error Installing APK
这是错误
08/20 05:28:26: Launching app
$ adb push D:\projects\appex\app\build\outputs\apk\app-debug.apk /data/local/tmp/com.incorp.anisvikernes.appex
java.io.IOException: An existing connection was forcibly closed by the remote host
Error while Installing APK
答案 0 :(得分:0)
我通过
解决了同样的问题1. Disable USB debugging and developer options
2. Disconnect the device from USB
3. Re enable USB debugging and developer options
4. Reconnect device
有些人说我当时遇到问题,杀死并重新启动adb工作。
答案 1 :(得分:0)
我实际上找到了解决这个问题的解决方案,看起来真的很奇怪而且很奇怪但是在更新我的驱动程序之后(Win键+ x - >设备管理器 - >转到我的设备和按下更新按钮)我更改了用于将手机连接到我的电脑的USB电缆,它立即起作用
答案 2 :(得分:-1)
几小时没有成功,取下USB延长线对我有用。 除了你所描述的安装APK过程之外,任何东西都可以使用usb-extension电缆。也许其他人可以通过将USB电缆更换为短而稳定的工作电缆来解决这个问题。