Skip to content

Commit

Permalink
remove configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
friedger committed Nov 18, 2015
1 parent 837c0e9 commit e1c1233
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions app/build.gradle
Expand Up @@ -33,20 +33,14 @@ android {

evaluationDependsOn ':dependency'

configurations {
withOmnijar
}

dependencies {
withOmnijar project(path: ':dependency', configuration: 'omnijar')
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}


task pushOmnijar(type: Files, dependsOn: [configurations.withOmnijar, 'stopDebug']) {
task pushOmnijar(type: Files, dependsOn: 'stopDebug') {
script {
File file = project(":dependency").configurations.getByName("omnijar").artifacts.toArray()[0].getFile()
push file.getAbsolutePath(), '/sdcard/' + file.getName()
Expand Down

0 comments on commit e1c1233

Please sign in to comment.