45aa1a67b0
Co-authored-by: Tomek Zawadzki <tomekzawadzki98@gmail.com> Co-authored-by: vineyardbovines <spencerfpope@gmail.com>
21 lines
376 B
Groovy
21 lines
376 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'expo-module-gradle-plugin'
|
|
}
|
|
|
|
group = 'expo.modules.bottomsheet'
|
|
version = '0.1.0'
|
|
|
|
android {
|
|
namespace "expo.modules.bottomsheet"
|
|
defaultConfig {
|
|
versionCode 1
|
|
versionName "0.1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.android.material:material:1.13.0'
|
|
implementation "com.facebook.react:react-native:+"
|
|
}
|