expo-libmpv 0.3.4 → 0.3.5
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'com.libmpv'
|
|
4
|
-
version = '0.3.
|
|
4
|
+
version = '0.3.5'
|
|
5
5
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
6
6
|
apply from: expoModulesCorePlugin
|
|
7
7
|
applyKotlinExpoModulesCorePlugin()
|
|
@@ -43,7 +43,7 @@ android {
|
|
|
43
43
|
namespace "com.libmpv"
|
|
44
44
|
defaultConfig {
|
|
45
45
|
versionCode 1
|
|
46
|
-
versionName "0.3.
|
|
46
|
+
versionName "0.3.5"
|
|
47
47
|
}
|
|
48
48
|
lintOptions {
|
|
49
49
|
abortOnError false
|
|
@@ -125,10 +125,6 @@ class LibmpvView(context: Context, appContext: AppContext) :
|
|
|
125
125
|
mpv.setOptionString("opengl-es", "yes")
|
|
126
126
|
mpv.setOptionString("video-sync", "audio")
|
|
127
127
|
|
|
128
|
-
mpv.setOptionString("audio-samplerate","48000")
|
|
129
|
-
mpv.setOptionString("audio-format","float")
|
|
130
|
-
mpv.setOptionString("audio-buffer","2.0")
|
|
131
|
-
|
|
132
128
|
mpv.setOptionString("ao", "audiotrack")
|
|
133
129
|
mpv.setOptionString("alang", "")
|
|
134
130
|
|
package/app.json
CHANGED