I'm having some issues getting RxAndroid and Google Play Services running together or even build the project in Android Studio after adding Google Play Services. I've used the following 2 helpful sites as references: How to setup retrolambda and Functional Reactive Programming with RxJava in Android. Now maybe I missed something, but I've had issues with java.exe (java 8) either aborting during the build with an exit error or issues with java 8 when running the actual application. From the errors I deduced that I needed retrolambda and there were still issues building my project.
RxAndroid aborts or does not build when Play Services is added
196 views Asked by Peter Birdsall At
1
There are 1 answers
Related Questions in ANDROID-STUDIO
- Flutter plugin development android src not opening after opening example
- Listview - Getting error while linking the items correctly in Android Java
- Failed to getEnergyData
- Adding new package in a flutter project does not work untill the android studio is restarted
- unity + Vuforia balck screen in android AR app
- Android Studio Using recently added resources in compose preview in multi-module project
- Flutter project is working in debug version but not in the release version
- Can't run gradlew.bat on Windows
- Android studio crash, nothing in logcat
- Android Studio shows there has 1 usage but No usages found in All places
- Gradle Build errors while running sample code on Android Studio Iguana
- Android camera application restriction to 12 mp
- Change back to default font size in Android Studio
- `android` Does Not Exist in `~/Android/Sdk/platform-tools`
- LSTM frozen layer containing clip_by_value causing android studio to crash when deployed
Related Questions in GOOGLE-PLAY-SERVICES
- How to add a banner adview to the layout?
- Как подтвердить свой адрес в Google Play Console в Беларуси?
- Google Play Games failing with specific user
- Google playstore console not showing policy compliance option while i publish the new update under Locations Permission App Content
- Why am I failing to get the new phone-picker to work properly?
- Flutter Google Mobile Ads : No virtual method addKeyword
- Google Play services don't work in Internal Testing
- Android's Google services error, something with Magisk and Zygote SIGABRT (SIGNAL 6)
- Google play Something went wrong error on pick a media from gallery
- Firebase Authentication Google Sign in fails with message (code:10 message:10) Flutter
- ISavedGameMetadata metadata returns Internal Error
- Should I provide my Google Developer Account credentials to Google Play?
- Achievements received in Google Play Games are reset after restarting the app
- Xamarin to MAUI Migration - After MAUI migration, Android app uploaded for open testing is not visible in google playstore
- Google Play Games Signin not working on some devices
Related Questions in RX-JAVA
- RxJava timeout conditionally
- RxJava PublishSubject buffer elements with timeout
- Android Rx: Conditioned timer of emitter
- How to work with youtube dl android library
- adjust delay value in rx java from source
- How to cleanup an Observable.take(1) properly?
- Reactive API counterpart of javax.sound?
- Convert Rx Observable to Flow using UseCase
- RxJava map nullable object
- retryWhen hanging after migrating from rxjava to rxjava2
- Android with Room and RxJava3 - Alternative to toList()?
- How to get current requested client URL in annotation interceptor?
- Android : How to observe three different sql queries and get multiple different results using RXJava
- How to combine completable with Observable
- What should I use instead of the deprecated `Vertex#rxExecuteBlocking`, starting with Vert.x 4.5?
Related Questions in RX-ANDROID
- How to cleanup an Observable.take(1) properly?
- Android : RXJava - How to combine multiple observable and get the corresponding results without merging or without getting duplicates
- Which is the better way to run a long running impersistance task in a multi module android project?
- Transform Callback into Observable with data from other Observable
- RxJava RxAndroid repeat API call with different request body in Android
- Multiple chained API calls to fetch data, but doOnNext of PublishSubject is never reached
- RxAndroidBle waiting for response from peripheral when write on it (not long write) in Kotlin
- How to wait for completion of multiple Observables in RXJava?
- Android - RxJava - Race condition
- RxAndroid: Fetch data from multiple apis
- Switch back to original thread after executing element of a chain
- How to use RxJava / RxAndroid in Android to make slow network call and update the UI?
- How to create a stopwatch with Rx counting down to 0?
- How do I wait for a void function to finish executing before triggering a completable in Android?
- How to signal an infinite observable to stop/continue emission?
Related Questions in RETROLAMBDA
- CodenameOne app build giving Retrolambda IllegalArgumentException
- Errors related to lack of support java 8 despite Retrolambda
- Suppress Android Gradle Plugin's warning when intentionally using Retrolambda?
- Can I avoid retrolambdas capturing the reference to the enclosing class?
- Unable to update the gradle version for particular project : Android Studio
- How to resolve this ERROR: android-apt plugin is incompatible with the Android Gradle plugin
- Problem with adding exoplayer and turning on java 8
- How to handle that gradle error?
- How to use lambda with Java 7, strange Retrolambda not working
- Hard configuration Retrolambda
- How to create compile time library that annotates the code (as compiler) in Android
- java.lang.NoClassDefFoundError: lambda with Android API 23
- Error:Execution failed for task ':cloudsdk:transformClassesWithRetrolambdaForDebug'
- Error:Execution failed for task ':app:compileRetrolambdaDebug' - After Firebase integration
- How to configure retrolambda for android6(API23)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
After some trial and error, research, etc. Here's what I found that worked for me. Please note that some of the commented out values at the end of a line were values that I had tried previously.
Project build.gradle
Module build.gradle
proguard-rules.pro
In addition, I added the above referenced path environment values JAVA7_HOME, JAVA8_HOME which point to the appropriate directory for each java install.