mirror of
https://github.com/go-i2p/gomobile-java.git
synced 2025-07-13 06:07:45 -04:00

That supports GOARCH property. Also this CL updates examples and upgrades the android gradle plugin used in examples (from 1.2.3 to 1.5.0) For golang/go#12819 Change-Id: Ibfed128eaf725775810aa539bd5c0e1ca88f1b85 Reviewed-on: https://go-review.googlesource.com/20331 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:1.5.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|