diff options
author | Pacien TRAN-GIRARD | 2017-06-30 11:55:18 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2017-06-30 11:55:18 +0200 |
commit | 82ea8deab12d664dc4f941f329285ce4315057ad (patch) | |
tree | 9d2521b30214852dc5aa81a10d88fabf8db94507 | |
parent | 4594fc92fd2a46c0642873663f5eb0d82b173328 (diff) | |
download | tincapp-82ea8deab12d664dc4f941f329285ce4315057ad.tar.gz |
Update build deps
-rw-r--r-- | app/build.gradle | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index a707cbb..d662e2f 100644 --- a/app/build.gradle +++ b/app/build.gradle | |||
@@ -5,6 +5,7 @@ apply plugin: 'kotlin-android-extensions' | |||
5 | android { | 5 | android { |
6 | compileSdkVersion 25 | 6 | compileSdkVersion 25 |
7 | buildToolsVersion '25.0.0' | 7 | buildToolsVersion '25.0.0' |
8 | |||
8 | defaultConfig { | 9 | defaultConfig { |
9 | applicationId "org.pacien.tincapp" | 10 | applicationId "org.pacien.tincapp" |
10 | minSdkVersion 21 | 11 | minSdkVersion 21 |
@@ -15,12 +16,14 @@ android { | |||
15 | abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a' | 16 | abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a' |
16 | } | 17 | } |
17 | } | 18 | } |
19 | |||
18 | buildTypes { | 20 | buildTypes { |
19 | release { | 21 | release { |
20 | minifyEnabled true | 22 | minifyEnabled true |
21 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | 23 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
22 | } | 24 | } |
23 | } | 25 | } |
26 | |||
24 | externalNativeBuild { | 27 | externalNativeBuild { |
25 | cmake { | 28 | cmake { |
26 | path "CMakeLists.txt" | 29 | path "CMakeLists.txt" |
@@ -31,11 +34,11 @@ android { | |||
31 | dependencies { | 34 | dependencies { |
32 | compile fileTree(dir: 'libs', include: ['*.jar']) | 35 | compile fileTree(dir: 'libs', include: ['*.jar']) |
33 | 36 | ||
34 | compile 'com.android.support:appcompat-v7:25.3.1' | 37 | compile 'com.android.support:appcompat-v7:25.4.0' |
35 | compile 'com.android.support:design:25.3.1' | 38 | compile 'com.android.support:design:25.4.0' |
36 | compile 'com.android.support:support-v4:25.3.1' | 39 | compile 'com.android.support:support-v4:25.4.0' |
37 | compile 'com.android.support:recyclerview-v7:25.3.1' | 40 | compile 'com.android.support:recyclerview-v7:25.4.0' |
38 | compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha4' | 41 | compile 'com.android.support.constraint:constraint-layout:1.0.2' |
39 | 42 | ||
40 | compile('org.apache.commons:commons-configuration2:2.1.1') { | 43 | compile('org.apache.commons:commons-configuration2:2.1.1') { |
41 | exclude group: 'commons-logging', module: 'commons-logging' | 44 | exclude group: 'commons-logging', module: 'commons-logging' |
@@ -46,6 +49,11 @@ dependencies { | |||
46 | 49 | ||
47 | compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" | 50 | compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" |
48 | } | 51 | } |
52 | |||
49 | repositories { | 53 | repositories { |
50 | mavenCentral() | 54 | mavenCentral() |
55 | jcenter() | ||
56 | maven { | ||
57 | url "https://maven.google.com" | ||
58 | } | ||
51 | } | 59 | } |