summaryrefslogtreecommitdiff
path: root/core/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle12
1 files changed, 10 insertions, 2 deletions
diff --git a/core/build.gradle b/core/build.gradle
index 31042456b..fa95800c2 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -30,6 +30,14 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
+ publishNonDefault true
+ productFlavors {
+ free {
+ }
+ play {
+ }
+ }
+
}
repositories {
@@ -59,9 +67,9 @@ dependencies {
compile "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
// Add casting features
- compile "com.google.android.libraries.cast.companionlibrary:ccl:$castCompanionLibVer"
+ playCompile "com.google.android.libraries.cast.companionlibrary:ccl:$castCompanionLibVer"
compile "com.android.support:mediarouter-v7:$supportVersion"
- compile "com.google.android.gms:play-services-cast:$playServicesVersion"
+ playCompile "com.google.android.gms:play-services-cast:$playServicesVersion"
}
allprojects {