You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading React Native to version 0.75.4. Session replay fails to compile for Android.
I get the following message
e: file:///Users/rmerchant/Projects/Avios/IAGLoyaltyMobile/node_modules/@datadog/mobile-react-native-session-replay/android/src/main/kotlin/com/datadog/reactnative/sessionreplay/utils/ReactViewBackgroundDrawableUtils.kt:31:22 Unresolved reference: fullBorderRadius
..
FAILURE: Build failed with an exception. * What went wrong:
Execution failed for task ':datadog_mobile-react-native-session-replay:compileDebugKotlin'.
apply plugin: "com.android.application"
apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "com.facebook.react"
// React-Native-Config https://www.npmjs.com/package/react-native-config#extra-step-for-android
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
// Custom plugins
// Firebase
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
/**
* This is the configuration block to customize your React Native Android app.
* By default you don't need to apply any configuration, just uncomment the lines you need.
*/
react {
/* Folders */
// The root of your project, i.e. where "package.json" lives. Default is '../..'
// root = file("../../")
// The folder where the react-native NPM package is. Default is ../../node_modules/react-native
// reactNativeDir = file("../../node_modules/react-native")
// The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
// codegenDir = file("../../node_modules/@react-native/codegen")
// The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
// cliFile = file("../../node_modules/react-native/cli.js")
/* Variants */
// The list of variants to that are debuggable. For those we're going to
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
// debuggableVariants = ["liteDebug", "prodDebug"]
/* Bundling */
// A list containing the node command and its flags. Default is just 'node'.
// nodeExecutableAndArgs = ["node"]
//
// The command to run when bundling. By default is 'bundle'
// bundleCommand = "ram-bundle"
//
// The path to the CLI configuration file. Default is empty.
// bundleConfig = file(../rn-cli.config.js)
//
// The name of the generated asset file containing your JS bundle
// bundleAssetName = "MyApplication.android.bundle"
//
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
// entryFile = file("../js/MyApplication.android.js")
//
// A list of extra flags to pass to the 'bundle' commands.
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
// extraPackagerArgs = []
/* Hermes Commands */
// The hermes compiler command to run. By default it is 'hermesc'
// hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
//
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
// hermesFlags = ["-O", "-output-source-map"]
/* Autolinking */
autolinkLibrariesWithApp()
}
repositories{
google()
mavenCentral()
maven { url "https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/repository" }
}
/**
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
*/
def enableProguardInReleaseBuilds = false
/**
* The preferred build flavor of JavaScriptCore (JSC)
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
android {
ndkVersion rootProject.ext.ndkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdk rootProject.ext.compileSdkVersion
namespace "com.iagloyaltymobile"
defaultConfig {
// applicationId "com.iagloyaltymobile"
applicationId project.hasProperty("applicationId") ? project.property("applicationId") : "com.iagloyaltymobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode project.hasProperty("versionCode") ? project.property("versionCode") as int : 909090
versionName project.hasProperty("versionName") ? project.property("versionName") : "9.9.9"
//----- Add Custom config below with the package name that uses it. -----//
// React-Native-Config https://www.npmjs.com/package/react-native-config#advanced-android-setup
resValue "string", "build_config_package", "com.iagloyaltymobile"
// Auth0
manifestPlaceholders = [auth0Domain: project.env.get("AUTH0_DOMAIN"), auth0Scheme: "${applicationId}"]
// multiDexEnabled true @TODO I turned of multidex because I'm not sure what it's needed
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storeFile file(MYAPP_UPLOAD_STORE_FILE)
storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://reactnative.dev/docs/signed-apk-android.
signingConfig project.hasProperty('MYAPP_UPLOAD_STORE_FILE') ? signingConfigs.release : signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
/* Add the firebaseCrashlytics extension (by default,
* it's disabled to improve build speeds) and set
* nativeSymbolUploadEnabled to true along with a pointer to native libs. */
firebaseCrashlytics {
nativeSymbolUploadEnabled true
unstrippedNativeLibsDir "build/intermediates/merged_native_libs/release/out/lib"
}
}
}
}
dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
} else {
implementation jscFlavor
}
}
Other relevant information
ReactViewBackgroundDrawableUtils is calling fullBorderRadius from com.facebook.react.views.view.ReactViewBackgroundDrawable
@marco-saia-datadog Sorry to tag you in this issue, but it's currently blocking us from upgrading to RN 0.75 which this library says its supports. Is anyone looking at this?
rmerchant-IAGL
changed the title
Unresolved reference: fullBorderRadius
Session Replay: Unresolved reference: fullBorderRadius
Nov 26, 2024
We currently have some blockers that we need to solve in order to grant full support for RN 0.75.
In the meantime, you could apply this PR with patch-package, to unblock your progress, and we will keep you posted as soon as an official fix will be released.
Describe the issue
After upgrading React Native to version 0.75.4. Session replay fails to compile for Android.
I get the following message
Reproduction steps
npx react-native run-android
SDK logs
No response
Device Information
No response
SDK version
@datadog/mobile-react-native-session-replay: 2.4.4-alpha.0
Integration Methods
NPM
React Native Version
0.75.4
Package.json Contents
iOS Setup
No response
Android Setup
androd/build.gradle
android/app/build.gradle
Other relevant information
ReactViewBackgroundDrawableUtils
is callingfullBorderRadius
fromcom.facebook.react.views.view.ReactViewBackgroundDrawable
dd-sdk-reactnative/packages/react-native-session-replay/android/src/main/kotlin/com/datadog/reactnative/sessionreplay/utils/ReactViewBackgroundDrawableUtils.kt
Line 31 in 7e201e3
com.facebook.react.views.view.ReactViewBackgroundDrawable
is now deprecated andCSSBackgroundDrawable
should be used instead.https://github.com/facebook/react-native/blob/6e06a810f0ab1002f1d10351bc878babde36b1f1/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java
The text was updated successfully, but these errors were encountered: