mfuerstenau / gradle-buildconfig-plugin

A BuildConfig plugin for Gradle java projects
MIT License
173 stars 20 forks source link

Plugin creates 2 BuildConfig files #9

Closed Pirksy closed 8 years ago

Pirksy commented 8 years ago

Hello, i'm using '1.1.7' plugin. I want to move BuildConfig to another package using buildConfig { buildConfigField 'String', 'LIBRARY_NAME', 'java' packageName = 'com.io.lib.debug' } , but plugin creates two files - 'com.io.lib.debug' and 'com.io.lib'. How can I resolve this? Sorry for english

mfuerstenau commented 8 years ago

Can you give a little more detail. I guess com.io.lib is your your artifact group? Did you do a clean build or just a build (maybe there are some remains from previous builds)?

Pirksy commented 8 years ago

clean build helped, thank you