Merge "Force APKs to be streamed" into nyc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
dd100f4298
@@ -1146,14 +1146,15 @@ class PackageManagerShellCommand extends ShellCommand {
|
||||
private int doWriteSplit(int sessionId, String inPath, long sizeBytes, String splitName,
|
||||
boolean logSuccess) throws RemoteException {
|
||||
final PrintWriter pw = getOutPrintWriter();
|
||||
if ("-".equals(inPath)) {
|
||||
inPath = null;
|
||||
} else if (inPath != null) {
|
||||
final File file = new File(inPath);
|
||||
if (file.isFile()) {
|
||||
sizeBytes = file.length();
|
||||
}
|
||||
if (sizeBytes <= 0) {
|
||||
pw.println("Error: must specify a APK size");
|
||||
return 1;
|
||||
}
|
||||
if (inPath != null && !"-".equals(inPath)) {
|
||||
pw.println("Error: APK content must be streamed");
|
||||
return 1;
|
||||
}
|
||||
inPath = null;
|
||||
|
||||
final SessionInfo info = mInterface.getPackageInstaller().getSessionInfo(sessionId);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user