diff options
author | kLeZ <julius8774@gmail.com> | 2014-09-23 09:58:05 +0200 |
---|---|---|
committer | kLeZ <julius8774@gmail.com> | 2014-09-23 09:58:05 +0200 |
commit | a9126f72142468397a061ebff426c1233dded7fc (patch) | |
tree | b483c5825392ff9cce845544b0315eb98c12f489 /app/copyLibs.gradle | |
parent | cac3e8e71c1b073d6f3b65dbb301c56ce7fa7fa7 (diff) |
Some other Eclipse integration, modified AndroidManifest.xml to match build.gradle information (app version, sdk version)
Diffstat (limited to 'app/copyLibs.gradle')
-rw-r--r-- | app/copyLibs.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/copyLibs.gradle b/app/copyLibs.gradle index a8555cb0..d0fa5f8e 100644 --- a/app/copyLibs.gradle +++ b/app/copyLibs.gradle @@ -67,7 +67,7 @@ task ('copyJarDependenciesIntoLibs', type: CopyJars) { description = 'Used for Eclipse. Copies JAR dependencies to the libs directory.' - destination = file(project.projectDir.canonicalPath + File.separator + 'libs') + destination = file(project.projectDir.canonicalPath + File.separator + 'src' + File.separator + 'main' + File.separator + 'libs') afterEvaluate { source = files( @@ -87,7 +87,7 @@ task ('extractAarDependenciesIntoLibs', type: ExtractAars) { description = 'Used for Eclipse. Extracts AAR dependencies into the libs directory.' - destination = file(project.projectDir.canonicalPath + File.separator + 'libs') + destination = file(project.projectDir.canonicalPath + File.separator + 'src' + File.separator + 'main' + File.separator + 'libs') afterEvaluate { source = files( |