Skip to content

Commit

Permalink
Update to Android Studio 3.0, with new gradle and build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
gbl08ma committed Nov 2, 2017
1 parent 57b9e96 commit d3d1f94
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 25 deletions.
10 changes: 10 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 1 addition & 14 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {

android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "im.tny.segvault.disturbances"
minSdkVersion 15
Expand Down Expand Up @@ -43,8 +43,7 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
debugCompile project(path: ':s2ls', configuration: "debug")
releaseCompile project(path: ':s2ls', configuration: "release")
implementation project(':s2ls')
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8.1'
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.13'
compile 'com.evernote:android-job:1.1.9'
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_done_success.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/colorSuccess"
android:fillColor="#4CAF50"
android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_edit_primary_light_24dp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/colorPrimaryLight"
android:fillColor="#5591CD"
android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_stop_accent_24dp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/colorAccent"
android:fillColor="#F15D2A"
android:pathData="M6,6h12v12H6z"/>
</vector>
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'io.realm:realm-gradle-plugin:3.5.0'

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Apr 05 15:51:08 WEST 2017
#Thu Nov 02 16:19:22 WET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
2 changes: 1 addition & 1 deletion s2ls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {

android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
buildToolsVersion '26.0.2'

defaultConfig {
minSdkVersion 15
Expand Down

0 comments on commit d3d1f94

Please sign in to comment.