github.com/c-darwin/mobile@v0.0.0-20160313183840-ff625c46f7c9/example/bind/android/app/build.gradle (about)

     1  /*
     2   * Copyright 2015 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  apply plugin: 'com.android.application'
     7  
     8  android {
     9      compileSdkVersion 22
    10      buildToolsVersion "22.0.1"
    11  
    12      defaultConfig {
    13          applicationId "org.golang.example.android"
    14          minSdkVersion 15
    15          targetSdkVersion 22
    16          versionCode 1
    17          versionName "1.0"
    18      }
    19      buildTypes {
    20          release {
    21              minifyEnabled false
    22          }
    23      }
    24  }
    25  
    26  dependencies {
    27      compile fileTree(include: ['*.jar'], dir: 'libs')
    28      compile 'com.android.support:appcompat-v7:22.1.1'
    29      compile project(':hello')
    30  }