build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.2"
  5. defaultConfig {
  6. applicationId "jp.co.ecosysnetwork.ccloca_app"
  7. minSdkVersion 29
  8. targetSdkVersion 30
  9. versionCode 16
  10. versionName "2.14"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: "libs", include: ["*.jar"])
  22. implementation 'androidx.appcompat:appcompat:1.2.0'
  23. implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  26. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  27. implementation files('libs/commons-net-3.6.jar')
  28. implementation 'com.google.android.gms:play-services-location:17.1.0'
  29. }