Daniel Givoni
Daniel Givoni
i will test thanx @wijskinner
my build fails: > Task :app:processDebugGoogleServices Parsing json file: /../../../android/app/google-services.json > Task :app:processDebugManifest FAILED See http://g.co/androidstudio/manifest-merger for more information about the manifest merger. Deprecated Gradle features were used in this...
@jctfox i use RN 0.57 had the same problem and solved by [this](https://github.com/facebook/react-native/issues/19239#issuecomment-425623992) define the sdkTools version to use in `build.gradle` ```javascript subprojects { afterEvaluate {project -> if (project.hasProperty("android")) {...
on ios it works perfect on View as well but not on Android
not working on Android when trying to blur a View: for me viewRef returns a number, but fails to findView `@ReactProp(name = "viewRef") public void setViewRef(BlurringView view, int viewRef) {...
i got it to work, try wrapping all the view you want to blur in a single View. ```javascript render(){ const {...} = this.props return ( {this.blurBackgroundView = blurView}}> {this.renderTitleSubtitle(currentStage,...
this view you want to blur seems empty!? ```javascript (this.view = ref)} /> ```
@charleskoehl thanx - clear data worked for me
same here i added the urlScheme for googlemaps to `info.plist` but return false allways
i ended up using ```Linking.canOpenURL(appUrl.urlScheme)```