build.gradle 744 Bytes
Newer Older
xwenliang's avatar
xwenliang committed
1 2 3
apply plugin: 'com.android.library'

android {
4
    compileSdkVersion 27
xwenliang's avatar
xwenliang committed
5 6 7 8
    buildToolsVersion "23.0.1"

    defaultConfig {
        minSdkVersion 16
9
        targetSdkVersion 27
xwenliang's avatar
xwenliang committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
冷佳娟's avatar
冷佳娟 committed
25 26 27 28
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.facebook.react:react-native:+'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.annotation:annotation:1.0.2'
xwenliang's avatar
xwenliang committed
29
}