build.gradle 1.1 KB

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