Skip to content
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.

Commit

Permalink
Fixed event bus package for android.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikDemyankov committed Apr 11, 2016
1 parent a5247e8 commit ff91978
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/android/chcp.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ cdvPluginPostBuildExtras.add({
dependencies {
compile 'com.fasterxml.jackson.core:jackson-core:2.4.4'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
compile 'de.greenrobot:eventbus:3.0.0-beta1'
compile 'org.greenrobot:eventbus:3.0.0'
}
});
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.PluginResult;
import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.json.JSONException;
import org.json.JSONObject;

import java.io.File;

import de.greenrobot.event.EventBus;
import de.greenrobot.event.Subscribe;

/**
* Created by Nikolay Demyankov on 23.07.15.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
package com.nordnetab.chcp.main.updater;

import android.content.Context;
import android.util.Log;

import com.nordnetab.chcp.main.events.NothingToInstallEvent;
import com.nordnetab.chcp.main.model.ChcpError;
import com.nordnetab.chcp.main.model.PluginFilesStructure;

import java.io.File;
import org.greenrobot.eventbus.EventBus;

import de.greenrobot.event.EventBus;
import java.io.File;

/**
* Created by Nikolay Demyankov on 22.07.15.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

import com.nordnetab.chcp.main.model.ChcpError;

import de.greenrobot.event.EventBus;
import org.greenrobot.eventbus.EventBus;


/**
* Created by Nikolay Demyankov on 24.07.15.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
import com.nordnetab.chcp.main.events.AssetsInstallationErrorEvent;
import com.nordnetab.chcp.main.events.AssetsInstalledEvent;

import org.greenrobot.eventbus.EventBus;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import de.greenrobot.event.EventBus;

/**
* Created by Nikolay Demyankov on 21.07.15.
Expand Down

0 comments on commit ff91978

Please sign in to comment.