| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- plugins {
- alias(libs.plugins.androidApplication)
- }
- android {
- namespace 'com.example.modifier'
- compileSdk 34
- buildFeatures {
- buildConfig = true
- }
- defaultConfig {
- applicationId "com.example.modifier"
- minSdk 26
- targetSdk 34
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- signingConfigs {
- release {
- storeFile file('../release.keystore')
- storePassword '123456'
- keyAlias 'key'
- keyPassword '123456'
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.release
- }
- debug {
- signingConfig signingConfigs.release
- }
- }
- 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 libs.gson
- implementation libs.commons.lang3
- implementation libs.commons.collections4
- implementation libs.commons.io
- implementation(libs.socket.io.client) {
- exclude group: 'org.json', module: 'json'
- }
- implementation(libs.socket.io.client) {
- exclude group: 'org.json', module: 'json'
- }
- }
|