充电桩app代码

build.gradle 1.4KB

    // Top-level build file where you can add configuration options common to all sub-projects/modules. apply from: "config.gradle" 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/'} maven { url "https://www.jitpack.io" } maven { url 'https://repo1.maven.org/maven2/' } mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:4.2.1' classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' 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/' } mavenCentral() } }