Also - include a properties file for org.golang.mobile.bind.canary which is used to canary before release. - update example/bind/android gradle config. Change-Id: I1dd0ff94a772b287a2f9be1a915ea72b1c3b0d52 Reviewed-on: https://go-review.googlesource.com/23678 Reviewed-by: David Crawshaw <crawshaw@golang.org>
23 lines
501 B
Groovy
23 lines
501 B
Groovy
/* Copyright 2015 The Go Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style
|
|
* license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|