build.gradle 552 Bytes
Newer Older
Libin Lu's avatar
init  
Libin Lu committed
1 2 3
apply plugin: 'com.android.library'

android {
Libin Lu's avatar
Libin Lu committed
4
    compileSdkVersion 25
5
    buildToolsVersion "25.0.2"
Libin Lu's avatar
init  
Libin Lu committed
6 7 8

    defaultConfig {
        minSdkVersion 16
Libin Lu's avatar
Libin Lu committed
9
        targetSdkVersion 25
Libin Lu's avatar
init  
Libin Lu committed
10 11 12 13 14
        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:+'
22 23
    compile 'com.google.firebase:firebase-core:11.+'
    compile 'com.google.firebase:firebase-messaging:11.+'
Libin Lu's avatar
Libin Lu committed
24
    compile 'me.leolin:ShortcutBadger:1.1.17@aar'
Libin Lu's avatar
init  
Libin Lu committed
25
}
26