123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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(include: ['uniapp-v8-release.aar'], dir: '../app/libs')
- // compileOnly fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2library-release.aar'])
- // compileOnly fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2aidl-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"
- compileOnly 'com.alibaba:fastjson:1.2.66'
- //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
- // 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'*/
- }
|