diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle index 1707293..9999925 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,13 +1,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 23 - buildToolsVersion "23.0.2" + compileSdkVersion 26 + //buildToolsVersion "23.0.2" defaultConfig { applicationId "org.bienvenidoainternet.app" minSdkVersion 15 - targetSdkVersion 23 + targetSdkVersion 26 versionCode 12 versionName "1.9" } @@ -20,15 +20,15 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:23.1.1' - compile 'com.android.support:design:23.1.1' - compile 'com.android.support:support-v4:23.1.1' - compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.4.1' - compile 'pl.droidsonroids.gif:android-gif-drawable:1.1.14' - compile 'com.koushikdutta.ion:ion:2.+' - compile 'org.jsoup:jsoup:1.9.1' + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'junit:junit:4.12' + implementation 'com.android.support:appcompat-v7:26.1.0' + implementation 'com.android.support:design:26.1.0' + implementation 'com.android.support:support-v4:26.1.0' + implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.4.1' + implementation 'pl.droidsonroids.gif:android-gif-drawable:1.1.14' + implementation 'com.koushikdutta.ion:ion:2.+' + implementation 'org.jsoup:jsoup:1.9.1' } |