apply plugin: 'com.android.library'

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

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

android {
  namespace "expo.modules.crypto"
  defaultConfig {
    versionCode 25
    versionName "14.0.2"
  }
}

dependencies {
  if (project.findProject(':expo-modules-test-core')) {
    testImplementation project(':expo-modules-test-core')
  }
  testImplementation 'junit:junit:4.13.2'
  testImplementation "org.robolectric:robolectric:4.10"
}
