12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- applicationId "com.shuoyue.sale_selfish"
- minSdkVersion 21
- targetSdkVersion 30
- versionCode 4
- versionName "1.4"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- multiDexEnabled true
- javaCompileOptions {
- annotationProcessorOptions { includeCompileClasspath = true }
- }
- ndk {
- abiFilter "armeabi-v7a"
- }
- lintOptions {
- checkReleaseBuilds false
- // Or, if you prefer, you can continue to check for errors in release builds,
- // but continue the build even when errors are found:
- abortOnError false
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- packagingOptions {
- exclude 'assets/HKZ.bmp'
- exclude 'assets/base.dat'
- exclude 'assets/HKB.bmp'
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation 'com.google.android.material:material:1.2.1'
- implementation project(path: ':date_time_picker')
- implementation project(path: ':Camera')
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
- implementation project(path: ':autosize')
- implementation project(path: ':appbase')
- implementation project(path: ':commonutils')
- implementation project(path: ':appnetwork')
- implementation project(path: ':printer')
- annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
- implementation 'com.google.zxing:core:3.3.3'
- implementation 'com.solidfire.code.gson:gson:2.6.2'
- implementation 'org.greenrobot:eventbus:3.0.0'//
- implementation 'com.google.zxing:core:3.3.3'
- implementation 'com.youth.banner:banner:1.4.10'
- annotationProcessor 'org.projectlombok:lombok:1.18.16'
- implementation 'com.tencent.bugly:crashreport:latest.release'
- // implementation 'com.decard.mobile:logansdk-utils:3.1.00'
- //抖音的播放器
- implementation 'com.github.dueeeke.dkplayer:dkplayer-java:3.2.6'
- //必选,内部默认使用系统mediaplayer进行解码
- implementation 'com.github.dueeeke.dkplayer:dkplayer-ui:3.2.6'
- //可选,包含StandardVideoController的实现
- implementation 'com.github.dueeeke.dkplayer:player-exo:3.2.6'
- }
|