Skip to content

Commit

Permalink
Unpack apklibs in unpack directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed Mar 4, 2011
1 parent 7467285 commit 9feb0bd
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -155,10 +155,10 @@ public abstract class AbstractAndroidMojo extends AbstractMojo {
/**
* Extract the apklib dependencies here
*
* @parameter expression="${project.build.directory}/generated-sources/apklibs"
* @parameter expression="${project.build.directory}/unpack/apklibs"
* @readonly
*/
protected File extractedApkLibsDirectory;
protected File unpackedApkLibsDirectory;

/**
* Specifies which device to connect to, by serial number. Special values "usb" and "emulator" are also valid, for
Expand Down Expand Up @@ -727,6 +727,6 @@ private String getAndroidHomeOrThrow() throws MojoExecutionException {
}

protected String getLibraryUnpackDirectory(Artifact apkLibraryArtifact) {
return extractedApkLibsDirectory.getAbsolutePath() + "/" + apkLibraryArtifact.getId().replace(":", "_");
return unpackedApkLibsDirectory.getAbsolutePath() + "/" + apkLibraryArtifact.getId().replace(":", "_");
}
}

0 comments on commit 9feb0bd

Please sign in to comment.