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
Today I used patch-package to patch freerasp-react-native@3.3.1 for the project I'm working on.
After installing this package, I got this problem:
Could not determine the dependencies of task ':freerasp-react-native:compileDebugAidl'.
Could not resolve all task dependencies for configuration ':freerasp-react-native:debugCompileClasspath'.
Could not find com.facebook.react:react-native:.
Required by:
project :freerasp-react-native
Here is the diff that solved my problem:
diff --git a/node_modules/freerasp-react-native/android/build.gradle b/node_modules/freerasp-react-native/android/build.gradle
index dc11f30..7bb74ed 100644
--- a/node_modules/freerasp-react-native/android/build.gradle+++ b/node_modules/freerasp-react-native/android/build.gradle@@ -83,7 +83,7 @@ dependencies {
// For < 0.71, this will be from the local maven repo
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
//noinspection GradleDynamicVersion
- implementation "com.facebook.react:react-native"+ implementation "com.facebook.react:react-native:0.70.3"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.aheaditec.talsec.security:TalsecSecurity-Community-ReactNative:8.0.4"
}
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue! We were aware that this occurs with older versions of react-native and always proposed the same fix as you did (to hardcode the version of react-native).
It seems like a general solution would be to use implementation "com.facebook.react:react-native:+, but we will have to do some testing to see if we don't break the versions that are currently working.
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
freerasp-react-native@3.3.1
for the project I'm working on.After installing this package, I got this problem:
Could not determine the dependencies of task ':freerasp-react-native:compileDebugAidl'.
Here is the diff that solved my problem:
The text was updated successfully, but these errors were encountered: