ext {
latestVersion = '3.9.1.1-SNAPSHOT'
}
allprojects {
repositories {
...
maven {
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
}
...
}
}
ext {
latestVersion = '3.9.1.1'
}
allprojects {
repositories {
...
jcenter()
...
}
}
android
...
android {
...
defaultConfig{
...
manifestPlaceholders = [TENCENT_APP_ID: "${appId}"]
...
}
...
}
...
dependencies {
...
implementation "io.github.v7lin:baidu-analytics-android:${latestVersion}"
...
}
...