充电桩app代码

build.gradle 782B

1234567891011121314151617181920212223242526272829303132
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. // apply plugin: 'bugly'
  4. // apply plugin: 'org.greenrobot.greendao'
  5. //
  6. // bugly {
  7. // appId = '900010422' // 注册时分配的App ID
  8. // appKey = 'mnhwhy8jP7Fq2G6b' // 注册时分配的App Key
  9. // }
  10. repositories {
  11. jcenter()
  12. google()
  13. }
  14. dependencies {
  15. classpath 'com.android.tools.build:gradle:3.2.1'
  16. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
  17. classpath 'com.tencent.bugly:symtabfileuploader:latest.release'
  18. classpath "com.mob.sdk:MobSDK:+"
  19. }
  20. }
  21. allprojects {
  22. repositories {
  23. jcenter()
  24. google()
  25. maven { url "https://jitpack.io" }
  26. }
  27. }