ext {
latestVersion = '4.3.2-release+1-SNAPSHOT'
}
allprojects {
repositories {
...
maven {
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
}
...
}
}
ext {
latestVersion = '4.3.2-release+1'
}
allprojects {
repositories {
...
jcenter()
...
}
}
...
android {
...
defaultConfig {
...
manifestPlaceholders = [
XG_ACCESS_ID: "信鸽ACCESSID",
XG_ACCESS_KEY: "信鸽ACCESSKEY",
HW_APPID: "华为的APPID",
XIAOMI_APPID: "小米的APPID",
XIAOMI_APPKEY: "小米的APPKEY",
MEIZU_APPID: "魅族的APPID",
MEIZU_APPKEY: "魅族的APPKEY"
]
...
}
...
}
...
dependencies {
...
implementation "io.github.v7lin:xinge-push-android:${latestVersion}"
implementation "io.github.v7lin:xinge-push-stub-android:${latestVersion}"
...
}
...