Skip to content

Commit

Permalink
Update Core Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewis Freiberg committed Jun 19, 2017
1 parent a8eda7c commit c6a329f
Show file tree
Hide file tree
Showing 6 changed files with 109 additions and 72 deletions.
1 change: 1 addition & 0 deletions android/app/build.gradle
Expand Up @@ -126,6 +126,7 @@ android {
}

dependencies {
compile project(':rn-workers')
compile project(':react-native-randombytes')
compile project(':react-native-keychain')
compile fileTree(dir: "libs", include: ["*.jar"])
Expand Down
Expand Up @@ -3,6 +3,7 @@
import android.app.Application;

import com.facebook.react.ReactApplication;
import com.fabricio.vergal.RNWorkers.RNWorkersPackage;
import com.bitgo.randombytes.RandomBytesPackage;
import com.oblador.keychain.KeychainPackage;
import com.facebook.react.ReactNativeHost;
Expand All @@ -25,6 +26,7 @@ public boolean getUseDeveloperSupport() {
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNWorkersPackage(),
new RandomBytesPackage(),
new KeychainPackage()
);
Expand Down
2 changes: 2 additions & 0 deletions android/settings.gradle
@@ -1,4 +1,6 @@
rootProject.name = 'mobileWallet'
include ':rn-workers'
project(':rn-workers').projectDir = new File(rootProject.projectDir, '../node_modules/rn-workers/android')
include ':react-native-randombytes'
project(':react-native-randombytes').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-randombytes/android')
include ':react-native-keychain'
Expand Down

0 comments on commit c6a329f

Please sign in to comment.