apply plugin: 'com.android.library'

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

apply from: "../scripts/get-app-config-android.gradle"

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

android {
  namespace "expo.modules.constants"
  defaultConfig {
    versionCode 33
    versionName "16.0.2"
  }
}

dependencies {
  api "androidx.annotation:annotation:1.0.0"
  implementation "commons-io:commons-io:2.6"
}
