android-maven-plugin and resource filtering
问题 I'm newbie in maven and trying to configure it to build my android project with android-maven-plugin. I have an application.properties file in assets directory which contains different application settings. And i want to obtain this values from my pom. In properties file i define one property as myFilteredProperty=${helloFromPOM} and also define the same property in POM: <properties> <helloFromPOM>MY PROPERTY</helloFromPOM> </properties> Switched on filtering on assets dir <build> ...