mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
Per Android Studio 3.0 [Release Notes](https://android-developers.googleblog.com/2017/10/android-studio-30.html) -Update gradle version -Change deprecated `compile` dependencies to `implementation` or `api` -Change maven repositories to google (triplet plugin still on maven) - Update readme instructions for using the engine
18 lines
402 B
Groovy
18 lines
402 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
|
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|