12345678910111213141516171819202122232425262728293031323334 |
- apply plugin: 'com.android.application'
- android {
- compileSdk 34
- defaultConfig {
- applicationId "jp.co.ecosysnetwork.ccloca_app"
- minSdkVersion 29
- targetSdkVersion 34
- versionCode 16
- versionName "2.14"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- namespace 'jp.co.ecosysnetwork.ccloca_app'
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- implementation files('libs/commons-net-3.6.jar')
- implementation 'com.google.android.gms:play-services-location:21.2.0'
- }
|