2015-10-31 21:21:50 +05:30
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-03-07 13:44:09 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:1.3.1'
|
2015-10-31 21:21:50 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2019-02-28 13:59:11 +02:00
|
|
|
compileSdkVersion rootProject.properties.get('compileSdkVersion', 26)
|
|
|
|
buildToolsVersion rootProject.properties.get('buildToolsVersion', '26.0.3')
|
2015-10-31 21:21:50 +05:30
|
|
|
|
|
|
|
defaultConfig {
|
2015-11-20 18:47:35 -08:00
|
|
|
minSdkVersion 16
|
2019-02-28 13:59:11 +02:00
|
|
|
targetSdkVersion rootProject.properties.get('targetSdkVersion', 26)
|
2015-10-31 21:21:50 +05:30
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
2019-04-24 20:28:12 +03:00
|
|
|
lintOptions{
|
|
|
|
abortOnError false
|
|
|
|
}
|
2015-10-31 21:21:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
2016-03-07 13:44:09 -07:00
|
|
|
jcenter()
|
2015-10-31 21:21:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-02-28 13:59:11 +02:00
|
|
|
implementation 'com.facebook.react:react-native:+'
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
|
2015-10-31 21:21:50 +05:30
|
|
|
}
|