From a9126f72142468397a061ebff426c1233dded7fc Mon Sep 17 00:00:00 2001 From: kLeZ Date: Tue, 23 Sep 2014 09:58:05 +0200 Subject: Some other Eclipse integration, modified AndroidManifest.xml to match build.gradle information (app version, sdk version) --- app/copyLibs.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/copyLibs.gradle') 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( -- cgit v1.2.3