Closed mikehardy closed 3 years ago
I'm test integrating this into a work project to make sure it's good - first attempt to test it indicated it is not! :-) I'll mark it for review when it's ready
Okay, this works for me in my project with this reference:
"@notifee/react-native": "github:notifee/react-native-notifee#5f8a5688b4faf56648f60696243681e3837d7715",
...and this in postinstall so it works from source:
"postinstall": "patch-package && cd node_modules/@notifee/react-native && yarn"
...given I have this in my android/build.gradle
:
allprojects {
repositories {
// ...other repositories here...
maven {
url("$rootDir/../node_modules/@notifee/react-native/android/libs")
}
I think it is good to go but it is a breaking change and we can't tell people in enough places about this little thing they need to add in android/build.gradle
:point_up: - the changelog, the release notes, everywhere...
Fixes #151 Fixes https://github.com/notifee/documentation/issues/8
BREAKING CHANGE: add
to the group of
repositories
insideallprojects
inandroid/build.gradle
It will probably look like this after: