1234567891011121314151617181920212223242526272829303132333435363738394041 |
- group 'plugin.storage.qiniu.flutter.isanye.cn.syflutterqiniustorage'
- version '1.0-SNAPSHOT'
- buildscript {
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.5.3'
- }
- }
- rootProject.allprojects {
- repositories {
- google()
- jcenter()
- }
- }
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 27
- defaultConfig {
- minSdkVersion 16
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
- dependencies {
- implementation ('com.qiniu:qiniu-android-sdk:8.0.+'){
- exclude (group: 'com.squareup.okhttp3', module: 'okhttp')
- }
- // implementation 'com.qiniu:qiniu-android-sdk:8.0.+'
- }
|