Skip to content

Commit

Permalink
Merge pull request #4 from mgeier63/master
Browse files Browse the repository at this point in the history
fixed testing
  • Loading branch information
oversecio authored Dec 15, 2018
2 parents b3c02e5 + 52fdb2b commit e705f2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ dependencies {
implementation 'com.android.support:design:28.0.0'

testImplementation 'junit:junit:4.12'
testImplementation project(':libraries:oversec_crypto:crypto')
}

//Note: update with ./gradlew -q calculateChecksums
Expand Down Expand Up @@ -247,7 +248,8 @@ task preBuildMangleEntities << {
def tasknames = project.gradle.startParameter.taskNames

def taskname = tasknames[0]
def apptgt = taskname.replace(":app:","").replace("assemble","").replace("generate","").replace("install","").replace("Debug","").replace("Release","").replace("Sources","").toLowerCase()
def apptgt = taskname.replace(":app:","").replace("assemble","").replace("test","").replace("generate","").replace("install","").replace("Debug","").replace("Release","").replace("Sources","").replace("UnitTest","").toLowerCase()
if (apptgt.isEmpty()) {apptgt = "intern"}

def rootDir = project.projectDir.getParent()

Expand Down

0 comments on commit e705f2f

Please sign in to comment.