CB-11244: Android Studio 3 work, things have changed with how the platform is built

This commit is contained in:
Joe Bowser
2017-11-01 17:08:43 -07:00
parent 8ba0109e55
commit 18d6884522
2 changed files with 12 additions and 7 deletions
+6 -3
View File
@@ -23,10 +23,13 @@ buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.android.tools.build:gradle:3.0.0'
}
}
@@ -39,7 +42,7 @@ allprojects {
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3.0'
gradleVersion = '4.1.0'
}
// Configuration properties. Set these via environment variables, build-extras.gradle, or gradle.properties.
@@ -227,7 +230,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
implementation fileTree(dir: 'libs', include: '*.jar')
// SUB-PROJECT DEPENDENCIES START
debugCompile(project(path: ":CordovaLib", configuration: "debug"))
releaseCompile(project(path: ":CordovaLib", configuration: "release"))