build.gradle 459 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 15 16
apply plugin: 'com.android.library'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

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

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
Libin Lu's avatar
Libin Lu committed
17
    compile 'com.facebook.react:react-native:+'
Libin Lu's avatar
Libin Lu committed
18 19
    compile 'com.google.firebase:firebase-core:+'
    compile 'com.google.firebase:firebase-messaging:+'
Libin Lu's avatar
init  
Libin Lu committed
20 21
}