如果你仔细查看过readme.md文件,应该知道以下操作都是在项目根目录下进行的.
在对应Module下的build.gradle目录中增加如下代码:
apply plugin: 'com.android.application'
// 增加这一行
repositories { flatDir { dirs 'libs' } }
android {
// ...
}
最后在dependencies中进行引用,即完成SDK的导入。代码如下所示:
android {
// ...
}
dependencies {
// 增加这一行,xxx为版本号
implementation(name: 'appstore_sso-xxx', ext: 'aar')
}
注意:1)implementation
为com.android.tools.build:gradle
3.0及以上版本出现的闭包。