Installation
Native Android ==> Health Connect module
Health Connect has its own module in the Inform SDK, therefore the following modules are required to use the Health Connect integration:
- Shared (Session)
- Health Connect
Maven
The Distribution zip contains a local Maven repository, validic-repository that can be used to add the library and its dependencies to your project's classpath.
In your app/build.gradle file add the following
repositories {  
    mavenCentral()  
    google()  
  // Validic Support can provide you with credentials if you need them  
  	maven {  
    	url: "<https://validic.jfrog.io/artifactory/mobile-release/">  
      credentials: {  
       	username: username  
        password: password  
      }  
    }  
  // or  
    maven {  
        // Android Maven Distribution folder from zip. Change to point to folder location  
        url "../../validic-repository"  
    }  
}
dependencies{  
...  
  implementation 'com.validic.mobile:validicmobile-shared:+'  
  implementation 'com.validic.mobile:aggregator-health-connect:+'  
}
Updated 9 months ago
