build.gradle 708 Bytes
Newer Older
Amit Davidi's avatar
Amit Davidi committed
1 2 3
apply plugin: 'com.android.library'

android {
Diego Mello's avatar
Diego Mello committed
4
    compileSdkVersion 27
yogevbd's avatar
yogevbd committed
5
    buildToolsVersion '28.0.0'
Amit Davidi's avatar
Amit Davidi committed
6 7

    defaultConfig {
Diego Mello's avatar
Diego Mello committed
8 9
        minSdkVersion 19
        targetSdkVersion 27
Amit Davidi's avatar
Amit Davidi committed
10 11 12 13 14 15 16 17 18 19 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

yogevbd's avatar
yogevbd committed
21

Amit Davidi's avatar
Amit Davidi committed
22
dependencies {
yogevbd's avatar
yogevbd committed
23 24
    implementation "com.google.firebase:firebase-messaging:17.3.0"
    implementation 'com.facebook.react:react-native:+'
Amit Davidi's avatar
Amit Davidi committed
25

yogevbd's avatar
yogevbd committed
26 27 28
    testImplementation 'junit:junit:4.12'
    testImplementation 'org.mockito:mockito-core:2.+'
    testImplementation 'org.robolectric:robolectric:3.1.4'
Amit Davidi's avatar
Amit Davidi committed
29
}