The Java methods names were recently changed to lowercase, but the examples weren't updated. Fix that. While we're here, comment out the GOPATH and GO settings from the Go build.gradle file. They're confusing for the newcomer and only needed in the rare case where GOPATH is wrong or missing or if go is not in PATH. Change-Id: Ib795b440a0127c402e56b70529f6bd71c6f1322b Reviewed-on: https://go-review.googlesource.com/29594 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
25 lines
761 B
Groovy
25 lines
761 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.
|
|
*/
|
|
|
|
plugins {
|
|
id "org.golang.mobile.bind" version "0.2.6"
|
|
}
|
|
|
|
gobind {
|
|
/* The Go package path; must be under one of the GOPATH elements or
|
|
a relative to the current directory (e.g. ../../hello) */
|
|
pkg = "golang.org/x/mobile/example/bind/hello"
|
|
|
|
/* GOPATH where the Go package is; check `go env` */
|
|
// GOPATH = "/YOUR/GOPATH"
|
|
|
|
/* Absolute path to the go binary */
|
|
// GO = "/PATH/TO/GO"
|
|
|
|
/* Optionally, set the absolute path to the gomobile binary if the
|
|
/* gomobile binary is not located in the GOPATH's bin directory. */
|
|
// GOMOBILE = "/PATH/TO/GOMOBILE"
|
|
}
|