// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() maven { url 'https://dl.bintray.com/umsdk/release' }//友盟 } dependencies { classpath 'com.android.tools.build:gradle:3.3.2' classpath "com.alibaba:arouter-register:1.0.2" classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } subprojects { repositories { google() jcenter() mavenLocal() } version = '3.6.0' group = 'com.journeyapps' } allprojects { repositories { google() jcenter() maven { url 'https://jitpack.io' } maven { url 'https://dl.bintray.com/umsdk/release' }//友盟 } } repositories { google() } task clean(type: Delete) { delete rootProject.buildDir } ext { projectName = "\"优百递\"" configuration = [ applicationId : "com.fengzhan100.fz", buildToolsVersion : "28.0.0", compileSdkVersion : 28, minSdkVersion : 24, targetSdkVersion : 28, versionCode : 1600, //versionName : "1.1.31 test", versionName : "1.6.00", zxingCore : "com.google.zxing:core:3.3.2", //test_mobile_url : "\"http://app.fengzhan100.com/\"",//fengzhan正式 外网 //release_mobile_url : "\"http://app.fengzhan100.com/\"", //release_mobile_url: "\"http://test.fengzhan100.com/\"",//测试环境 //test_mobile_url : "\"http://test.fengzhan100.com/\"",// // test_mobile_url : "\"http://192.168.1.197:8885/\"",//本地 // release_mobile_url: "\"http://192.168.1.197:8885/\"", test_img_url : "\"http://49.4.12.78:8822/\"", release_img_url : "\"http://49.4.12.78:8822/\"", // 优百递微信支付 wx_appid : "\"wxae0fc4df352e2d6c\"" ] libraries = [ supportVersion: "28.0.0" ] }