充电桩app代码

build.gradle 1.5KB

    // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { // apply plugin: 'bugly' // apply plugin: 'org.greenrobot.greendao' // // bugly { // appId = '900010422' // 注册时分配的App ID // appKey = 'mnhwhy8jP7Fq2G6b' // 注册时分配的App Key // } repositories { maven {url 'https://maven.aliyun.com/repository/google/'} maven {url 'https://maven.aliyun.com/repository/public/'} maven {url 'https://maven.aliyun.com/repository/gradle-plugin/'} } dependencies { classpath 'com.android.tools.build:gradle:3.6.3' classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' classpath 'com.tencent.bugly:symtabfileuploader:latest.release' classpath "com.mob.sdk:MobSDK:+" } } allprojects { repositories { flatDir { dirs 'libs' } maven {url 'https://maven.aliyun.com/repository/google/'} maven {url 'https://maven.aliyun.com/repository/public/'} maven {url 'https://maven.aliyun.com/repository/gradle-plugin/'} maven { url "https://www.jitpack.io" } maven { url 'https://repo1.maven.org/maven2/' } } } ext{ manifestPlaceholders= [ JPUSH_PKGNAME : "com.electric.chargingpile", JPUSH_APPKEY : "19fde8a6fe56b6918522bfa3", //JPush 上注册的包名对应的 Appkey. JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可. ] }