36 lines
951 B
Groovy
36 lines
951 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
defaultConfig {
|
|
applicationId "org.mozilla.samples.dataprotect"
|
|
|
|
minSdkVersion config.minSdkVersion
|
|
compileSdk config.compileSdkVersion
|
|
targetSdkVersion config.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
namespace 'org.mozilla.samples.dataprotect'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':support-ktx')
|
|
implementation project(':lib-dataprotect')
|
|
|
|
implementation ComponentsDependencies.kotlin_coroutines
|
|
|
|
implementation ComponentsDependencies.androidx_appcompat
|
|
implementation ComponentsDependencies.androidx_recyclerview
|
|
}
|