apply plugin: 'com.android.library'

group = 'host.exp.exponent'
version = '15.1.0'

def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
apply from: expoModulesCorePlugin
applyKotlinExpoModulesCorePlugin()
useCoreDependencies()
useDefaultAndroidSdkVersions()
useExpoPublishing()

android {
  namespace "expo.modules.imagepicker"
  defaultConfig {
    versionCode 22
    versionName "15.1.0"
  }
}

dependencies {
  implementation "androidx.activity:activity-ktx:1.7.2"
  implementation "androidx.appcompat:appcompat:1.6.1"
  implementation "androidx.exifinterface:exifinterface:1.3.3"
  implementation "com.github.CanHub:Android-Image-Cropper:4.3.1"
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.3"
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
}
