Car in 場站鎖車查車
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

49 řádky
1.6KB

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.2"
  5. defaultConfig {
  6. applicationId "tw.com.altob.goodpk.carin"
  7. minSdkVersion 21
  8. targetSdkVersion 29
  9. versionCode 6
  10. versionName "1.5"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. debug {
  15. buildConfigField "String", "API_URL", "\"https://cloudservice.altob.com.tw/LockCarSerivce/api/JumpApi\""
  16. }
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. buildConfigField "String", "API_URL", "\"https://cloudservice.altob.com.tw/LockCarSerivce/api/JumpApi\""
  21. }
  22. }
  23. }
  24. dependencies {
  25. implementation fileTree(dir: 'libs', include: ['*.jar'])
  26. implementation fileTree(dir: 'libs', include: ['*.aar'])
  27. implementation 'androidx.appcompat:appcompat:1.1.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  29. testImplementation 'junit:junit:4.12'
  30. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  31. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  32. implementation 'com.google.android.material:material:1.0.0'
  33. implementation "androidx.loader:loader:1.1.0"
  34. //插件
  35. implementation 'com.google.code.gson:gson:2.8.1'
  36. implementation 'com.android.support:multidex:1.0.2'
  37. implementation 'com.orhanobut:logger:1.8'
  38. implementation "com.squareup.okhttp3:okhttp:4.7.2"
  39. }