diff --git a/android/app/build.gradle b/android/app/build.gradle index bd24e172..20873f42 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -142,8 +142,8 @@ android { targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled true - versionCode 86 - versionName "1.0.63" + versionCode 87 + versionName "1.0.64" resValue "string", "build_config_package", "co.audius.app" } productFlavors { diff --git a/ios/AudiusReactNative.xcodeproj/project.pbxproj b/ios/AudiusReactNative.xcodeproj/project.pbxproj index da9789c9..6192b3e6 100644 --- a/ios/AudiusReactNative.xcodeproj/project.pbxproj +++ b/ios/AudiusReactNative.xcodeproj/project.pbxproj @@ -410,13 +410,13 @@ BUNDLE_ID_SUFFIX = ""; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "AudiusReactNative/Audius Music.entitlements"; - CURRENT_PROJECT_VERSION = 142; + CURRENT_PROJECT_VERSION = 143; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = LRFCG93S85; INFOPLIST_FILE = AudiusReactNative/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.0.55; + MARKETING_VERSION = 1.0.56; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -442,12 +442,12 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "AudiusReactNative/Audius Music.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 142; + CURRENT_PROJECT_VERSION = 143; DEVELOPMENT_TEAM = LRFCG93S85; INFOPLIST_FILE = AudiusReactNative/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.0.55; + MARKETING_VERSION = 1.0.56; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -630,13 +630,13 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "AudiusReactNative/Audius Music.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 142; + CURRENT_PROJECT_VERSION = 143; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = LRFCG93S85; INFOPLIST_FILE = AudiusReactNative/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.0.55; + MARKETING_VERSION = 1.0.56; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -710,12 +710,12 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = "AudiusReactNative/Audius Music.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 142; + CURRENT_PROJECT_VERSION = 143; DEVELOPMENT_TEAM = LRFCG93S85; INFOPLIST_FILE = AudiusReactNative/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.0.55; + MARKETING_VERSION = 1.0.56; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", diff --git a/ios/AudiusReactNative/Info.plist b/ios/AudiusReactNative/Info.plist index cde1fb24..c84c6dc4 100644 --- a/ios/AudiusReactNative/Info.plist +++ b/ios/AudiusReactNative/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 142 + 143 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/src/components/web/WebApp.tsx b/src/components/web/WebApp.tsx index d466208b..feb17664 100644 --- a/src/components/web/WebApp.tsx +++ b/src/components/web/WebApp.tsx @@ -34,8 +34,8 @@ const URL_OVERRIDE = Config.URL_OVERRIDE const STATIC_PORT = Config.STATIC_SERVER_PORT || 3100 export const URL_SCHEME = 'audius://' -// Intercept localhost://, file:///, audius://, or recaptcha -const URL_INTERCEPT_PATTERN = /^(http:\/\/localhost|file:\/\/\/|audius:\/\/|https:\/\/www.google.com\/recaptcha\/.*)/ +// Intercept localhost://, file:///, audius://, twitter embed, or recaptcha +const URL_INTERCEPT_PATTERN = /^(http:\/\/localhost|file:\/\/\/|audius:\/\/|https:\/\/platform.twitter|https:\/\/www.google.com\/recaptcha\/.*)/ const AUDIUS_SITE_PREFIX = /^(https|http):\/\/audius.co\// const AUDIUS_REDIRECT_SITE_PREFIX = /^(https|http):\/\/redirect.audius.co\/app-redirect\// const AUDIUS_PORT_INCLUDE_PATTERN = /(:3100|:3101)/