mirror of
https://github.com/netbirdio/gomobile-tvos-fork.git
synced 2026-05-22 18:43:29 -07:00
NDK 18 drops support for API levels below 16. Bump it to 16. NDK 18 also needs a newer version of the Android gradle plugin. Update the bind example and test build.gradle files. Change-Id: I71499c88b48c43b2d4da50e415cb0b0dcbbbed75 Reviewed-on: https://go-review.googlesource.com/136775 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
22 lines
401 B
Groovy
22 lines
401 B
Groovy
/* Copyright 2015 The Go Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style
|
|
* license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.1.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|