diff options
author | fhuya <fhuya@google.com> | 2020-03-26 07:34:07 -0700 |
---|---|---|
committer | fhuya <fhuya@google.com> | 2020-03-26 07:34:07 -0700 |
commit | 6837796a9d7acd3a5ea7ef241a23fd393c3a6609 (patch) | |
tree | a90acbe1a388d1aeec0e70836225890eb0894577 /hello_world/build.gradle | |
parent | f1a5737ecff60476da0a797c8063b44e4f2659b1 (diff) | |
download | godot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.tar.gz godot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.tar.bz2 godot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.zip |
Update repository structure: make each sample project (e.g: `hello_world`) a subproject in the `Godot-Android-Plugins` project.
Diffstat (limited to 'hello_world/build.gradle')
-rw-r--r-- | hello_world/build.gradle | 47 |
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']) } |