Skip to content

Commit c105d6a

Browse files
author
Christopher J. Brody
committed
update comments in build dependencies
in app/build.gradle
1 parent 3c73457 commit c105d6a

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

app/build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,19 @@ android {
1919
}
2020

2121
dependencies {
22-
// For testing zip-based distributions:
23-
//implementation files('libs/sqlcipher.jar')
22+
// For testing JAR-based distribution:
23+
// implementation files('libs/sqlcipher.jar')
2424

25-
// For testing local AAR packages:
26-
//implementation (name: 'android-database-sqlcipher-4.3.0-release', ext: 'aar')
25+
// For testing local AAR package:
26+
// implementation (name: 'android-database-sqlcipher-4.3.0-release', ext: 'aar')
2727

28-
29-
// For testing on remote AAR references:
28+
// For testing on remote AAR reference:
3029
implementation 'net.zetetic:android-database-sqlcipher:4.3.0@aar'
30+
31+
// Mandatory dependency:
3132
implementation "androidx.sqlite:sqlite:2.0.1"
33+
34+
// For Room tests:
3235
implementation "androidx.room:room-runtime:2.1.0"
3336
annotationProcessor "androidx.room:room-compiler:2.1.0"
3437
}

0 commit comments

Comments
 (0)