sqlcipher-android/sqlciphertest/build.gradle
2021-07-14 10:42:45 -05:00

32 lines
862 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "net.zetetic.customsqlciphertest"
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
ndkVersion "21.3.6528147"
useLibrary 'android.test.base' // for android.test.AndroidTestCase
useLibrary 'android.test.runner' // for android.test.ApplicationTestCase extends AndroidTestCase
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.13'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation project(':sqlcipher')
}