-
Notifications
You must be signed in to change notification settings - Fork 41
Code doesn't work on android, didn't check for ios #2
Comments
Thanks @AtulKondekar for raising the issue. Can you please share the screenshot of issue which you are getting. Are you trying to run the app from command line? Thanks |
Thanks @AtulKondekar for sharing the entire details. The issue was related to P.S:
You can refer example project for the Let me know in case you still face the same. Thanks |
@prscX I checked it again using the master code but i still get the same issue, my build gradle version is 2.3.3 and sdk is 25.0.3 |
Hi @AtulKondekar, My Bad, few changes were not pushed, can you please try the same by updating master. Please let me know in case you still face the same issue. Thanks |
I tried to run the master code but it still not working, i am getting the same error as above and i checked the com.alex.siriwaveview package, it is still missing RNSiriWaveViewPackage.java. |
Hi @AtulKondekar, Looks like some issue with
Please let me know in case it does not resolve the issue. I have also added the same in Thanks |
Hi @prscX , The code work for me when i included both the project path in settings.gradle of my project
and i had to compile both the projects in app/build.gradle then replaced But startAnimation and stopAnimation props are not working if i pass true;
i am getting an error saying Regards, |
Thanks @AtulKondekar for sharing the experience. I have updated I have made below fixes in order to handle NullPointerException: SiriWaveView siriWaveView = (SiriWaveView) SiriWaveViewFrame.getChildAt(0);
if (siriWaveView != null && animating == true && stopAnimation) {
animating = false;
siriWaveView.stopAnimation();
} Can you please update your source to verify the same, once it is verified I will push the release. Thanks |
Hi @prscX , I made the above mentioned changes. now code doesn't throw an error if it's ture but the methods setStartAnimation and setStopAnimation does not work because Regards, |
Hi @AtulKondekar, As per my understanding React Native is calling these method in some random order due to which the call is first coming to In order to Start & Stop Animation may be we can achieve this post Please let me know in case it does not work. Thanks |
Hi @prscX , Thank you for the changes code is working now. Regards, |
Thanks, I will push the release. Thanks |
Hi @AtulKondekar, I have pushed the release with 0.0.3 tag. Can you please install and verify. Please feel free to reach in case you face any issues. Thanks |
code doesn't work even after adding following code.
include ':siriwaveview' project(':siriwaveview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-siri-wave-view/android/SIRIWaveView/siriwaveview')
Looks like the package java file is missing in com.alex.siriwaveview
The text was updated successfully, but these errors were encountered: