• This repository has been archived on 09/Aug/2020
  • Stars
    star
    109
  • Rank 319,077 (Top 7 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created about 8 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Ask for permissions without breaking the observable chain.

⚠️ This repository is deprecated ⚠️

You should use https://github.com/tbruyelle/RxPermissions

Android Arsenal

RxPermissionsResult

Following the same approach that RxActivityResult does, RxPermissionsResult is a reactive wrapper around the permission's Android Api, which allows to get the data without breaking the observable chain.

Features:

  • Request permissions at runtime from any class, as long as you supply a valid Activity or Fragment instance.
  • Get the data back encapsulated in an observable and keep chaining.
  • Survive to configuration changes.

SetUp

Add to top level gradle.build file

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

Add to app module gradle.build file

dependencies {
	//RxJava1
    compile 'com.github.VictorAlbertos.RxPermissionsResult:rx1:0.0.4'
    compile 'io.reactivex:rxjava:1.2.1'

	//RxJava2
    compile 'com.github.VictorAlbertos.RxPermissionsResult:rx2:0.0.4'
    compile 'io.reactivex.rxjava2:rxjava:2.0.0'
}

Usage

Call RxPermissionsResult.register in your Android Application.

public class SampleApp extends Application {

    @Override public void onCreate() {
        super.onCreate();
        RxPermissionsResult.register(this);
    }
}

You can call RxPermissionsResult.on(this).requestPermissions(permissions) supplying both, an Activity instance or a Fragment instance.

Limitation:: Your fragments need to extend from android.support.v4.app.Fragment instead of android.app.Fragment, otherwise they won't be notified.

String[] permissions = {Manifest.permission.ACCESS_FINE_LOCATION};

RxPermissionsResult.on(this).requestPermissions(permissions)
  .subscribe(result ->
      result.targetUI()
          .showPermissionStatus(result.permissions(), result.grantResults())
  );

void showPermissionStatus(String[] permissions, int[] grantResults) {
    boolean granted = grantResults[0] == PackageManager.PERMISSION_GRANTED;
    if (granted) {
		textView.setText(permissions[0] + " Granted")
	} else {
		textView.setText(permissions[0] + "Not granted")
	}
}

Please pay attention to the targetUI() method in the Result object emitted.

This method returns a safety instance of the current Activity/Fragment. Because the original one may be recreated (due to configuration changes or some other system events) it would be unsafe calling it.

Instead, you must call any method/variable of your Activity/Fragment from this instance encapsulated in the Result object.

For a complete example about RxPermissionsResult, refer to this module if you are using RxJava1, or to this other one if using RxJava2.

Another author's libraries:

  • ReactiveCache: A reactive cache for Android and Java which honors the Observable chain.
  • RxActivityResult: A reactive-tiny-badass-vindictive library to break with the OnActivityResult implementation as it breaks the observables chain.
  • RxSocialConnect: OAuth RxJava extension for Android.

More Repositories

1

RxCache

Reactive caching library for Android and Java
Java
2,375
star
2

BreadcrumbsView

A customizable Android view for paginated forms
Java
684
star
3

RxActivityResult

A reactive-tiny-badass-vindictive library to break with the OnActivityResult implementation as it breaks the observable chain.
Java
595
star
4

RxSocialConnect-Android

OAuth RxJava extension for Android.
Java
257
star
5

SwipeCoordinator

A coordinator layout for Android views to animate and typify touch events as swipe gestures
Java
253
star
6

ReactiveCache

A reactive cache for Android and Java which honors the reactive chain.
Java
242
star
7

Mockery

Android and Java library for mocking and testing networking layers with built-in support for Retrofit.
Java
145
star
8

RxCacheSamples

How to use RxCache for both Android and Java projects
Java
116
star
9

RxFcm

RxJava extension for Android Firebase Cloud Messaging (aka fcm).
Java
115
star
10

DeviceAnimationTestRule

A JUnit rule to disable and enable device animations
Kotlin
106
star
11

RxGcm

[DEPRECATED] RxJava extension for Android Google Cloud Messaging (aka gcm).
Java
95
star
12

Jolyglot

Agnostic Json abstraction to perform data binding operations for Android and Java.
Java
70
star
13

RestAPIParseAuthCleanAndroid

An android implementation of an authentication system based on the Parse Api using the design patters suggested by Robert C. Martin (aka Uncle Bob) on his “clean architecture”.
Java
45
star
14

KDirtyAndroid

A dirty approach for truly client Android applications using Kotlin
Kotlin
17
star
15

DirtyAndroid

A dirty approach for truly client Android applications
Java
15
star
16

RxLifecycleInterop

[DEPRECATED] Workaround for using RxLifecycle with RxJava2
Java
10
star
17

Pacman

The classic video game Pacman for iOS and Android made with Unity 2d
C#
9
star
18

ml_technical_analysis

A machine learning approach integrating technical analysis to forecast stock prices
Python
8
star
19

EventBus-Samples

A simple demonstration about how to use EventBus with Activities, Fragments and Services on Android.
Java
7
star
20

android-kotlin-adoption

Kotlin adoption on the Android open source community
Python
6
star
21

Near-friends

App to know where your contacts are at every time
Java
3
star
22

bs-blockchain-hackathon-team4

BS Blockchain Hackathon Team 4 Repo
JavaScript
2
star
23

github-pr-latency-ml

A failed attempt (so far) to predict Github Pull Request latency.
Python
1
star
24

kotlin-apuntes

Kotlin
1
star