@@ -9,9 +9,9 @@ android {
9
9
def gitBranch = (System . getenv(' GIT_BRANCH' ) == null ? ' local' : System . getenv(' GIT_BRANCH' ). replace(' origin/' , ' ' ))
10
10
def releaseType = (System . getenv(' RELEASE_TYPE' ) == null ? ' NONE' : System . getenv(' RELEASE_TYPE' ))
11
11
def updateUrls = (System . getenv(' UPDATE_URLS' ) == null ? ' "https://popcorntime.sh/android-update.json"' : System . getenv(' UPDATE_URLS' ))
12
- def animeUrls = (System . getenv(' ANIME_URLS' ) == null ? ' "https://anime.api-fetch.sh /"' : System . getenv(' ANIME_URLS' ))
13
- def movieUrls = (System . getenv(' MOVIE_URLS' ) == null ? ' "https://movies-v2.api-fetch.sh /"' : System . getenv(' MOVIE_URLS' ))
14
- def tvUrls = (System . getenv(' TV_URLS' ) == null ? ' "https://tv-v2.api-fetch.sh /"' : System . getenv(' TV_URLS' ))
12
+ def animeUrls = (System . getenv(' ANIME_URLS' ) == null ? ' "https://popcorn-time.ga /"' : System . getenv(' ANIME_URLS' ))
13
+ def movieUrls = (System . getenv(' MOVIE_URLS' ) == null ? ' "https://popcorn-time.ga /"' : System . getenv(' MOVIE_URLS' ))
14
+ def tvUrls = (System . getenv(' TV_URLS' ) == null ? ' "https://popcorn-time.ga /"' : System . getenv(' TV_URLS' ))
15
15
16
16
defaultConfig {
17
17
minSdkVersion rootProject. ext. minSdk
@@ -25,6 +25,7 @@ android {
25
25
buildConfigField ' String[]' , ' TV_URLS' , ' {' + tvUrls + ' }'
26
26
versionCode buildNumber
27
27
multiDexEnabled true
28
+ resValue ' string' , ' sentry_dsn' , rootProject. ext. sentryDsn
28
29
}
29
30
30
31
buildTypes {
@@ -61,7 +62,7 @@ dependencies {
61
62
62
63
api ' androidx.legacy:legacy-support-v4:1.0.0'
63
64
api ' androidx.palette:palette:1.0.0'
64
- api ' com.google.android.material:material:1.1 .0'
65
+ api ' com.google.android.material:material:1.3 .0'
65
66
66
67
debugApi ' com.squareup.leakcanary:leakcanary-android:1.5'
67
68
releaseApi ' com.squareup.leakcanary:leakcanary-android-no-op:1.5'
@@ -71,8 +72,6 @@ dependencies {
71
72
api " com.squareup.picasso:picasso:${ rootProject.ext.picassoVersion} "
72
73
api " com.jakewharton:butterknife:${ rootProject.ext.butterknifeVersion} "
73
74
74
- api " com.github.TorrentStream:TorrentStreamServer-Android:${ rootProject.ext.torrentstreamServerVersion} "
75
-
76
75
api ' com.github.gabrielemariotti.changeloglib:changelog:2.1.0'
77
76
78
77
api ' com.koushikdutta.async:androidasync:2.1.9'
@@ -88,7 +87,10 @@ dependencies {
88
87
annotationProcessor " com.google.dagger:dagger-compiler:${ rootProject.ext.daggerVersion} "
89
88
annotationProcessor " com.jakewharton:butterknife-compiler:${ rootProject.ext.butterknifeVersion} "
90
89
91
- compileOnly " javax.annotation:javax.annotation-api:${ rootProject.ext.javaxAnnotationVersion} "
90
+ implementation " javax.annotation:javax.annotation-api:${ rootProject.ext.javaxAnnotationVersion} "
91
+ annotationProcessor " javax.annotation:javax.annotation-api:${ rootProject.ext.javaxAnnotationVersion} "
92
92
93
+ implementation ' io.sentry:sentry-android:4.3.0'
93
94
95
+ api project(" :StreamServerTorrent" )
94
96
}
0 commit comments