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

android {
    compileSdkVersion 23
d4vidi's avatar
d4vidi committed
5
    buildToolsVersion "23.0.3"
Amit Davidi's avatar
Amit Davidi committed
6 7

    defaultConfig {
8
        applicationId "com.wix.reactnativenotifications.app"
Amit Davidi's avatar
Amit Davidi committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"

        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
//        packagingOptions {
//            exclude "lib/arm64-v8a/librealm-jni.so"
//        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.facebook.react:react-native:+'
d4vidi's avatar
d4vidi committed
35
    compile project(':react-native-notifications')
Amit Davidi's avatar
Amit Davidi committed
36 37 38

    testCompile 'junit:junit:4.12'
}