Add prefernces.json validator lib

This commit is contained in:
viktoria 2017-01-29 13:00:21 +01:00
parent c64d45b758
commit 7d68b50a56
3 changed files with 15 additions and 2 deletions

3
.gitignore vendored
View file

@ -7,3 +7,6 @@ wear/wear.iml
.DS_Store
/build
/captures
*.apk
build/
**/*.iml

View file

@ -12,7 +12,6 @@ apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
}
def generateGitBuild = { ->
@ -106,12 +105,22 @@ android {
}
}
allprojects {
repositories {
jcenter()
flatDir {
dirs 'libs'
}
}
}
dependencies {
wearWearApp project(path: ':wear', configuration: 'fullRelease')
compile fileTree(include: ['*.jar'], dir: 'libs')
compile('com.crashlytics.sdk.android:crashlytics:2.5.7@aar') {
transitive = true;
}
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
@ -135,5 +144,6 @@ dependencies {
androidTestCompile 'org.mockito:mockito-core:2.+'
androidTestCompile "com.google.dexmaker:dexmaker:1.2"
androidTestCompile "com.google.dexmaker:dexmaker-mockito:1.2"
compile 'com.andreabaccega:android-edittext-validator:1.3.4'
compile(name:'android-edittext-validator-v1.3.4-mod', ext:'aar')
}

Binary file not shown.