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
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
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'
Views
Replies
Total Likes
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'
Views
Replies
Total Likes
Hi @harrisma
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?
implementation 'com.adobe.marketing.mobile:analytics:1.+'
Thanks,
Kevin
Views
Replies
Total Likes
Views
Likes
Replies