|
|
|
@ -3,8 +3,6 @@ apply plugin: 'kotlin-android' |
|
|
|
apply plugin: 'kotlin-kapt' |
|
|
|
|
|
|
|
android { |
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion |
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion |
|
|
|
|
|
|
|
dataBinding { |
|
|
|
enabled = true |
|
|
|
@ -19,10 +17,12 @@ android { |
|
|
|
defaultConfig { |
|
|
|
minSdkVersion rootProject.ext.minSdkVersion |
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion |
|
|
|
buildConfigField 'int', 'VLC_VERSION_CODE', "${rootProject.ext.versionCode}" |
|
|
|
compileSdk rootProject.ext.compileSdkVersion |
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
|
|
consumerProguardFiles 'consumer-rules.pro' |
|
|
|
|
|
|
|
buildConfigField 'int', 'VLC_VERSION_CODE', "${rootProject.ext.versionCode}" |
|
|
|
buildConfigField "String", "MOVIEPEDIA_API_URL", "\"${getMoviepediaUrl(project)}\"" |
|
|
|
multiDexEnabled true |
|
|
|
} |
|
|
|
|