aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2016-07-16 15:11:36 +0200
committersteckbrief <steckbrief@chefmail.de>2016-07-16 15:11:36 +0200
commit97100834a5bcb08f2fdf2eb6c580d3ceeb8b6b2f (patch)
tree7dc5897dc229b39a123484fb3a20bb989ee3c1fb /build.gradle
parent10e607ac51dcc42fa1b54bacb698beed43750de7 (diff)
Implements FS#227: Store password encrypted in internal database
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle14
1 files changed, 13 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index de4d418e..f58ac6df 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,7 +3,6 @@
buildscript {
repositories {
jcenter()
- mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
@@ -21,6 +20,9 @@ repositories {
flatDir {
dirs 'libs/3rdParty/jcenter', 'libs/3rdParty/maven'
}
+ maven {
+ url "http://snippets.thedevstack.de/mvn"
+ }
}
dependencies {
@@ -55,6 +57,10 @@ dependencies {
// Android dependencies
compile 'com.android.support:support-v13:23.2.0'
+
+ testCompile 'junit:junit:4.12'
+ // Optional -- Mockito framework
+ testCompile 'org.mockito:mockito-core:1.10.19'
}
ext {
@@ -90,6 +96,12 @@ android {
playstore
free
}
+ testOptions {
+ unitTests.all {
+ // All the usual Gradle options.
+ jvmArgs '-XX:MaxPermSize=256m'
+ }
+ }
if (project.hasProperty('mStoreFile') &&
project.hasProperty('mStorePassword') &&
project.hasProperty('mKeyAlias') &&