build.gradle 479 Bytes
Newer Older
Lee Jaebin committed
1 2 3
apply plugin: 'com.android.library'

android {
4
    compileSdkVersion 26
5
    buildToolsVersion '28.0.3'
Lee Jaebin committed
6 7

    defaultConfig {
8 9
        minSdkVersion 23
        targetSdkVersion 29
Lee Jaebin committed
10 11 12 13 14 15 16 17
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
18 19 20 21
    lintOptions {
        abortOnError false
    }

Lee Jaebin committed
22 23 24 25 26
}

dependencies {
    api files('libs/xwalk_core_library.jar')
}