mirror of
https://github.com/status-im/react-native-mail.git
synced 2026-08-30 19:21:08 +00:00
See http://d.android.com/r/tools/update-dependency-configurations.html for more details
21 lines
585 B
Groovy
21 lines
585 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 23
|
|
buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : "23.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "x86"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.facebook.react:react-native:+'
|
|
}
|