blob: a5d1174372d0fe73e11dbc6c070527a2996ad4e1 [file] [log] [blame]
apply plugin: 'com.android.library'
android {
// ndkVersion "{placeholder}" // This value is replaced by logic in AndroidGradleTests.java (see NDK_VERSION_PLACEHOLDER)
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation project(path: ':lib3')
}