Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
build.gradle 2.18 KB
Copy Edit Raw Blame History
wansfa authored 2022-05-12 23:16 . add
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://mvn.mob.com/android" }
// maven {
// url "https://cardinalcommerceprod.jfrog.io/artifactory/android"
// credentials {
// // Be sure to add these non-sensitive credentials in order to retrieve dependencies from
// // the private repository.
// username "paypal_sgerritz"
// password "AKCp8jQ8tAahqpT5JjZ4FRP2mW7GMoFZ674kGqHmupTesKeAY2G8NcmPKLuTxTGkKjDLRzDUQ"
// }
// }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.mob.sdk:MobSDK:2018.0319.1724'
classpath 'com.google.gms:google-services:4.3.10'
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://mvn.mob.com/android" }
// maven {
// url "https://cardinalcommerceprod.jfrog.io/artifactory/android"
// credentials {
// // Be sure to add these non-sensitive credentials in order to retrieve dependencies from
// // the private repository.
// username "paypal_sgerritz"
// password "AKCp8jQ8tAahqpT5JjZ4FRP2mW7GMoFZ674kGqHmupTesKeAY2G8NcmPKLuTxTGkKjDLRzDUQ"
// }
// }
}
}
ext {
API_ADDRESS_RELEASE = "\"https://api.citikasa.com\""
API_ADDRESS_BETA = "\"https://api.citikasa.com\""
// API_ADDRESS_BETA = "\"http://192.168.10.105:5001\""
API_ADDRESS_DEV = "\"http://192.168.1.40:7777\""
IMG_ADDRESS_RELEASE = "\"https://api.citikasa.com\""
IMG_ADDRESS_BETA = "\"https://api.citikasa.com\""
// IMG_ADDRESS_BETA = "\"http://192.168.10.105:5001\""
IMG_ADDRESS_DEV = "\"http://192.168.1.40:7777\""
}
task clean(type: Delete) {
delete rootProject.buildDir
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化