我需要使用
adb拉动
要将apk从设备复制到计算机,
它可以与其他文件一起使用,但不能与apk一起使用吗?
我有一个包含2个文件的示例:
configurations {
jupiterTestCompile.extendsFrom testCompile
jupiterTestRuntime.extendsFrom testRuntime
jupiterTestCompileOnly.extendsFrom testCompileOnly
}
dependencies {
def jUnitVersion = "5.5.1"
jupiterTestCompile("org.junit.jupiter:junit-jupiter-
api:${jUnitVersion}")
jupiterTestRuntime("org.junit.jupiter:junit-jupiter-
engine:${jUnitVersion}")
jupiterTestCompileOnly("org.junit.jupiter:junit-jupiter-
migrationsupport:${jUnitVersion}")
jupiterTestRuntime("org.junit.vintage:junit-vintage-
engine:${jUnitVersion}")
}
如果我拉lo.txt可以正常工作
root@G4:/sdcard/data # ls -la
-rw-rw---- root sdcard_rw 1891454 2010-01-01 14:56 Launcher3.apk
-rw-rw---- root sdcard_rw 1173 2010-01-01 15:10 lo.txt
但是,如果我拉取任何apk,它只会转到下一行,没有错误,也没有响应,但没有完成文件拉取,
$adb pull /sdcard/data/lo.txt
/sdcard/data/lo.txt: 1 file pulled. 0.1 MB/s (1173 bytes in 0.009s)
我尝试重命名apk,如“ ls -la”所示,它具有与txt相同的权限。
还有什么问题?为什么我不能拉APK文件?
欢呼