react-native-tpstreams 0.1.5 → 0.1.6
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
|
@@ -110,7 +110,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
|
110
110
|
dependencies {
|
|
111
111
|
implementation "com.facebook.react:react-android"
|
|
112
112
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
113
|
-
implementation "com.tpstreams.player:player:3.1.
|
|
113
|
+
implementation "com.tpstreams.player:player:3.1.5"
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
if (isNewArchitectureEnabled()) {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
2
|
package="com.tpstreams">
|
|
3
|
+
<application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true" android:networkSecurityConfig="@xml/network_security_config"></application>
|
|
3
4
|
</manifest>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<network-security-config>
|
|
3
|
+
<domain-config cleartextTrafficPermitted="true">
|
|
4
|
+
<domain includeSubdomains="true">localhost</domain>
|
|
5
|
+
<domain includeSubdomains="true">10.0.2.2</domain>
|
|
6
|
+
<domain includeSubdomains="true">http://127.0.0.1</domain>
|
|
7
|
+
</domain-config>
|
|
8
|
+
</network-security-config>
|
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<resources>
|
|
2
|
-
|
|
3
|
-
<!-- Base application theme. -->
|
|
4
|
-
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
5
|
-
<!-- Customize your theme here. -->
|
|
6
|
-
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
|
|
7
|
-
<item name="bottomSheetDialogTheme">@style/Theme.Design.Light.BottomSheetDialog</item>
|
|
8
|
-
</style>
|
|
9
|
-
|
|
10
|
-
</resources>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<resources>
|
|
2
|
-
|
|
3
|
-
<!-- Base application theme. -->
|
|
4
|
-
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
5
|
-
<!-- Customize your theme here. -->
|
|
6
|
-
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
|
|
7
|
-
<item name="bottomSheetDialogTheme">@style/Theme.Design.BottomSheetDialog</item>
|
|
8
|
-
</style>
|
|
9
|
-
|
|
10
|
-
</resources>
|