@roitium/expo-orpheus 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +22 -22
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -14,38 +14,38 @@ useExpoPublishing()
|
|
|
14
14
|
// Most of the time, you may like to manage the Android SDK versions yourself.
|
|
15
15
|
def useManagedAndroidSdkVersions = false
|
|
16
16
|
if (useManagedAndroidSdkVersions) {
|
|
17
|
-
|
|
17
|
+
useDefaultAndroidSdkVersions()
|
|
18
18
|
} else {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
buildscript {
|
|
20
|
+
// Simple helper that allows the root project to override versions declared by this library.
|
|
21
|
+
ext.safeExtGet = { prop, fallback ->
|
|
22
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
23
|
+
}
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
project.android {
|
|
26
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 36)
|
|
27
|
+
defaultConfig {
|
|
28
|
+
minSdkVersion safeExtGet("minSdkVersion", 24)
|
|
29
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 36)
|
|
30
|
+
}
|
|
30
31
|
}
|
|
31
|
-
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
android {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
35
|
+
namespace "expo.modules.orpheus"
|
|
36
|
+
defaultConfig {
|
|
37
|
+
versionCode 1
|
|
38
|
+
versionName "0.1.0"
|
|
39
|
+
}
|
|
40
|
+
lintOptions {
|
|
41
|
+
abortOnError false
|
|
42
|
+
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
dependencies {
|
|
46
46
|
implementation "androidx.media3:media3-exoplayer:1.8.0"
|
|
47
47
|
implementation "androidx.media3:media3-session:1.8.0"
|
|
48
|
-
implementation "com.squareup.retrofit2:retrofit:
|
|
48
|
+
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
|
49
49
|
implementation "com.google.code.gson:gson:2.13.2"
|
|
50
|
-
implementation "com.squareup.retrofit2:converter-gson:
|
|
50
|
+
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
|
51
51
|
}
|