12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 28
- defaultConfig {
- applicationId 'com.warewms.gizmo.ware_wms_kml'
- minSdkVersion 17
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- lintOptions {
- disable 'GoogleAppIndexingWarning'
- }
- compileOptions {
- sourceCompatibility = '1.8'
- targetCompatibility = '1.8'
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha4'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test:runner:1.2.0-alpha03'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03'
- implementation 'com.android.support:design:28.0.0'
- //ButterKnife
- implementation 'com.jakewharton:butterknife:10.1.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
- //RecyclerView
- implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha04'
- //上拉、下拉刷新 RecyclerView
- implementation 'com.jcodecraeer:xrecyclerview:1.5.9'
- //广播、事件分发 == iOS通知
- implementation 'org.greenrobot:eventbus:3.0.0'
- //shape
- implementation 'com.noober.background:core:1.3.1'
- //隐藏软键盘
- implementation 'com.yinglan.keyboard:hidekeyboard:1.2.0'
- //各种工具类,api说明http://www.jianshu.com/p/72494773aace
- implementation 'com.blankj:utilcode:1.10.0'
- //TabBar
- implementation 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
- //轮播图
- implementation 'com.youth.banner:banner:1.4.10'
- //Glide图片加载器
- implementation 'com.github.bumptech.glide:glide:3.7.0'
- //Honeywell扫码SDK
- implementation project(path: ':DataCollectionLib')
- //Excel
- implementation 'com.github.huangyanbin:SmartTable:2.2.0'
- //Retrofit+rxKotlin+autoDispose
- implementation 'com.squareup.retrofit2:retrofit:2.5.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
- implementation 'com.squareup.retrofit2:converter-scalars:2.5.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
- implementation 'com.squareup.okhttp3:okhttp:3.12.2'
- implementation 'com.squareup.okhttp3:logging-interceptor:3.12.2'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- implementation 'io.reactivex.rxjava2:rxjava:2.2.9'
- implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.3.0'
- //WebSocket
- implementation "org.java-websocket:Java-WebSocket:1.4.0"
- //年月日时分
- implementation 'com.bigkoo:pickerview:2.1.1'
- }
|