diff --git a/Examples/Movies/android/app/build.gradle b/Examples/Movies/android/app/build.gradle index 57c83e579..6bc71ffda 100644 --- a/Examples/Movies/android/app/build.gradle +++ b/Examples/Movies/android/app/build.gradle @@ -26,10 +26,6 @@ dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:23.0.1' - // Depend on pre-built React Native - compile 'com.facebook.react:react-native:0.11.+' - - // Depend on React Native source. - // This is useful for testing your changes when working on React Native. - // compile project(':ReactAndroid') + // Build React Native from source + compile project(':ReactAndroid') } diff --git a/Examples/UIExplorer/android/app/build.gradle b/Examples/UIExplorer/android/app/build.gradle index 275ffb277..fae695a34 100644 --- a/Examples/UIExplorer/android/app/build.gradle +++ b/Examples/UIExplorer/android/app/build.gradle @@ -26,10 +26,6 @@ dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:23.0.1' - // Depend on pre-built React Native - compile 'com.facebook.react:react-native:0.11.+' - - // Depend on React Native source. - // This is useful for testing your changes when working on React Native. - // compile project(':ReactAndroid') + // Build React Native from source + compile project(':ReactAndroid') }