Skip to content

Commit

Permalink
Upgrade to gradle 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vrih committed Nov 18, 2018
1 parent 5076b67 commit 7ab937c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
37 changes: 19 additions & 18 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '25.0.0'

defaultConfig {
applicationId "github.daneren2005.dsub"
Expand All @@ -27,14 +26,16 @@ android {
zipAlignEnabled true
}
}

flavorDimensions "version"
productFlavors {
floss {
// FLOSS build (no proprietary libraries)
dimension "version"
}
google {
// FLOSS build + Google libraries
// Adds ChromeCast support
dimension "version"
}
}

Expand All @@ -54,20 +55,20 @@ android {
}

dependencies {
compile project(':Server Proxy')
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:27.1.+'
compile 'com.android.support:appcompat-v7:27.1.+'
compile 'com.android.support:mediarouter-v7:27.1.+'
compile 'com.android.support:recyclerview-v7:27.1.+'
compile 'com.android.support:design:27.1.+'
googleCompile 'com.google.android.gms:play-services-cast:8.1.0'
compile 'com.sothree.slidinguppanel:library:3.0.0'
compile 'de.hdodenhof:circleimageview:1.2.1'
compile 'com.shehabic.droppy:Droppy:0.5.1@aar'
compile group: 'org.fourthline.cling', name: 'cling-core', version:'2.1.1'
compile group: 'org.fourthline.cling', name: 'cling-support', version:'2.1.1'
compile group: 'org.eclipse.jetty', name: 'jetty-server', version:'8.1.16.v20140903'
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version:'8.1.16.v20140903'
compile group: 'org.eclipse.jetty', name: 'jetty-client', version:'8.1.16.v20140903'
implementation project(path: ':ServerProxy')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:support-v4:27.1.+'
implementation 'com.android.support:appcompat-v7:27.1.+'
implementation 'com.android.support:mediarouter-v7:27.1.+'
implementation 'com.android.support:recyclerview-v7:27.1.+'
implementation 'com.android.support:design:27.1.+'
googleImplementation 'com.google.android.gms:play-services-cast:8.1.0'
implementation 'com.sothree.slidinguppanel:library:3.0.0'
implementation 'de.hdodenhof:circleimageview:1.2.1'
implementation 'com.shehabic.droppy:Droppy:0.5.1@aar'
implementation group: 'org.fourthline.cling', name: 'cling-core', version:'2.1.1'
implementation group: 'org.fourthline.cling', name: 'cling-support', version:'2.1.1'
implementation group: 'org.eclipse.jetty', name: 'jetty-server', version:'8.1.16.v20140903'
implementation group: 'org.eclipse.jetty', name: 'jetty-servlet', version:'8.1.16.v20140903'
implementation group: 'org.eclipse.jetty', name: 'jetty-client', version:'8.1.16.v20140903'
}
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ buildscript {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.2.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
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 @@
#Thu Nov 09 08:50:56 PST 2017
#Sun Nov 18 21:50:34 GMT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
6 changes: 4 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
include ':app', ':Server Proxy'
project(':Server Proxy').projectDir = new File('ServerProxy')
include ':app'

include ':ServerProxy'
project(':ServerProxy').projectDir = new File('ServerProxy')

0 comments on commit 7ab937c

Please sign in to comment.