summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2021-02-23 17:11:32 +0100
committerByteHamster <info@bytehamster.com>2021-02-23 17:11:32 +0100
commit2c70db70745566ebc7035a546a241dcb115afc69 (patch)
tree180e90b5100d41967515115f8c9fc9bb801d1f8f /app/build.gradle
parentf7409c08a60a783765b4a6d52a77d3cc1656e1dd (diff)
downloadAntennaPod-2c70db70745566ebc7035a546a241dcb115afc69.zip
Remove free build hack
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle11
1 files changed, 3 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 1fa52b53a..7f082494a 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -156,14 +156,7 @@ android {
}
dependencies {
- freeImplementation project(":core")
- // free build hack: skip some dependencies
- if (!doFreeBuild()) {
- playImplementation project(":core")
- implementation 'com.google.android.play:core:1.8.0'
- } else {
- System.out.println("app: free build hack, skipping some dependencies")
- }
+ implementation project(":core")
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
@@ -199,6 +192,8 @@ dependencies {
implementation 'com.github.ByteHamster:SearchPreference:v2.0.0'
implementation 'com.github.skydoves:balloon:1.1.5'
+ // Non-free dependencies:
+ playImplementation 'com.google.android.play:core:1.8.0'
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
androidTestImplementation "org.awaitility:awaitility:$awaitilityVersion"