summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-08-18 12:04:04 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2023-08-18 12:04:04 -0700
commit91e24fe17791f432456f24e9dec781afc335f9b3 (patch)
treebc4f93e65c44de78f2c607c4e09890ca77bf55b3 /plugins
parentc734dd980de4bcd2351ef80a4956646506402ab1 (diff)
downloadgodot-android-samples-91e24fe17791f432456f24e9dec781afc335f9b3.tar.gz
godot-android-samples-91e24fe17791f432456f24e9dec781afc335f9b3.tar.bz2
godot-android-samples-91e24fe17791f432456f24e9dec781afc335f9b3.zip
Move the Godot Android library dependency to `config.gradle`
This simplifies the process of updating the Godot Android lib dependency for all projects.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/hello_gdextension/build.gradle3
-rw-r--r--plugins/hello_signals/build.gradle3
-rw-r--r--plugins/hello_world/build.gradle3
3 files changed, 3 insertions, 6 deletions
diff --git a/plugins/hello_gdextension/build.gradle b/plugins/hello_gdextension/build.gradle
index 216001d..11896d5 100644
--- a/plugins/hello_gdextension/build.gradle
+++ b/plugins/hello_gdextension/build.gradle
@@ -40,8 +40,7 @@ android {
}
dependencies {
- // TODO: Update the godot dep when 4.2 is stable
- compileOnly "io.github.m4gr3d:godot:4.2.0.dev-SNAPSHOT"
+ compileOnly libraries.godotAndroidLib
implementation "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlinVersion"
}
diff --git a/plugins/hello_signals/build.gradle b/plugins/hello_signals/build.gradle
index eff0811..d639858 100644
--- a/plugins/hello_signals/build.gradle
+++ b/plugins/hello_signals/build.gradle
@@ -25,8 +25,7 @@ android {
}
dependencies {
- // TODO: Update the godot dep when 4.2 is stable
- compileOnly "io.github.m4gr3d:godot:4.2.0.dev-SNAPSHOT"
+ compileOnly libraries.godotAndroidLib
implementation "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlinVersion"
}
diff --git a/plugins/hello_world/build.gradle b/plugins/hello_world/build.gradle
index b948b11..598366e 100644
--- a/plugins/hello_world/build.gradle
+++ b/plugins/hello_world/build.gradle
@@ -25,8 +25,7 @@ android {
}
dependencies {
- // TODO: Update the godot dep when 4.2 is stable
- compileOnly "io.github.m4gr3d:godot:4.2.0.dev-SNAPSHOT"
+ compileOnly libraries.godotAndroidLib
implementation "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlinVersion"
}