plugins {
  id 'com.android.library'
  id 'expo-module-gradle-plugin'
}

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

android {
  namespace "expo.modules.imagepicker"
  defaultConfig {
    versionCode 22
    versionName "55.0.19"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  }
  testOptions {
    unitTests.includeAndroidResources = true
  }
}

dependencies {
  implementation "androidx.activity:activity-ktx:1.11.0"
  implementation "androidx.appcompat:appcompat:1.7.1"
  implementation "androidx.core:core-ktx:1.17.0"
  implementation "androidx.exifinterface:exifinterface:1.4.1"
  implementation "com.vanniktech:android-image-cropper:4.7.0"
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2"

  if (project.findProject(':expo-modules-test-core')) {
    androidTestImplementation project(':expo-modules-test-core')
  }
}
