Commit a mostly working Gradle build

Currently, the initial build fails, but second one succeeds
ugly-unit-test
DjBushido 2014-04-30 16:11:18 -04:00
parent a47d007ccb
commit 83448dc9c7
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,10 @@ apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile fileTree('libs') {
include '*.jar'
builtBy 'minimalBibleJSword'
}
compile project(':appcompat_v7')
}