You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
apply plugin: 'com.android.library' //apply plugin: 'com.github.dcendents.android-maven'
group='shihoo.wang'
android { compileSdkVersion 28
defaultConfig { minSdkVersion 18 //noinspection ExpiredTargetSdkVersion
targetSdkVersion 33 versionCode 1 versionName "1.0"
}
buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } }
}
dependencies { api ('io.reactivex.rxjava2:rxjava:2.+'){ exclude module: 'jetified-commons-beanutils-1.8.0' } implementation 'com.android.support:support-annotations:+' implementation 'com.github.dcendents:android-maven-gradle-plugin:1.3' // implementation "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
// implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
// classpath 'com.github.dcendents:android-maven:'
// classpath 'com.github.dcendents:android-maven-plugin:1.3'
//change to uni plugin
compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar']) compileOnly 'com.alibaba:fastjson:1.1.46.android' implementation 'com.blankj:utilcode:1.30.7' }
|