updated gradle dependencies

This commit is contained in:
NudeDude 2018-08-15 12:44:00 +02:00
parent c3a39b35c2
commit 141795e586
3 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@
</value> </value>
</option> </option>
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View File

@ -1,12 +1,12 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
buildToolsVersion '28.0.1' buildToolsVersion '28.0.2'
compileSdkVersion 27 compileSdkVersion 28
defaultConfig { defaultConfig {
applicationId "org.nuclearfog.twidda" applicationId "org.nuclearfog.twidda"
minSdkVersion 22 minSdkVersion 22
targetSdkVersion 27 targetSdkVersion 28
versionCode 1 versionCode 1
versionName '1.8' versionName '1.8'
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
@ -31,9 +31,9 @@ dependencies {
implementation 'com.github.QuadFlask:colorpicker:0.0.13' implementation 'com.github.QuadFlask:colorpicker:0.0.13'
implementation 'com.squareup.picasso:picasso:2.71828' implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support:appcompat-v7:28+'
implementation 'com.android.support:cardview-v7:27.1.1' implementation 'com.android.support:cardview-v7:28+'
implementation 'com.android.support:design:27.1.1' implementation 'com.android.support:design:28+'
} }
repositories { repositories {

View File

@ -7,7 +7,7 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.3' classpath 'com.android.tools.build:gradle:3.1.4'
} }
} }