2
0

Adjust gradle build configuration to new project structure.

This commit is contained in:
Maarten Billemont
2017-03-06 14:52:52 -05:00
parent c6b285a9c0
commit 10cfe95158
6 changed files with 27 additions and 14 deletions

View File

@@ -27,14 +27,15 @@ android {
}
buildTypes {
release {
signingConfig signingConfigs.release
if (System.getenv('STORE_PW') != null)
signingConfig signingConfigs.release
}
}
}
dependencies {
compile project( ':masterpassword-algorithm' )
compile project( ':masterpassword-tests' )
compile project( ':masterpassword:algorithm' )
compile project( ':masterpassword:tests' )
// Android dependencies
compile 'org.slf4j:slf4j-android:1.7.13-underscore'