@@ -14,7 +14,7 @@ android {
1414 minSdkVersion 14
1515 targetSdkVersion target_sdk_version
1616 versionCode 1
17- versionName " 1.0"
17+ versionName " 1.0.2 "
1818 testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
1919 }
2020 testOptions {
@@ -41,20 +41,22 @@ android {
4141
4242dependencies {
4343 // Includes the Optimizely X Full Stack Java SDK, event handler, and user profile
44+ // implementation "com.optimizely.ab:android-sdk:1.0.0"
4445 implementation (project(' :android-sdk' )) {
4546 exclude group : ' com.google.code.gson' , module :' gson'
46- // exclude group: 'com.noveogroup.android', module:'android-logger'
4747 }
4848
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)
4954 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
5455 // https://mvnrepository.com/artifact/org.slf4j/slf4j-android
5556 // 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"
5860
5961 // required by API-16
6062 implementation " com.google.code.gson:gson:$gson_ver "
0 commit comments