diff options
author | conorsmith <conor.smith42@gmail.com> | 2023-09-03 16:40:59 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2023-10-11 12:36:19 +0200 |
commit | 5719f6dc6bc35096af5922d410c2175463fea974 (patch) | |
tree | 731bdfca4789a712c4d048f7631982da6b70da47 /remoteExample | |
parent | 29e3cc3727732fe9cbe32b1e7991b77d90290fbb (diff) |
Use gradle catalog to align project dependencies across modules/gradle files
Diffstat (limited to 'remoteExample')
-rw-r--r-- | remoteExample/build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index 648a30bf..179555bb 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -3,8 +3,9 @@ * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt */ -apply plugin: 'com.android.application' - +plugins { + alias libs.plugins.android.application +} android { compileSdkVersion 33 |