summaryrefslogtreecommitdiff
path: root/hello_world/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'hello_world/build.gradle')
-rw-r--r--hello_world/build.gradle47
1 files changed, 26 insertions, 21 deletions
diff --git a/hello_world/build.gradle b/hello_world/build.gradle
index f07e19a..71da365 100644
--- a/hello_world/build.gradle
+++ b/hello_world/build.gradle
@@ -1,29 +1,34 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
+apply plugin: 'com.android.library'
-buildscript {
-
- repositories {
- google()
- jcenter()
-
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.6.0'
-
+android {
+ compileSdkVersion 29
+ buildToolsVersion "29.0.1"
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
+ defaultConfig {
+ minSdkVersion 18
+ targetSdkVersion 29
+ versionCode 1
+ versionName "1.0"
}
-}
-allprojects {
- repositories {
- google()
- jcenter()
-
+ // Used to customize the name of generated AAR file.
+ libraryVariants.all { variant ->
+ variant.outputs.all { output ->
+ output.outputFileName = "HelloWorld.${variant.name}.aar"
+ }
}
+
}
-task clean(type: Delete) {
- delete rootProject.buildDir
+dependencies {
+ /*
+ Used to provide dependency on the Godot Android library. A version of that
+ library will be made available for each stable release of Godot.
+
+ `compileOnly` is used instead of `implementation` to ensure that the
+ godot library is not bundled with the generated plugin AAR file. This is
+ necessary since the Godot editor will also provide a version of the godot
+ library when building the final binary.
+ */
+ compileOnly fileTree(dir: '../libs', include: ['godot-lib*.aar'])
}