12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.jakewharton.butterknife'
- android {
- compileSdkVersion 28
- useLibrary 'org.apache.http.legacy'
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- }
- buildToolsVersion = '28.0.3'
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- configurations.all {
- resolutionStrategy.eachDependency { DependencyResolveDetails details ->
- def requested = details.requested
- if (requested.group == 'com.android.support') {
- if (!requested.name.startsWith("multidex")) {
- details.useVersion '28.0.0'
- }
- }
- }
- }
- dependencies {
- compileOnly fileTree(dir: 'libs', include: ['*.jar'])
- compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
- implementation fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2aidl-release.aar'])
- implementation fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2library-release.aar'])
- compileOnly "com.android.support:recyclerview-v7:28.0.0"
- compileOnly "com.android.support:support-v4:28.0.0"
- compileOnly "com.android.support:appcompat-v7:28.0.0"
- implementation 'com.alibaba:fastjson:1.1.46.android'
- implementation 'com.facebook.fresco:fresco:0.12.0'
- //gson引用
- implementation 'com.google.code.gson:gson:2.8.5'
- //squareup公司的HTTP请求框架,基于OKHTTP的封装,下面两个是gson解析器和rx2的适配器
- implementation 'com.squareup.retrofit2:retrofit:2.5.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
- //观察者模式框架,以及对应android的包
- implementation 'io.reactivex.rxjava2:rxjava:2.2.7'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
- implementation 'com.jakewharton:butterknife:9.0.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0'
- /*implementation 'com.android.support:appcompat-v7:28.0.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'*/
- }
|