| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- plugins {
- alias(libs.plugins.androidApplication)
- }
- android {
- namespace 'com.example.modifier'
- compileSdk 34
- defaultConfig {
- applicationId "com.example.modifier"
- minSdk 26
- targetSdk 34
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- viewBinding {
- enabled = true
- }
- }
- dependencies {
- implementation libs.appcompat
- implementation libs.material
- implementation libs.activity
- implementation libs.constraintlayout
- testImplementation libs.junit
- androidTestImplementation libs.ext.junit
- androidTestImplementation libs.espresso.core
- implementation 'com.google.code.gson:gson:2.10.1'
- implementation 'com.google.android.material:material:1.4.0'
- implementation 'org.apache.commons:commons-lang3:3.14.0'
- implementation 'commons-io:commons-io:2.16.1'
- }
|