问题描述:
Android SDK接入时,采用 implementation ‘unitylibrary-debug’ 方式导入:
遇到的问题:A problem occurred evaluating project ‘:mylibrary’.
Supplied String module notation ‘unitylibrary-debug’ is invalid. Example notations: ‘org.gradle:gradle-core:2.2’, ‘org.mockito:mockito-core:1.9.5:javadoc’.
解决方案:采用implementation(name: ‘unitylibrary-debug’, ext: ‘aar’)这种方式导入。