build.gradle 546 Bytes
Newer Older
Libin Lu's avatar
init  
Libin Lu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
apply plugin: 'com.android.library'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
}

15 16 17 18
repositories {
    mavenCentral()
}

Libin Lu's avatar
init  
Libin Lu committed
19 20
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
Libin Lu's avatar
Libin Lu committed
21
    compile 'com.facebook.react:react-native:+'
Libin Lu's avatar
Libin Lu committed
22 23
    compile 'com.google.firebase:firebase-core:+'
    compile 'com.google.firebase:firebase-messaging:+'
24
    compile 'me.leolin:ShortcutBadger:1.1.10@aar'
Libin Lu's avatar
init  
Libin Lu committed
25 26
}