27 lines
596 B
Groovy
27 lines
596 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'expo-module-gradle-plugin'
|
|
}
|
|
|
|
group = 'host.exp.exponent'
|
|
version = '18.2.1'
|
|
|
|
android {
|
|
namespace "expo.modules.medialibrary"
|
|
defaultConfig {
|
|
versionCode 37
|
|
versionName "18.2.1"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.annotation:annotation:1.2.0"
|
|
api "androidx.exifinterface:exifinterface:1.3.3"
|
|
implementation 'androidx.activity:activity-ktx:1.10.1'
|
|
|
|
if (project.findProject(':expo-modules-test-core')) {
|
|
testImplementation project(':expo-modules-test-core')
|
|
}
|
|
testImplementation "org.robolectric:robolectric:4.10"
|
|
}
|