mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-20 16:22:04 +00:00
changes
This commit is contained in:
parent
49e9b213bc
commit
4c1ac848c7
3 changed files with 13 additions and 3 deletions
|
|
@ -96,6 +96,15 @@ android {
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0.0"
|
versionName "1.0.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
splits {
|
||||||
|
abi {
|
||||||
|
reset()
|
||||||
|
enable true
|
||||||
|
universalApk false // If true, also generate a universal APK
|
||||||
|
include "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
|
||||||
|
}
|
||||||
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
debug {
|
debug {
|
||||||
storeFile file('debug.keystore')
|
storeFile file('debug.keystore')
|
||||||
|
|
|
||||||
3
app.json
3
app.json
|
|
@ -45,7 +45,8 @@
|
||||||
"WAKE_LOCK"
|
"WAKE_LOCK"
|
||||||
],
|
],
|
||||||
"package": "com.nuvio.app",
|
"package": "com.nuvio.app",
|
||||||
"versionCode": 1
|
"versionCode": 1,
|
||||||
|
"architectures": ["arm64-v8a", "armeabi-v7a", "x86", "x86_64"]
|
||||||
},
|
},
|
||||||
"web": {
|
"web": {
|
||||||
"favicon": "./assets/favicon.png"
|
"favicon": "./assets/favicon.png"
|
||||||
|
|
|
||||||
|
|
@ -738,8 +738,8 @@ const AppNavigator = ({ initialRouteName }: { initialRouteName?: keyof RootStack
|
||||||
component={MetadataScreen}
|
component={MetadataScreen}
|
||||||
options={{
|
options={{
|
||||||
headerShown: false,
|
headerShown: false,
|
||||||
animation: 'fade',
|
animation: Platform.OS === 'android' ? 'none' : 'fade',
|
||||||
animationDuration: Platform.OS === 'android' ? 250 : 300,
|
animationDuration: Platform.OS === 'android' ? 0 : 300,
|
||||||
...(Platform.OS === 'ios' && {
|
...(Platform.OS === 'ios' && {
|
||||||
cardStyleInterpolator: customFadeInterpolator,
|
cardStyleInterpolator: customFadeInterpolator,
|
||||||
animationTypeForReplace: 'push',
|
animationTypeForReplace: 'push',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue