2017-03-02 11:30:08 +00:00
|
|
|
// START - required to allow working on this project inside Android Studio
|
|
|
|
// YES, jcenter is required twice - it somehow tricks studio into compiling deps below
|
|
|
|
// doesn't break anything anywhere else and projects using this lib work as normal
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:2.1.3'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// END
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2017-03-10 10:46:55 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "23.0.3"
|
2017-03-02 11:30:08 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
2017-03-10 10:46:55 +00:00
|
|
|
targetSdkVersion 25
|
2017-03-02 11:30:08 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
multiDexEnabled true
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// START - required to allow working on this project inside Android Studio
|
|
|
|
// YES, jcenter is required twice - it somehow tricks studio into compiling deps below
|
|
|
|
// doesn't break anything anywhere else and projects using this lib work as normal
|
|
|
|
// you'll now have code completion/validation and all the other AS goodies.
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// END
|
|
|
|
|
|
|
|
dependencies {
|
2017-03-17 16:04:39 +00:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
compile 'com.facebook.react:react-native:+'
|
|
|
|
compile 'me.leolin:ShortcutBadger:1.1.10@aar'
|
2017-03-10 10:46:55 +00:00
|
|
|
compile 'com.google.android.gms:play-services-base:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-core:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-config:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-auth:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-analytics:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-database:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-storage:10.2.0'
|
|
|
|
compile 'com.google.firebase:firebase-messaging:10.2.0'
|
2017-03-10 14:17:37 +00:00
|
|
|
compile 'com.google.firebase:firebase-crash:10.2.0'
|
2017-03-02 11:30:08 +00:00
|
|
|
}
|