misc/androidstudio: release gobind gradle plugin 0.2.4

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>
This commit is contained in:
Hyang-Ah Hana Kim
2016-03-07 16:11:13 -05:00
parent 493d0b451b
commit 2e1e39e5a6
6 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.2.3' classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files

View File

@ -4,7 +4,7 @@
*/ */
plugins { plugins {
id "org.golang.mobile.bind" version "0.2.3" id "org.golang.mobile.bind" version "0.2.4"
} }
gobind { gobind {

View File

@ -5,7 +5,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.2.3' classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files

View File

@ -3,7 +3,7 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
plugins { plugins {
id "org.golang.mobile.bind" version "0.2.2" id "org.golang.mobile.bind" version "0.2.4"
} }
gobind { gobind {

View File

@ -5,7 +5,7 @@ gobindPlugin invokes gomobile bind command on the specified package.
build.gradle: build.gradle:
<pre> <pre>
plugins { plugins {
id "org.golang.mobile.bind" version "0.2.2" id "org.golang.mobile.bind" version "0.2.4"
} }
gobind { gobind {

View File

@ -31,7 +31,7 @@ pluginBundle {
website = 'https://golang.org/x/mobile' website = 'https://golang.org/x/mobile'
vcsUrl = 'https://golang.org/x/mobile' vcsUrl = 'https://golang.org/x/mobile'
description = 'Plugin for gomobile projects (beta)' description = 'Plugin for gomobile projects (beta)'
version = '0.2.3' version = '0.2.4'
plugins { plugins {
gobindPlugin { gobindPlugin {