mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-08 22:15:57 +00:00
42 lines
727 B
Groovy
42 lines
727 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "com.android.tools.build:gradle:4.0.0"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
ext.pluginVersionCode = 1
|
||
|
ext.pluginVersionName = "0.6.0"
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
buildToolsVersion "29.0.3"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 18
|
||
|
targetSdkVersion 29
|
||
|
versionCode pluginVersionCode
|
||
|
versionName pluginVersionName
|
||
|
}
|
||
|
|
||
|
libraryVariants.all { variant ->
|
||
|
variant.outputs.all { output ->
|
||
|
output.outputFileName = "godot_tts.aar"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly fileTree(dir: 'libs')
|
||
|
}
|