plugins {
|
id 'com.android.application'
|
}
|
|
android {
|
compileSdk 31
|
|
defaultConfig {
|
applicationId "com.hdl.hdlsdkdemo"
|
minSdk 23
|
targetSdk 31
|
versionCode 1
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
}
|
|
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 fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
implementation 'com.google.android.material:material:1.4.0'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
|
|
testImplementation 'junit:junit:4.+'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.6'
|
// implementation 'com.google.code.gson:gson:2.8.8'
|
implementation files('libs\\com.hdl.sdk-v1.2.2.aar')
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
|
implementation 'com.squareup.okio:okio:2.8.0'
|
//retrofit
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
|
implementation 'com.squareup.retrofit2:adapter-rxjava3:2.9.0'
|
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
|
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
|
implementation 'com.google.code.gson:gson:2.8.8'
|
|
implementation 'com.trello.rxlifecycle4:rxlifecycle:4.0.2'
|
implementation 'com.trello.rxlifecycle4:rxlifecycle-android:4.0.2'
|
implementation 'com.trello.rxlifecycle4:rxlifecycle-android-lifecycle:4.0.2'
|
|
implementation 'org.reactivestreams:reactive-streams:1.0.3'
|
|
//二维码
|
implementation 'com.google.zxing:core:3.4.1'
|
//事件总线
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
}
|