2
votes
1answer
297 views

android-maven-plugin: Disable debug build for apk

I am not clear about the exact procedure for disabling debug build while building with android-maven-plugin: I understand that the export wizard with ADT(21.1) will automatically disable debugging ...
1
vote
1answer
94 views

Core libraries with android maven plugin

I want to use nativ libraries with android. When i try to complie my project with mvn clean install I get an error [INFO] If you really intend to build a core library -- which is only [INFO] ...
4
votes
1answer
107 views

Create Apklib for building with maven

I have Android project A which refers Android library project B, Building Project A on eclipse works fine. But my app using some system API so I thought to build using maven. I am not getting how to ...
0
votes
1answer
348 views

HoloEverywhere 1.4.2 + Maven Not building the demo Android project

I have holoeveywhere "running" in eclipse and I can successully build the "HoloEverywhere Build", as referenced in this link. https://github.com/ChristopheVersieux/HoloEverywhere/wiki/Maven However, ...
1
vote
1answer
106 views

issues with android-maven-plugin

(After really many hours trying it, I finally resign.) Alright: -1. I do mvn -X archetype:generate -DarchetypeArtifactId=android-release -DarchetypeGroupId=de.akquinet.android.archetypes ...
0
votes
2answers
54 views

Still manual configuration for using the android maven plugin?

I'm learning how to use maven for android development, and just to be sure I'm on the right track. I found here and here that the archetype is not still on the standard catalog, so one has to edit ...
0
votes
0answers
152 views

not able to deploy android build to GIT repository through Maven Android Plugin

I am trying to deploy my android project to Git repository using Maven-Android-Plugin. However while deploying I am getting an error like: ***Failed to deploy artifacts: Could not find artifact ...
1
vote
1answer
1k views

Can not build android project using Maven-Android-Plugin

I was just trying to build my android project using Maven-Android-Plugin. But it's giving following error: F:\Android\AsyncTaskSample>mvn clean install [INFO] Scanning for projects... [INFO] ...
1
vote
0answers
108 views

External dependencies with Maven on an Android project

I'm working on an Android app. I want it to be able to retrieve articles from wikipedia. After looking around, I decided to use the bliki external library, so I installed the Maven plugin to "make ...
0
votes
0answers
37 views

Run a android class from maven

I have a maven project in which there is a button which return some status, I want if the status is true then another class file will be called which include another like .xml file which contain some ...
2
votes
3answers
990 views

How to generate .apklib and .apk in same maven build?

So I am using Android Maven Plugin to generate apklib snapshot for one of my library project. But the Library project is also self sufficient to run on its own so I am thinking that may be we should ...
1
vote
1answer
204 views

Share apklib file but hide the source code Is it possible?

So I have Android library projects which are built using android-maven-plugin. This results in the generation of .apklib snapshot. This snapshot has all the java source code and resources for that ...
1
vote
1answer
196 views

Hard time with running Proguard using android maven plugin for obfuscating apklib

I am looking to obfuscate non public methods etc in the android apklib file so that I can distribute the apklib file with other people without compromising on sharing all my source code since apklib ...
1
vote
2answers
654 views

Install “Android M2e” Plugin or basically “Android Configurator for M2E 0.4.2” in Eclipse Mobile Juno

Trying to install Android M2e plugin as given on http://rgladwell.github.com/m2e-android/ with no luck. I am getting this exception for "Android Configurator for M2E 0.4.2" Cannot complete the ...
2
votes
5answers
3k views

android maven plugin does not get ANDROID_HOME env variable in Eclipse

i'm working on an Android app project and it is a Maven project. when i try to run as "maven install" this is what i get: "Failed to execute goal ...
3
votes
1answer
517 views

Maven Integration for Android Development

How can we used Maven for android? I'm using Lint tool in android for programming error solution. Is it Maven same as this tool or provide more features over android? Because i'm using Maven tool ...
0
votes
1answer
237 views

How to check that maven goal called during phase

I configured some plugin goals to be executed during some phases of my build lifecycle (maven android application). But i think that i take a mistake during configuring plugin and want to ensure that ...
1
vote
2answers
2k views

Updating a maven library project into main project (android)

i'm trying to understand Maven Android Plugin with the examples found here: https://github.com/jayway/maven-android-plugin-samples/archives/stable I'm using the example "libraryproject" and all is ...
0
votes
1answer
829 views

eclipse won't find imports

I am trying to follow the instructions at the following site to install a picasa web android client application: ...
0
votes
1answer
417 views

maven-android-plugin passing build properties

I have a property file in asset folder, i want to override the values in this property file at project build time. like mvn clean install -Durl=https://xyx.xom? EX: assets/my_prop.properties # ...
0
votes
2answers
604 views

Android - maven - build error

maven-plugin , the build is success , but the when i try mvn clean install i got this logs [INFO] Reloading plugin container for: org.apache.maven.plugins:maven-clean-plugin. The plugin artifact has ...
0
votes
0answers
134 views

main.xml and strings.xml are overridden on android:generate-sources

I've setup a clean android project using the archetypes. Whenever I try to modify main.xml and strings.xml in res/layout and res/values it fails. Correctly: Not the editing failes, after running mvn ...
0
votes
0answers
738 views

Android Maven Plugin does not work

I´m trying to run the android greenhouse client with the android maven plugin and I got the following execption while trying to execute mvn clean install: [ERROR] Failed to execute goal ...
4
votes
1answer
5k views

Maven says missing plugins: how to install them?

I've got some problems using Maven on this ready-to-use project: http://wiki.javaforum.hu/display/ANDROIDSOAP/Home Basically, I just need to change a couple of rows and I should be ready to use the ...
8
votes
1answer
5k views

Error in pom file in Maven project after importing into Eclipse

I am actually new to the Maven framework. I already have a Maven project. I installed the Maven plugin etc into my EclipseIDE from http://m2eclipse.sonatype.org/sites/m2e. Then I imported my project ...
0
votes
1answer
433 views

Setting Environment variables for using Windows MAVEN for ANdroid

I want to use maven for Android. what Environment Variables should i set, such mvn command work. First i setted JAVA_HOME to jdk folder and ANDROID_HOME to ANdroid-sdk folder using set command. but ...
1
vote
2answers
4k views

Android maven plugin, unable to deploy to device

I've got a simple android project, its building the APK OK however I can't get it to deploy to my device. Currently I have to copy over the APK manually and install it, which is quite annoying. I've ...
3
votes
1answer
867 views

No resource found in Android project using a Library Project

We are using Maven-Android-Plugin to compile an Android project that uses a Library Project. Because the plugin doesn't support yet the Library project type of package, We're using this modification ...