### Generate 100 Random Users with RxPeople Source: https://github.com/cesarferreira/rxpeople/blob/master/README.md Demonstrates how to use RxPeople to generate a specified amount of random user data, including both genders and various nationalities, and subscribe to the results using RxJava's Observable pattern. ```Java RxPeople.with(context) .amount(100) .intoObservable() .subscribe(users -> { // todo: what you please }); ``` -------------------------------- ### Generate Specific Random Users with RxPeople (Gender & Nationality) Source: https://github.com/cesarferreira/rxpeople/blob/master/README.md Illustrates how to refine user data generation by specifying the amount, nationality (Brazil), and gender (Female) using RxPeople's fluent API, and then subscribing to the filtered results. ```Java RxPeople.with(context) .amount(50) .nationality(Nationality.BR) .gender(Gender.FEMALE) .intoObservable() .subscribe(users -> { // todo: what you please }); ``` -------------------------------- ### Add RxPeople Dependency (Gradle) Source: https://github.com/cesarferreira/rxpeople/blob/master/README.md Instructions for adding the RxPeople library as a compile dependency in a Gradle-based Android project's `build.gradle` file, allowing the project to use the library's functionalities. ```Groovy dependencies { compile 'com.cesarferreira.rxpeople:rxpeople:0.2.4' } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.