Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
refactor gradle files
Browse files Browse the repository at this point in the history
Change-Id: I186215509442dcc9973ef13fe543c3c2af2425a9
  • Loading branch information
weiznich committed Aug 12, 2015
1 parent 0144632 commit f4362c1
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions build.gradle
@@ -1,4 +1,3 @@
apply plugin: 'com.android.library'
/*******************************************************************************
* Mirakel is an Android App for managing your ToDo-Lists
*
Expand All @@ -18,9 +17,6 @@ apply plugin: 'com.android.library'
* along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/

//apply plugin: 'hugo'


android {
sourceSets {
main {
Expand All @@ -36,7 +32,8 @@ android {
}
}
dependencies {
compile project(':colorpicker')
compile project(':helper')
debugCompile project(path: ':helper',configuration: 'debug')
releaseCompile project(path: ':helper',configuration: 'release')
debugCompile project(path: ':colorpicker',configuration: 'debug')
releaseCompile project(path: ':colorpicker',configuration: 'release')
}

0 comments on commit f4362c1

Please sign in to comment.