@@ -14,7 +14,7 @@ android {
14
14
minSdkVersion 14
15
15
targetSdkVersion target_sdk_version
16
16
versionCode 1
17
- versionName " 1.0"
17
+ versionName " 1.0.2 "
18
18
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
19
19
}
20
20
testOptions {
@@ -41,20 +41,22 @@ android {
41
41
42
42
dependencies {
43
43
// Includes the Optimizely X Full Stack Java SDK, event handler, and user profile
44
+ // implementation "com.optimizely.ab:android-sdk:1.0.0"
44
45
implementation (project(' :android-sdk' )) {
45
46
exclude group : ' com.google.code.gson' , module :' gson'
46
- // exclude group: 'com.noveogroup.android', module:'android-logger'
47
47
}
48
48
49
+ // EXAMPLE - replace gson with jackson-databind json parser
50
+ implementation " com.fasterxml.jackson.core:jackson-databind:$jacksonversion "
51
+
52
+ // SLF4J logger
53
+ // https://github.com/noveogroup/android-logger (resources/android-logger.properties)
49
54
implementation " com.noveogroup.android:android-logger:$android_logger_ver "
50
- // implementation "com.optimizely.ab:android-sdk:1.0.0"
51
- implementation " androidx.appcompat:appcompat:1.2.0"
52
- implementation " com.google.android.material:material:1.2.1"
53
- // EXAMPLE - replace noveogroup android-looger with slf4j-android logger
54
55
// https://mvnrepository.com/artifact/org.slf4j/slf4j-android
55
56
// implementation "org.slf4j:slf4j-android:1.7.25"
56
- // EXAMPLE - replace gson with jackson-databind json parser
57
- implementation " com.fasterxml.jackson.core:jackson-databind:$jacksonversion "
57
+
58
+ implementation " androidx.appcompat:appcompat:1.2.0"
59
+ implementation " com.google.android.material:material:1.2.1"
58
60
59
61
// required by API-16
60
62
implementation " com.google.code.gson:gson:$gson_ver "
0 commit comments