From 2e1e39e5a64203ad7ed9716e117333cc0622885a Mon Sep 17 00:00:00 2001 From: Hyang-Ah Hana Kim Date: Mon, 7 Mar 2016 16:11:13 -0500 Subject: [PATCH] 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 --- example/bind/android/build.gradle | 2 +- example/bind/android/hello/build.gradle | 2 +- example/ivy/android/build.gradle | 2 +- example/ivy/android/ivy/build.gradle | 2 +- misc/androidstudio/README.md | 2 +- misc/androidstudio/build.gradle | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/bind/android/build.gradle b/example/bind/android/build.gradle index cc7ccc8..1ed912b 100644 --- a/example/bind/android/build.gradle +++ b/example/bind/android/build.gradle @@ -8,7 +8,7 @@ buildscript { jcenter() } 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 // in the individual module build.gradle files diff --git a/example/bind/android/hello/build.gradle b/example/bind/android/hello/build.gradle index ff1bedb..3a46cc8 100644 --- a/example/bind/android/hello/build.gradle +++ b/example/bind/android/hello/build.gradle @@ -4,7 +4,7 @@ */ plugins { - id "org.golang.mobile.bind" version "0.2.3" + id "org.golang.mobile.bind" version "0.2.4" } gobind { diff --git a/example/ivy/android/build.gradle b/example/ivy/android/build.gradle index 9405f3f..a6fcfe1 100644 --- a/example/ivy/android/build.gradle +++ b/example/ivy/android/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } 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 // in the individual module build.gradle files diff --git a/example/ivy/android/ivy/build.gradle b/example/ivy/android/ivy/build.gradle index ceea5c1..19c7d73 100644 --- a/example/ivy/android/ivy/build.gradle +++ b/example/ivy/android/ivy/build.gradle @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. plugins { - id "org.golang.mobile.bind" version "0.2.2" + id "org.golang.mobile.bind" version "0.2.4" } gobind { diff --git a/misc/androidstudio/README.md b/misc/androidstudio/README.md index 1488b87..bef878e 100644 --- a/misc/androidstudio/README.md +++ b/misc/androidstudio/README.md @@ -5,7 +5,7 @@ gobindPlugin invokes gomobile bind command on the specified package. build.gradle:
 plugins {
-  id "org.golang.mobile.bind" version "0.2.2"
+  id "org.golang.mobile.bind" version "0.2.4"
 }
 
 gobind {
diff --git a/misc/androidstudio/build.gradle b/misc/androidstudio/build.gradle
index 1980001..95c6a01 100644
--- a/misc/androidstudio/build.gradle
+++ b/misc/androidstudio/build.gradle
@@ -31,7 +31,7 @@ pluginBundle {
   website = 'https://golang.org/x/mobile'
   vcsUrl = 'https://golang.org/x/mobile'
   description = 'Plugin for gomobile projects (beta)'
-  version = '0.2.3'
+  version = '0.2.4'
 
   plugins {
     gobindPlugin {