From 9f461f7091e5caca01bec9ea74b135d1190d28ec Mon Sep 17 00:00:00 2001 From: tapframe Date: Fri, 26 Dec 2025 12:32:19 +0530 Subject: [PATCH] ksplayer sub rendering fix --- android/app/build.gradle | 6 +++--- android/app/src/main/res/values/strings.xml | 2 +- app.json | 8 ++++---- ios/Nuvio/Info.plist | 4 ++-- src/utils/version.ts | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 4b30dcc..01e95a1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -95,8 +95,8 @@ android { applicationId 'com.nuvio.app' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 28 - versionName "1.3.0" + versionCode 29 + versionName "1.3.1" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" } @@ -118,7 +118,7 @@ android { def abiVersionCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2, 'x86': 3, 'x86_64': 4] applicationVariants.all { variant -> variant.outputs.each { output -> - def baseVersionCode = 28 // Current versionCode 28 from defaultConfig + def baseVersionCode = 29 // Current versionCode 29 from defaultConfig def abiName = output.getFilter(com.android.build.OutputFile.ABI) def versionCode = baseVersionCode * 100 // Base multiplier diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index d3b987a..83a0c11 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -3,5 +3,5 @@ contain false dark - 1.3.0 + 1.3.1 \ No newline at end of file diff --git a/app.json b/app.json index e466fc7..eb30423 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Nuvio", "slug": "nuvio", - "version": "1.3.0", + "version": "1.3.1", "orientation": "default", "backgroundColor": "#020404", "icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png", @@ -18,7 +18,7 @@ "supportsTablet": true, "requireFullScreen": true, "icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png", - "buildNumber": "28", + "buildNumber": "29", "infoPlist": { "NSAppTransportSecurity": { "NSAllowsArbitraryLoads": true @@ -52,7 +52,7 @@ "android.permission.WRITE_SETTINGS" ], "package": "com.nuvio.app", - "versionCode": 28, + "versionCode": 29, "architectures": [ "arm64-v8a", "armeabi-v7a", @@ -99,6 +99,6 @@ "fallbackToCacheTimeout": 30000, "url": "https://grim-reyna-tapframe-69970143.koyeb.app/api/manifest" }, - "runtimeVersion": "1.3.0" + "runtimeVersion": "1.3.1" } } \ No newline at end of file diff --git a/ios/Nuvio/Info.plist b/ios/Nuvio/Info.plist index a205c9a..dd57a5d 100644 --- a/ios/Nuvio/Info.plist +++ b/ios/Nuvio/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.2.10 + 1.3.1 CFBundleSignature ???? CFBundleURLTypes @@ -39,7 +39,7 @@ CFBundleVersion - 28 + 29 LSMinimumSystemVersion 12.0 LSRequiresIPhoneOS diff --git a/src/utils/version.ts b/src/utils/version.ts index 3fef1b3..1ac9425 100644 --- a/src/utils/version.ts +++ b/src/utils/version.ts @@ -1,7 +1,7 @@ // Single source of truth for the app version displayed in Settings // Update this when bumping app version -export const APP_VERSION = '1.3.0'; +export const APP_VERSION = '1.3.1'; export function getDisplayedAppVersion(): string { return APP_VERSION;