22 lines
499 B
Groovy
22 lines
499 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'expo-module-gradle-plugin'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
android {
|
|
namespace "expo.modules.kioskmode"
|
|
compileSdkVersion findProperty("expo.compileSdkVersion") ?: 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion findProperty("expo.minSdkVersion") ?: 23
|
|
targetSdkVersion findProperty("expo.targetSdkVersion") ?: 34
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.facebook.react:react-android'
|
|
}
|