prscX / react-native-bottom-action-sheet

React Native: Native Bottom Action Sheet
Apache License 2.0
634 stars 48 forks source link

Can't run on Android #6

Closed wkwyatt closed 6 years ago

wkwyatt commented 6 years ago

Getting this error and not able to perform run-android

Could not resolve all dependencies for configuration ':app:_debugApkCopy'.
   > Could not find com.github.javiersantos:BottomDialogs:1.2.1.
     Required by:
         myApp:app:unspecified > myApp:react-native-bottom-action-sheet:unspecified
prscX commented 6 years ago

Thanks @wkwyatt for raising the issue.

My bad. I forgot to add below snippet in README installation steps. Can you please verify by adding below snippet in your app build.gradle file:

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

Please let me know in case it does not work.

Thanks Pranav

wkwyatt commented 6 years ago

Yes @prscX ! that got it working thank you