summaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2023-01-22 16:48:14 +0100
committerThomas <tschneider.ac@gmail.com>2023-01-22 16:48:14 +0100
commitd77dd2c3497697d2d24b9e57fc43249ed05f5af8 (patch)
tree5cb80dbaa943c91dd49a1805a9842727d837e6ca /app/build.gradle
parente9571221becec2b696d7834db9da63fa5fa8e63b (diff)
Split files
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle52
1 files changed, 50 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 8e0b66e40..d5e61613e 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -67,9 +67,14 @@ android {
res.srcDirs = [
'src/main/res/layouts/mastodon',
'src/main/res/layouts/peertube',
- ' src/main/res/layouts',
+ 'src/main/res/layouts',
+ 'src/main/res/drawables/mastodon',
+ 'src/main/res/drawables/peertube',
+ 'src/main/res/drawables',
+ 'src/main/res/menus/mastodon',
+ 'src/main/res/menus/peertube',
+ 'src/main/res/menus',
'src/main/res'
-
]
}
}
@@ -154,6 +159,49 @@ dependencies {
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.8.1'
implementation 'com.r0adkll:slidableactivity:2.1.0'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
+
+
+ implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
+ implementation "androidx.fragment:fragment:1.5.5"
+ implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
+ implementation 'androidx.browser:browser:1.4.0'
+ implementation 'androidx.documentfile:documentfile:1.0.1'
+ implementation 'com.github.amoskorir:avatarimagegenerator:1.5.0'
+ implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
+ implementation 'com.google.android.exoplayer:extension-mediasession:2.18.1'
+ implementation "com.github.mabbas007:TagsEditText:1.0.5"
+ implementation "net.gotev:uploadservice:4.5.1"
+ implementation "net.gotev:uploadservice-okhttp:4.5.1"
+ implementation 'androidx.media:media:1.6.0'
+ implementation 'com.github.ybq:Android-SpinKit:1.4.0'
+ implementation 'com.github.mancj:MaterialSearchBar:0.8.5'
+
+ implementation 'com.github.vkay94:DoubleTapPlayerView:1.0.0'
+
+
+ //************ CAST **************///
+
+ //---> Google libs (google_full)
+ playstoreImplementation "com.google.android.gms:play-services-cast-tv:19.0.1"
+ playstoreImplementation "com.google.android.gms:play-services-cast:21.0.1"
+ playstoreImplementation "androidx.mediarouter:mediarouter:1.3.0"
+ playstoreImplementation 'com.google.android.gms:play-services-cast-framework:21.0.1'
+
+ playstoreImplementation "com.google.android.gms:play-services-cast-tv:19.0.1"
+ playstoreImplementation "com.google.android.gms:play-services-cast:21.0.1"
+ playstoreImplementation "androidx.mediarouter:mediarouter:1.3.0"
+ playstoreImplementation 'com.google.android.gms:play-services-cast-framework:21.0.1'
+
+ //----> Other flavors
+ fdroidImplementation 'su.litvak.chromecast:api-v2:0.11.3'
+ fdroidImplementation 'com.fasterxml.jackson.core:jackson-core:2.12.0'
+ fdroidImplementation 'org.slf4j:slf4j-simple:1.7.30'
+ fdroidImplementation 'com.github.evozi:Cyanea:1.0.7'
+
+ fdroidImplementation 'su.litvak.chromecast:api-v2:0.11.3'
+ fdroidImplementation 'com.fasterxml.jackson.core:jackson-core:2.12.0'
+ fdroidImplementation 'org.slf4j:slf4j-simple:1.7.30'
+
}
def getCurrentFlavor() {
Gradle gradle = getGradle()