github.com/SahandAslani/gomobile@v0.0.0-20210909130135-2cb2d44c09b2/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 repositories { 9 flatDir { 10 dirs '.' 11 } 12 } 13 14 android { 15 compileSdkVersion 27 16 17 defaultConfig { 18 applicationId "org.golang.example.android" 19 minSdkVersion 15 20 targetSdkVersion 27 21 versionCode 1 22 versionName "1.0" 23 } 24 buildTypes { 25 release { 26 minifyEnabled false 27 } 28 } 29 } 30 31 dependencies { 32 implementation 'com.android.support:appcompat-v7:22.1.1' 33 implementation (name:'hello', ext:'aar') 34 }