apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.neusoft.paymentservice" minSdkVersion 17 targetSdkVersion 26 versionCode 4 versionName "20210203102225" javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } } packagingOptions { exclude 'META-INF/rxjava.properties' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } buildToolsVersion '27.0.3' } repositories { flatDir { dirs 'libs' } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation project(':andlinker') // support implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' //compile 'com.android.support:design:23.4.0' //rxlifecycle compile 'com.trello:rxlifecycle-components:1.0' //rx compile 'io.reactivex:rxandroid:1.2.1' compile 'io.reactivex:rxjava:1.3.0' //net compile 'com.squareup.retrofit2:retrofit:2.4.0' compile 'com.squareup.retrofit2:adapter-rxjava:2.4.0' compile 'com.squareup.retrofit2:converter-gson:2.4.0' compile 'com.squareup.okhttp3:logging-interceptor:3.10.0' compile 'com.google.code.gson:gson:2.7' compile 'com.github.bumptech.glide:glide:3.7.0' //compile project(path: ':cardreader') compile project(path: ':barcodescaner') compile files('libs/butterknife-7.0.1.jar') //compile project(path: ':lib') compile 'com.ttsea.jrxbus2:jrxbus2:1.0.3' //compile project(path: ':extendMediaPlay') provided files('libs_ext/androidsim.jar') provided files('libs_ext/icbc-deviceservice.jar') compile files('libs/umsanypaysdk.jar') compile files('libs/SmileService1.9.1.jar') compile(name: 'wxfacepay-release', ext: 'aar') implementation project(path: ':cardreader') }