apply plugin: 'com.android.library'

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

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

android {
  namespace "expo.modules.structuredheaders"
  defaultConfig {
    versionCode 1
    versionName '3.8.0'
  }
}

dependencies {
  implementation "androidx.appcompat:appcompat:1.2.0"

  testImplementation 'junit:junit:4.13.2'
  testImplementation 'commons-codec:commons-codec:1.14'
  testImplementation 'org.apache.johnzon:johnzon-core:1.2.5'
  testImplementation 'org.apache.geronimo.specs:geronimo-json_1.1_spec:1.4'
}
