summaryrefslogtreecommitdiff
path: root/platform/android/java/build.gradle
diff options
context:
space:
mode:
authorTimo Schwarzer <me@timoschwarzer.com>2020-06-22 09:17:26 +0200
committerTimo Schwarzer <me@timoschwarzer.com>2020-06-22 09:21:05 +0200
commit83a966f0d88698ef9dab3db18f19c142380a4780 (patch)
tree87c4b6fc14997df6a65724c9e0b00ebb743f2403 /platform/android/java/build.gradle
parent492625db28aaef7be670488f10f1f1053c8620ad (diff)
Remove GodotPayment android plugin
This is now available in a separate repository at https://github.com/godotengine/godot-google-play-billing
Diffstat (limited to 'platform/android/java/build.gradle')
-rw-r--r--platform/android/java/build.gradle8
1 files changed, 0 insertions, 8 deletions
diff --git a/platform/android/java/build.gradle b/platform/android/java/build.gradle
index 80c6be0fae..821a4dc584 100644
--- a/platform/android/java/build.gradle
+++ b/platform/android/java/build.gradle
@@ -97,13 +97,6 @@ task copyReleaseAARToAppModule(type: Copy) {
include('godot-lib.release.aar')
}
-task copyGodotPaymentPluginToAppModule(type: Copy) {
- dependsOn ':plugins:godotpayment:assembleRelease'
- from('plugins/godotpayment/build/outputs/aar')
- into('app/libs/plugins')
- include('GodotPayment.release.aar')
-}
-
/**
* Copy the Godot android library archive release file into the root bin directory.
* Depends on the library build task to ensure the AAR file is generated prior to copying.
@@ -161,7 +154,6 @@ task generateGodotTemplates(type: GradleBuild) {
}
}
- dependsOn 'copyGodotPaymentPluginToAppModule'
finalizedBy 'zipCustomBuild'
}