forked from sqlcipher/sqlcipher-android-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 905 Bytes
/
build.gradle
File metadata and controls
36 lines (29 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
defaultConfig {
applicationId "net.zetetic.sqlcipher.test"
minSdkVersion 16
targetSdkVersion 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
// For testing JAR-based distribution:
// implementation files('libs/sqlcipher.jar')
// For testing local AAR packages:
implementation (name: 'android-database-sqlcipher-4.5.3-release', ext: 'aar')
// For testing on remote AAR references:
//implementation 'net.zetetic:android-database-sqlcipher:4.5.3@aar'
implementation "androidx.sqlite:sqlite:2.1.0"
// For Room tests:
implementation "androidx.room:room-runtime:2.1.0"
annotationProcessor "androidx.room:room-compiler:2.1.0"
}