40 lines
1.0 KiB
Groovy
40 lines
1.0 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'expo-module-gradle-plugin'
|
|
}
|
|
|
|
group = 'host.exp.exponent'
|
|
version = '0.15.0'
|
|
|
|
expoModule {
|
|
canBePublished false
|
|
}
|
|
|
|
android {
|
|
namespace "expo.modules.jsonutils"
|
|
defaultConfig {
|
|
versionCode 31
|
|
versionName '0.15.0'
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
testOptions {
|
|
unitTests.includeAndroidResources = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'androidx.test:core:1.4.0'
|
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
|
testImplementation 'io.mockk:mockk:1.12.3'
|
|
|
|
androidTestImplementation('org.amshove.kluent:kluent-android:1.72') {
|
|
exclude group: 'org.jetbrains.kotlin'
|
|
}
|
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
androidTestImplementation 'androidx.test:core:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
androidTestImplementation 'org.mockito:mockito-android:3.7.7'
|
|
androidTestImplementation 'io.mockk:mockk-android:1.12.3'
|
|
}
|