Android: Remove rxjava lib

No need to keep rxjava lib around for one simple use case
This commit is contained in:
mahdihijazi 2018-10-27 16:15:12 +02:00
parent 1da69811b8
commit 5e1a3f11a5
3 changed files with 6 additions and 4 deletions

View File

@ -98,8 +98,6 @@ dependencies {
// For loading huge screenshots from the disk.
implementation 'com.squareup.picasso:picasso:2.71828'
// Allows FRP-style asynchronous operations in Android.
implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'com.nononsenseapps:filepicker:4.1.0'
}

View File

@ -0,0 +1,6 @@
package org.dolphinemu.dolphinemu.utils;
public interface Action1<T>
{
void call(T t);
}

View File

@ -6,8 +6,6 @@ import android.content.Intent;
import org.dolphinemu.dolphinemu.utils.DirectoryInitialization.DirectoryInitializationState;
import rx.functions.Action1;
public class DirectoryStateReceiver extends BroadcastReceiver
{
Action1<DirectoryInitializationState> callback;