Advertisement
microo8

Untitled

Mar 28th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. /*
  2. * Copyright 2016 The Go Authors. All rights reserved.
  3. * Use of this source code is governed by a BSD-style
  4. * license that can be found in the LICENSE file.
  5. */
  6.  
  7. buildscript {
  8. repositories {
  9. jcenter()
  10. maven {
  11. url "https://plugins.gradle.org/m2/"
  12. }
  13. }
  14. dependencies {
  15. classpath 'com.android.tools.build:gradle:2.2+'
  16. classpath "gradle.plugin.org.golang.mobile.bind:gobindPlugin:0.2.8"
  17. }
  18. }
  19.  
  20. apply plugin: 'com.android.application'
  21.  
  22. repositories {
  23. jcenter()
  24. }
  25.  
  26. android {
  27. compileSdkVersion 19
  28. buildToolsVersion "24.0.3"
  29.  
  30. defaultConfig {
  31. applicationId "com.github.microo8.meh.mobile.test1"
  32. minSdkVersion 15
  33. targetSdkVersion 19
  34. versionCode 1
  35. versionName "1.0"
  36. }
  37. buildTypes {
  38. release {
  39. minifyEnabled false
  40. }
  41. }
  42. dataBinding {
  43. enabled = true
  44. }
  45. }
  46.  
  47.  
  48. apply plugin: "org.golang.mobile.bind"
  49.  
  50. gobind {
  51. pkg = "github.com/microo8/meh/mobile/test1"
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement