diff --git a/android-json-form-wizard/build.gradle b/android-json-form-wizard/build.gradle index cc3de8ea4..0896b209e 100644 --- a/android-json-form-wizard/build.gradle +++ b/android-json-form-wizard/build.gradle @@ -75,6 +75,14 @@ tasks.withType(Test) { repositories { mavenCentral() google() + maven { + name = "GithubPackages" + url = uri("https://maven.pkg.github.com/opensrp/opensrp-client-native-form") + credentials { + username = System.getenv("GITHUB_USER") + password = System.getenv("GITHUB_PERSONAL_ACCESS_TOKEN") + } + } } dependencies { @@ -84,12 +92,13 @@ dependencies { exclude group: 'com.android.support', module: 'design' } implementation 'com.github.bmelnychuk:atv:1.2.9' - implementation('com.android.support:design:28.0.0') { - exclude group: 'com.android.support', module: 'recyclerview-v7' - exclude group: 'com.android.support', module: 'appcompat-v7' - exclude group: 'com.android.support', module: 'support-v4' + implementation 'com.android.support:design:28.0.0' + implementation 'com.android.support:support-media-compat:28.0.0' + implementation 'com.android.support:animated-vector-drawable:28.0.0' + implementation 'com.android.support:support-v4:28.0.0' + implementation 'com.android.support:appcompat-v7:28.0.0' + implementation 'com.android.support:recyclerview-v7:28.0.0' - } implementation 'com.github.johnkil.print:print:1.3.1' implementation 'com.github.rey5137:material:1.2.5' implementation 'org.smartregister:opensrp-client-materialedittext:2.1.6-SNAPSHOT'