This commit is contained in:
tapframe 2025-07-27 20:50:33 +05:30
parent 49e9b213bc
commit 4c1ac848c7
3 changed files with 13 additions and 3 deletions

View file

@ -96,6 +96,15 @@ android {
versionCode 1
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 {
debug {
storeFile file('debug.keystore')

View file

@ -45,7 +45,8 @@
"WAKE_LOCK"
],
"package": "com.nuvio.app",
"versionCode": 1
"versionCode": 1,
"architectures": ["arm64-v8a", "armeabi-v7a", "x86", "x86_64"]
},
"web": {
"favicon": "./assets/favicon.png"

View file

@ -738,8 +738,8 @@ const AppNavigator = ({ initialRouteName }: { initialRouteName?: keyof RootStack
component={MetadataScreen}
options={{
headerShown: false,
animation: 'fade',
animationDuration: Platform.OS === 'android' ? 250 : 300,
animation: Platform.OS === 'android' ? 'none' : 'fade',
animationDuration: Platform.OS === 'android' ? 0 : 300,
...(Platform.OS === 'ios' && {
cardStyleInterpolator: customFadeInterpolator,
animationTypeForReplace: 'push',