| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- plugins {
- id 'com.android.library'
- }
- android {
- namespace 'com.example.zrat'
- compileSdk 33
- defaultConfig {
- minSdk 24
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation "androidx.appcompat:appcompat:1.6.1"
- implementation "com.google.android.material:material:1.8.0"
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- implementation('io.socket:socket.io-client:2.0.0') {
- exclude group: 'org.json', module: 'json'
- }
- implementation 'org.apache.commons:commons-lang3:3.12.0'
- implementation 'org.apache.commons:commons-collections4:4.4'
- implementation 'com.google.code.gson:gson:2.10.1'
- implementation 'pub.devrel:easypermissions:3.0.0'
- implementation 'org.parceler:parceler-api:1.1.12'
- annotationProcessor 'org.parceler:parceler:1.1.12'
- implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
- }
|