Using React Native, I need to update my sdk to 1.2.8 due to the error below
Can some please tell me how to do this?
> Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.
> Could not find :unspecified:.
Required by:
project :app > com.adobe.marketing.mobile:analytics:1.2.7
In the build.gradle file, instead of using implementation 'com.adobe.marketing.mobile:analytics: 1.+'
Try implementing by specifying the exact version and build it once. By adding this below line as shown in the above screenshot implementation 'com.adobe.marketing.mobile:analytics:1.2.8'
In the build.gradle file, instead of using implementation 'com.adobe.marketing.mobile:analytics: 1.+'
Try implementing by specifying the exact version and build it once. By adding this below line as shown in the above screenshot implementation 'com.adobe.marketing.mobile:analytics:1.2.8'
Are you including "mavenCentral()" in you Android application's repository list? If not, can you include it and try your build again using dynamic versioning for the Analytics dependency as below?